org.simocracy.interview

gainforest.earth

Documentation

An interview transcript for a sim — captures voice answers and value positions to derive the sim's constitution and speaking style.

main record

An interview transcript for a sim — captures voice answers and value positions to derive the sim's constitution and speaking style.

Record Key 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.

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."
}
openAnswer object

A single open-ended interview answer.

Properties

answer string Required

The transcribed voice answer

maxLength: 30000 bytesmaxGraphemes: 3000 graphemes
question string Required

The interview question that was asked

maxLength: 1000 bytes
View raw schema
{
  "type": "object",
  "required": [
    "question",
    "answer"
  ],
  "properties": {
    "answer": {
      "type": "string",
      "maxLength": 30000,
      "description": "The transcribed voice answer",
      "maxGraphemes": 3000
    },
    "question": {
      "type": "string",
      "maxLength": 1000,
      "description": "The interview question that was asked"
    }
  },
  "description": "A single open-ended interview answer."
}
valueResponse object

A yes/no response to a value statement.

Properties

answer boolean Required

Whether the interviewee agreed (true) or disagreed (false)

statement string Required

The value statement presented

maxLength: 1000 bytes
View raw schema
{
  "type": "object",
  "required": [
    "statement",
    "answer"
  ],
  "properties": {
    "answer": {
      "type": "boolean",
      "description": "Whether the interviewee agreed (true) or disagreed (false)"
    },
    "statement": {
      "type": "string",
      "maxLength": 1000,
      "description": "The value statement presented"
    }
  },
  "description": "A yes/no response to a value statement."
}

Lexicon Garden

@