Flickr · Schema

InstitutionList

InstitutionList schema from Flickr API

PhotographyPhotosSocial MediaPublic APIs

Properties

Name Type Description
institution array
View JSON Schema on GitHub

JSON Schema

flickr-institution-list-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-institution-list-schema.json",
  "title": "InstitutionList",
  "description": "InstitutionList schema from Flickr API",
  "type": "object",
  "properties": {
    "institution": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "nsid": {
            "type": "string",
            "example": "12345678@N00"
          },
          "name": {
            "type": "string",
            "example": "Bay Area Photographers"
          },
          "date_launch": {
            "type": "string",
            "example": "1232409600"
          }
        }
      }
    }
  }
}