Flickr · JSON Structure

Flickr Oauth Credentials Structure

OAuthCredentials schema from Flickr API

Type: object Properties: 1
PhotographyPhotosSocial MediaPublic APIs

OAuthCredentials is a JSON Structure definition published by Flickr, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

oauth

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flickr/refs/heads/main/json-structure/flickr-oauth-credentials-structure.json",
  "name": "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"
            }
          }
        }
      }
    }
  }
}