org.impactindexer.review.defs

gainforest.earth

Documentation

subjectRef object

Reference to the subject being reviewed.

Properties

cid string Optional

Optional CID for record subjects to pin to a specific version.

maxLength: 128 bytes
uri string Required

The subject identifier. For records: AT-URI (at://did/collection/rkey). For users: DID (did:plc:xxx). For PDSes: hostname (example.com). For lexicons: NSID (app.bsky.feed.post).

maxLength: 8192 bytes
View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "type"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "maxLength": 128,
      "description": "Optional CID for record subjects to pin to a specific version."
    },
    "uri": {
      "type": "string",
      "maxLength": 8192,
      "description": "The subject identifier. For records: AT-URI (at://did/collection/rkey). For users: DID (did:plc:xxx). For PDSes: hostname (example.com). For lexicons: NSID (app.bsky.feed.post)."
    },
    "type": {
      "ref": "#subjectType",
      "type": "ref",
      "description": "The type of subject."
    }
  },
  "description": "Reference to the subject being reviewed."
}
subjectType string

The type of subject being reviewed.

ConstraintsmaxLength: 32 bytes
Known Values (other values may be valid)
record user pds lexicon
View raw schema
{
  "type": "string",
  "maxLength": 32,
  "description": "The type of subject being reviewed.",
  "knownValues": [
    "record",
    "user",
    "pds",
    "lexicon"
  ]
}

Lexicon Garden

@