Flickr · Schema

OAuthCredentials

OAuthCredentials schema from Flickr API

PhotographyPhotosSocial MediaPublic APIs

Properties

Name Type Description
oauth object
View JSON Schema on GitHub

JSON Schema

flickr-oauth-credentials-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-oauth-credentials-schema.json",
  "title": "OAuthCredentials",
  "description": "OAuthCredentials schema from Flickr API",
  "type": "object",
  "properties": {
    "oauth": {
      "type": "object",
      "properties": {
        "token": {
          "type": "object",
          "properties": {
            "_content": {
              "type": "string",
              "example": "100"
            }
          }
        },
        "perms": {
          "type": "object",
          "properties": {
            "_content": {
              "type": "string",
              "example": "100"
            }
          }
        },
        "user": {
          "type": "object",
          "properties": {
            "nsid": {
              "type": "string",
              "example": "12345678@N00"
            },
            "username": {
              "type": "string",
              "example": "shutterbug"
            },
            "fullname": {
              "type": "string",
              "example": "Jane Photographer"
            }
          }
        }
      }
    }
  }
}