openapi: 3.0.1
info:
  title: Common Schemas - Parameters
  description: Common Schemas for Parameters
  x-audience: external-public
  contact:
    name: fabric support
    email: support@fabric.inc
  license:
    name: fabric API License
    url: https://fabric.inc/api-license
  termsOfService: https://fabric.inc/terms-of-use
  version: 3.0.0
paths: {}
components:
  parameters:
    offsetParameter:
      name: offset
      in: query
      description: >-
        Number of records to skip before returning all records. Default is `0`
        if no value is provided.
      schema:
        type: integer
        format: int32
        example: 0
        default: 0
      example: 0
    limitParameter:
      name: limit
      in: query
      description: >-
        Maximum number of records returned per page. Default is `10` if no value
        is provided.
      schema:
        maximum: 100
        minimum: 1
        type: integer
        format: int32
        example: 10
        default: 10
      example: 10
