Cat Facts (catfact.ninja) · JSON Structure

Cat Facts Catfact Breed Structure

A cat breed entry with descriptive attributes.

Type: object Properties: 5 Required: 5
AnimalsCatsTriviaPublic APIsCommunityNo AuthenticationREST

Breed is a JSON Structure definition published by Cat Facts (catfact.ninja), describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

breed country origin coat pattern

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/cat-facts-catfact/refs/heads/main/json-structure/cat-facts-catfact-breed-structure.json",
  "name": "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"
  ]
}