An interview transcript for a sim — captures voice answers and value positions to derive the sim's constitution and speaking style.
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when the interview was completed
openAnswers
array
of
ref
#openAnswer
Required
Open-ended question answers, transcribed from voice recordings.
sim
ref
com.atproto.repo.strongRef
Required
Reference to the sim record this interview is about
yesNoAnswers
array
of
ref
#valueResponse
Required
Yes/no value statement responses.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"sim",
"openAnswers",
"yesNoAnswers",
"createdAt"
],
"properties": {
"sim": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the sim record this interview is about"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the interview was completed"
},
"openAnswers": {
"type": "array",
"items": {
"ref": "#openAnswer",
"type": "ref"
},
"description": "Open-ended question answers, transcribed from voice recordings."
},
"yesNoAnswers": {
"type": "array",
"items": {
"ref": "#valueResponse",
"type": "ref"
},
"description": "Yes/no value statement responses."
}
}
},
"description": "An interview transcript for a sim — captures voice answers and value positions to derive the sim's constitution and speaking style."
}