---
title: "Breed"
url: "https://sg-dev-1.scripture.sh/apis/animal-facts-api-1/versions/cb120a4d-754c-446d-bfae-b856ae097070/schemas/Breed"
---

> Full API specification: https://sg-dev-1.scripture.sh/apis/animal-facts-api-1/versions/cb120a4d-754c-446d-bfae-b856ae097070.md

# Breed

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Animal Facts API
  version: 1.0.0
servers:
  - url: https://api.example.com
    description: Production server
components:
  schemas:
    Breed:
      type: object
      properties:
        name:
          type: string
          description: The name of the breed.
          example: Siamese
        origin:
          type: string
          description: The origin of the breed.
          example: Thailand
```
