Cataas · JSON Structure

Upload Cat Request Structure

Multipart upload payload for a new cat image.

Type: object Properties: 2 Required: 1
AnimalsCatsImagesOpen SourcePublic APIs

UploadCatRequest is a JSON Structure definition published by Cataas, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

file tags

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/cataas/refs/heads/main/json-structure/upload-cat-request-structure.json",
  "name": "UploadCatRequest",
  "description": "Multipart upload payload for a new cat image.",
  "type": "object",
  "required": [
    "file"
  ],
  "properties": {
    "file": {
      "type": "string",
      "description": "The cat image file (JPEG, PNG, or GIF)."
    },
    "tags": {
      "type": "string",
      "description": "Comma-separated list of tags to apply to the new cat.",
      "example": "cute,orange"
    }
  }
}