Flickr · Schema

LoginInfo

LoginInfo schema from Flickr API

PhotographyPhotosSocial MediaPublic APIs

Properties

Name Type Description
user object
View JSON Schema on GitHub

JSON Schema

flickr-login-info-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-login-info-schema.json",
  "title": "LoginInfo",
  "description": "LoginInfo schema from Flickr API",
  "type": "object",
  "properties": {
    "user": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "example": "52345678901"
        },
        "username": {
          "type": "object",
          "properties": {
            "_content": {
              "type": "string",
              "example": "100"
            }
          }
        },
        "path_alias": {
          "type": "string",
          "example": "shutterbug"
        }
      }
    }
  }
}