# # OpenAPI Petstore # # # This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters. # # Version: 1.0.0 # # Generated by OpenAPI Generator: https://openapi-generator.tech # A pet for sale in the pet store type Pet { id: Int! category: Category name: String! photoUrls: String! tags: Tag # pet status in the store status: PetStatusEnum } input PetInput { id: Int! category: CategoryInput name: String! photoUrls: [String!] tags: [TagInput] # pet status in the store status: PetStatusEnum } # pet status in the store enum PetStatusEnum { available pending sold }