HHW
  1. Sample Schemas
HHW
  • Start your Apidog journey
  • Sample APIs
    • 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
  • test
    • /plants
      GET
    • /plants
      POST
    • /plants/{id}
      DELETE
  • chenlei
    • Fruit Resource
      • List
      • Delete
      • Add
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
    • Schemas
      • Plant
      • Fruit
      • NewPlant
      • Error
  1. Sample Schemas

Pet

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