Something went wrong. Try again.
atproto made easy crates.io/crates/jacquard
atproto rust
Something went wrong. Try again.
1.8 kB · 52 lines
JSON
at bos-beta
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152{ "lexicon": 1, "id": "dev.keytrace.statement", "defs": { "main": { "type": "record", "description": "A public statement signed by one of the user's own published public keys (dev.keytrace.userPublicKey).", "key": "tid", "record": { "type": "object", "required": [ "content", "keyRef", "sig", "createdAt" ], "properties": { "content": { "type": "string", "description": "The statement text that was signed.", "maxLength": 10000, "maxGraphemes": 10000 }, "createdAt": { "type": "string", "description": "Datetime when this statement was created (ISO 8601).", "format": "datetime" }, "keyRef": { "type": "string", "description": "AT URI of the dev.keytrace.userPublicKey record whose private key produced this signature (e.g., at://did:plc:xxx/dev.keytrace.userPublicKey/3k4...)", "format": "at-uri" }, "retractedAt": { "type": "string", "description": "Datetime when this statement was retracted. Present only if the statement has been retracted (ISO 8601).", "format": "datetime" }, "sig": { "type": "string", "description": "Cryptographic signature of the content field, produced by the key referenced in keyRef (PGP cleartext or detached, base64-encoded binary signature)." }, "subject": { "type": "string", "description": "Optional short subject or title for the statement.", "maxGraphemes": 256 } } } } }}