org.passingreads.defs

passingreads.org

Documentation

actor object

Basic actor information for embedding in responses

Properties

did string did Required

A decentralized identifier (DID).

displayName string Optional

No description available.

maxLength: 640 bytes
handle string handle Required

An AT Protocol handle (e.g., alice.bsky.social).

View raw schema
{
  "type": "object",
  "required": [
    "did",
    "handle"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "handle": {
      "type": "string",
      "format": "handle"
    },
    "displayName": {
      "type": "string",
      "maxLength": 640
    }
  },
  "description": "Basic actor information for embedding in responses"
}
aspectRatio object

width:height represents an aspect ratio. It may be approximate, and may not correspond to absolute dimensions in any unit.

Properties

height integer Required

No description available.

minimum: 1
width integer Required

No description available.

minimum: 1
View raw schema
{
  "type": "object",
  "required": [
    "width",
    "height"
  ],
  "properties": {
    "width": {
      "type": "integer",
      "minimum": 1
    },
    "height": {
      "type": "integer",
      "minimum": 1
    }
  },
  "description": "width:height represents an aspect ratio. It may be approximate, and may not correspond to absolute dimensions in any unit."
}
bookIdEntry object

Book ID entry for SSG

Properties

id string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "id"
  ],
  "properties": {
    "id": {
      "type": "string"
    }
  },
  "description": "Book ID entry for SSG"
}
locationEntry object

Location entry with book count for SSG

Properties

bookCount integer Required

No description available.

h3 string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "h3",
    "bookCount"
  ],
  "properties": {
    "h3": {
      "type": "string"
    },
    "bookCount": {
      "type": "integer"
    }
  },
  "description": "Location entry with book count for SSG"
}

Lexicon Garden

@