Cat Facts (catfact.ninja) · Schema
Breed
A cat breed entry with descriptive attributes.
AnimalsCatsTriviaPublic APIsCommunityNo AuthenticationREST
Properties
| Name | Type | Description |
|---|---|---|
| breed | string | Common breed name. |
| country | string | Country the breed is associated with. |
| origin | string | Origin classification (Natural/Standard, Mutation, Crossbreed, etc.). |
| coat | string | Coat length descriptor (Short, Semi-long, Long, Hairless). |
| pattern | string | Coat pattern descriptor. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/cat-facts-catfact/refs/heads/main/json-schema/cat-facts-catfact-breed-schema.json",
"title": "Breed",
"description": "A cat breed entry with descriptive attributes.",
"type": "object",
"properties": {
"breed": {
"type": "string",
"description": "Common breed name.",
"example": "Abyssinian"
},
"country": {
"type": "string",
"description": "Country the breed is associated with.",
"example": "Ethiopia"
},
"origin": {
"type": "string",
"description": "Origin classification (Natural/Standard, Mutation, Crossbreed, etc.).",
"example": "Natural/Standard"
},
"coat": {
"type": "string",
"description": "Coat length descriptor (Short, Semi-long, Long, Hairless).",
"example": "Short"
},
"pattern": {
"type": "string",
"description": "Coat pattern descriptor.",
"example": "Ticked"
}
},
"required": [
"breed",
"country",
"origin",
"coat",
"pattern"
]
}