openapi: 3.0.0
info:
  title: Common Entities - Product
  description: Common Product domain entities
  version: 3.0.0
  x-audience: external-public
  contact:
    email: support@fabric.inc
    name: Product Team
  license:
    name: fabric API License
    url: https://fabric.inc/api-license
  termsOfService: https://fabric.inc/terms-of-use
servers:
  - url: https://api.fabric.inc/v3
    description: Production URL
tags:
  - name: Product
    description: Details of Product
paths: {}
components:
  parameters:
    skusQueryParameter:
      in: query
      name: skus
      schema:
        $ref: '#/components/schemas/sku'
      required: false
      allowReserved: true
  schemas:
    sku:
      type: string
      example: XP-123345
      description: >-
        Unique product ID that maps to fabric's standard attribute called `SKU`.
        <br /> <b>Note:</b> `sku` shouldn't include `;` or `=`
      pattern: ^[^;=]*$
