A reusable interview questionnaire template. Captures the questions a sim creator is asked to derive constitution and style.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 30000 bytesmaxGraphemes: 3000 graphemesdescriptionFacets
array
of
ref
app.bsky.richtext.facet
Optional
No description available.
name
string
Required
No description available.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesquestions
array
of
ref
#question
Required
No description available.
maxLength: 40 itemsminLength: 1 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"questions",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"questions": {
"type": "array",
"items": {
"ref": "#question",
"type": "ref"
},
"maxLength": 40,
"minLength": 1
},
"description": {
"type": "string",
"maxLength": 30000,
"maxGraphemes": 3000
},
"descriptionFacets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
}
}
}
},
"description": "A reusable interview questionnaire template. Captures the questions a sim creator is asked to derive constitution and style."
}