Flickr · Schema

UploadResponse

XML upload response containing `` or ``.

PhotographyPhotosSocial MediaPublic APIs

Properties

Name Type Description
stat string
photoid string
ticketid string
View JSON Schema on GitHub

JSON Schema

flickr-upload-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flickr/refs/heads/main/json-schema/flickr-upload-response-schema.json",
  "title": "UploadResponse",
  "description": "XML upload response containing `<photoid>` or `<ticketid>`.",
  "type": "object",
  "properties": {
    "stat": {
      "type": "string",
      "example": "ok"
    },
    "photoid": {
      "type": "string",
      "example": "52345678901"
    },
    "ticketid": {
      "type": "string",
      "example": "1234567"
    }
  }
}