at.locale.comment

locale.at

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

body string Required

No description available.

maxLength: 30000 bytesminLength: 1 bytesmaxGraphemes: 10000 graphemes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

parent string at-uri Optional

Parent comment, for threading.

project string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "project",
      "subject",
      "body",
      "createdAt"
    ],
    "properties": {
      "body": {
        "type": "string",
        "maxLength": 30000,
        "minLength": 1,
        "maxGraphemes": 10000
      },
      "parent": {
        "type": "string",
        "format": "at-uri",
        "description": "Parent comment, for threading."
      },
      "project": {
        "type": "string",
        "format": "at-uri"
      },
      "subject": {
        "refs": [
          "#recordSubject",
          "#stringSubject",
          "#keyLocaleSubject"
        ],
        "type": "union",
        "description": "What the comment is about: a record (e.g. a translation), a source string key, or a (key, locale) pair."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  }
}
keyLocaleSubject object

No description available.

Properties

key string Required

No description available.

maxLength: 4096 bytes
locale string Required

No description available.

maxLength: 35 bytes
View raw schema
{
  "type": "object",
  "required": [
    "key",
    "locale"
  ],
  "properties": {
    "key": {
      "type": "string",
      "maxLength": 4096
    },
    "locale": {
      "type": "string",
      "maxLength": 35
    }
  }
}
recordSubject object

No description available.

Properties

uri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "type": "object",
  "required": [
    "uri"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri"
    }
  }
}
stringSubject object

No description available.

Properties

key string Required

No description available.

maxLength: 4096 bytes
View raw schema
{
  "type": "object",
  "required": [
    "key"
  ],
  "properties": {
    "key": {
      "type": "string",
      "maxLength": 4096
    }
  }
}

Lexicon Garden

@