Flickr · Schema

Camera

Camera schema from Flickr API

PhotographyPhotosSocial MediaPublic APIs

Properties

Name Type Description
id string
name string
details object
View JSON Schema on GitHub

JSON Schema

flickr-camera-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-camera-schema.json",
  "title": "Camera",
  "description": "Camera schema from Flickr API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "52345678901"
    },
    "name": {
      "type": "string",
      "example": "Bay Area Photographers"
    },
    "details": {
      "type": "object",
      "additionalProperties": true,
      "example": {}
    }
  }
}