Cataas · Schema

EditCatRequest

Payload for editing a cat document.

AnimalsCatsImagesOpen SourcePublic APIs

Properties

Name Type Description
tags string Comma-separated list of tags to set on the cat.
View JSON Schema on GitHub

JSON Schema

edit-cat-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/cataas/refs/heads/main/json-schema/edit-cat-request-schema.json",
  "title": "EditCatRequest",
  "description": "Payload for editing a cat document.",
  "type": "object",
  "properties": {
    "tags": {
      "type": "string",
      "description": "Comma-separated list of tags to set on the cat.",
      "example": "cute,orange,sleepy"
    }
  },
  "required": [
    "tags"
  ]
}