My Project
  1. Sample Schemas
My Project
  • 🐶 Walk through Apidog
  • Sample APIs
    • sample1
      • sample2
        • sample3
          • ouyb8yboubi7yb7by8
          • sample4
            • Untitled API
        • Untitled API
      • Untitled API
      • Untitled API
    • Find pet by ID
      GET
    • Add a new pet to the store
      POST
    • Update an existing pet
      PUT
    • Deletes a pet
      DELETE
    • Finds Pets by status
      GET
  • Untitled API
    POST
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
  1. Sample Schemas

Pet

{
    "id": 1,
    "category": {
        "id": 1,
        "name": "string"
    },
    "name": "doggie",
    "photoUrls": [
        "string"
    ],
    "tags": [
        {
            "id": 1,
            "name": "string"
        }
    ],
    "status": "available"
}
Built with