Flickr · Schema

Ticket

Ticket schema from Flickr API

PhotographyPhotosSocial MediaPublic APIs

Properties

Name Type Description
id string
complete integer
photoid string
invalid integer
View JSON Schema on GitHub

JSON Schema

flickr-ticket-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-ticket-schema.json",
  "title": "Ticket",
  "description": "Ticket schema from Flickr API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "52345678901"
    },
    "complete": {
      "type": "integer",
      "example": 1
    },
    "photoid": {
      "type": "string",
      "example": "52345678901"
    },
    "invalid": {
      "type": "integer",
      "example": 0
    }
  }
}