Adobe Lightroom · Schema

Album

Cloud StorageImage EditingMetadataPhoto ManagementPhotography

Properties

Name Type Description
id string Unique identifier of the album
type string Resource type
subtype string Album subtype
created string Album creation timestamp
updated string Album last updated timestamp
payload object Album payload data
View JSON Schema on GitHub

JSON Schema

lightroom-services-album-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Album",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the album"
    },
    "type": {
      "type": "string",
      "description": "Resource type"
    },
    "subtype": {
      "type": "string",
      "description": "Album subtype"
    },
    "created": {
      "type": "string",
      "description": "Album creation timestamp"
    },
    "updated": {
      "type": "string",
      "description": "Album last updated timestamp"
    },
    "payload": {
      "type": "object",
      "description": "Album payload data"
    }
  }
}