Schemas

Order

  • object
    Example: {"id":0,"petId":0,"quantity":0,"shipDate":"2019-08-24T14:15:22Z","status":"placed","complete":false}
    Properties:
    • id
      integer:int64
      Example: 0
    • petId
      integer:int64
      Example: 0
    • quantity
      integer:int32
      Example: 0
    • shipDate
      string:date-time
      Example: "2019-08-24T14:15:22Z"
    • status
      string
      Order Status
      Example: "placed"
      Enum: placed approved delivered
    • complete
      boolean
      Example: false

User

  • object
    Example: {"id":0,"username":"string","firstName":"string","lastName":"string","email":"string","password":"string","phone":"string","userStatus":0}
    Properties:
    • id
      integer:int64
      Example: 0
    • username
      string
      Example: "string"
    • firstName
      string
      Example: "string"
    • lastName
      string
      Example: "string"
    • email
      string
      Example: "string"
    • password
      string
      Example: "string"
    • phone
      string
      Example: "string"
    • userStatus
      integer:int32
      User Status
      Example: 0

Category

  • object
    Example: {"id":0,"name":"string"}
    Properties:
    • id
      integer:int64
      Example: 0
    • name
      string
      Example: "string"

Tag

  • object
    Example: {"id":0,"name":"string"}
    Properties:
    • id
      integer:int64
      Example: 0
    • name
      string
      Example: "string"

Pet

  • object
    Example: {"id":0,"category":{"id":0,"name":"string"},"name":"doggie","photoUrls":["string"],"tags":[{"id":0,"name":"string"}],"status":"available"}
    Properties:
    • id
      integer:int64
      Required
      Example: 0
    • category
      object
      Category
      Example: {"id":0,"name":"string"}
    • name
      string
      Required
      Example: "doggie"
    • photoUrls
      array<string>
      Required
      Example: ["string"]
      Items:
      • string
        Example: "string"
    • tags
      array
      Example: [{"id":0,"name":"string"}]
      Items:
      • object
        Tag
        Example: {"id":0,"name":"string"}
    • status
      string
      pet status in the store
      Example: "available"
      Enum: available pending sold

ApiResponse

  • object
    Example: {"code":0,"type":"string","message":"string"}
    Properties:
    • code
      integer:int32
      Example: 0
    • type
      string
      Example: "string"
    • message
      string
      Example: "string"

Request Bodies

UserArray

Required
List of user object
Content Type:
application/json
  • Schema
  • array
    Example: [{"id":0,"username":"string","firstName":"string","lastName":"string","email":"string","password":"string","phone":"string","userStatus":0}]
    Items:
    • object
      User
      Example: {"id":0,"username":"string","firstName":"string","lastName":"string","email":"string","password":"string","phone":"string","userStatus":0}

Pet

Required
Pet object that needs to be added to the store
Content Type:
application/json
  • Schema
  • object
    Pet
    Example: {"id":0,"category":{"id":0,"name":"string"},"name":"doggie","photoUrls":["string"],"tags":[{"id":0,"name":"string"}],"status":"available"}
    Properties:
    • id
      integer:int64
      Required
      Example: 0
    • category
      object
      Category
      Example: {"id":0,"name":"string"}
    • name
      string
      Required
      Example: "doggie"
    • photoUrls
      array<string>
      Required
      Example: ["string"]
      Items:
      • string
        Example: "string"
    • tags
      array
      Example: [{"id":0,"name":"string"}]
      Items:
      • object
        Tag
        Example: {"id":0,"name":"string"}
    • status
      string
      pet status in the store
      Example: "available"
      Enum: available pending sold