No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
interviewer
string
did
Required
DID of the person/agent conducting the interview.
introduction
string
Optional
Optional framing message from the interviewer that the subject should read before answering.
maxLength: 10000 bytessubject
string
did
Required
DID of the person/agent being interviewed.
title
string
Required
Human-readable title for the interview.
maxLength: 300 bytestopic
string
Optional
Optional topic or theme.
maxLength: 500 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"subject",
"interviewer",
"createdAt"
],
"properties": {
"title": {
"type": "string",
"maxLength": 300,
"description": "Human-readable title for the interview."
},
"topic": {
"type": "string",
"maxLength": 500,
"description": "Optional topic or theme."
},
"subject": {
"type": "string",
"format": "did",
"description": "DID of the person/agent being interviewed."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"interviewer": {
"type": "string",
"format": "did",
"description": "DID of the person/agent conducting the interview."
},
"introduction": {
"type": "string",
"maxLength": 10000,
"description": "Optional framing message from the interviewer that the subject should read before answering."
}
}
}
}