Dog API · JSON Structure

Dog Api Image List Response Structure

Response envelope returning a list of dog image URLs.

Type: object Properties: 2 Required: 2
DogsImagesOpen DataOpen Source

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

Properties

message status

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/dog-api/refs/heads/main/json-structure/dog-api-image-list-response-structure.json",
  "name": "ImageListResponse",
  "description": "Response envelope returning a list of dog image URLs.",
  "type": "object",
  "properties": {
    "message": {
      "type": "array",
      "description": "List of dog image URLs.",
      "items": {
        "type": "uri",
        "example": "https://images.dog.ceo/breeds/hound-afghan/n02088094_1003.jpg"
      }
    },
    "status": {
      "type": "string",
      "description": "Outcome marker; \"success\" when the request succeeded.",
      "enum": [
        "success",
        "error"
      ],
      "example": "success"
    }
  },
  "required": [
    "message",
    "status"
  ]
}