org.simocracy.agents
A sim's constitution and agent configuration. One document per sim.
record · key tid
A sim's constitution and agent configuration. One document per sim.
sim*
Reference to the sim record this constitution belongs to
strongRef
shortDescription*
Short summary of this sim's constitution, suitable for previews and list views. Rich text annotations may be provided via shortDescriptionFacets.
string · max 300
shortDescriptionFacets
Rich text annotations for shortDescription (mentions, URLs, hashtags, etc).
facet[]
description
Full constitution text: beliefs, values, governance positions. Rich text annotations may be provided via descriptionFacets.
string · max 3000
descriptionFacets
Rich text annotations for description (mentions, URLs, hashtags, etc).
facet[]
createdAt*
Timestamp when the record was created
datetime
updatedAt
Timestamp when the record was last updated
datetime
▸ Raw lexicon JSON
{
"lexicon": 1,
"id": "org.simocracy.agents",
"defs": {
"main": {
"type": "record",
"description": "A sim's constitution and agent configuration. One document per sim.",
"key": "tid",
"record": {
"type": "object",
"required": [
"sim",
"shortDescription",
"createdAt"
],
"properties": {
"sim": {
"type": "ref",
"ref": "com.atproto.repo.strongRef",
"description": "Reference to the sim record this constitution belongs to"
},
"shortDescription": {
"type": "string",
"description": "Short summary of this sim's constitution, suitable for previews and list views. Rich text annotations may be provided via shortDescriptionFacets.",
"maxLength": 3000,
"maxGraphemes": 300
},
"shortDescriptionFacets": {
"type": "array",
"description": "Rich text annotations for shortDescription (mentions, URLs, hashtags, etc).",
"items": {
"type": "ref",
"ref": "app.bsky.richtext.facet"
}
},
"description": {
"type": "string",
"description": "Full constitution text: beliefs, values, governance positions. Rich text annotations may be provided via descriptionFacets.",
"maxLength": 30000,
"maxGraphemes": 3000
},
"descriptionFacets": {
"type": "array",
"description": "Rich text annotations for description (mentions, URLs, hashtags, etc).",
"items": {
"type": "ref",
"ref": "app.bsky.richtext.facet"
}
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the record was created"
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the record was last updated"
}
}
}
}
}
}