org.simocracy.interviewTemplate
A reusable interview questionnaire template. Captures the questions a sim creator is asked to derive constitution and style.
record · key tid
A reusable interview questionnaire template. Captures the questions a sim creator is asked to derive constitution and style.
name*
string · max 300
description
string · max 3000
descriptionFacets
facet[]
questions*
#question[] · min 1 · max 40 · #question
createdAt*
datetime
Definitions
#questionobject
A single question inside an interview template.
id*
Stable ID — lets answers survive prompt edits.
string · max 64
type*
string
values: open · text · yesNo
prompt*
string · max 1000
required
boolean · default: false
▸ Raw lexicon JSON
{
"lexicon": 1,
"id": "org.simocracy.interviewTemplate",
"defs": {
"main": {
"type": "record",
"description": "A reusable interview questionnaire template. Captures the questions a sim creator is asked to derive constitution and style.",
"key": "tid",
"record": {
"type": "object",
"required": [
"name",
"questions",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300
},
"description": {
"type": "string",
"maxLength": 30000,
"maxGraphemes": 3000
},
"descriptionFacets": {
"type": "array",
"items": {
"type": "ref",
"ref": "app.bsky.richtext.facet"
}
},
"questions": {
"type": "array",
"minLength": 1,
"maxLength": 40,
"items": {
"type": "ref",
"ref": "#question"
}
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
},
"question": {
"type": "object",
"description": "A single question inside an interview template.",
"required": [
"id",
"type",
"prompt"
],
"properties": {
"id": {
"type": "string",
"maxLength": 64,
"description": "Stable ID — lets answers survive prompt edits."
},
"type": {
"type": "string",
"knownValues": [
"open",
"text",
"yesNo"
]
},
"prompt": {
"type": "string",
"maxLength": 1000
},
"required": {
"type": "boolean",
"default": false
}
}
}
}
}