# org.simocracy.interview

> Published by [gainforest.earth](https://lexicon.garden/identity/did:plc:qoti4acfmc5wg6zzmtix6hse)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/org.simocracy.interview)
- [Documentation](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/org.simocracy.interview/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/org.simocracy.interview/examples)

## Definitions

### `org.simocracy.interview`

**Type**: `record`

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

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `sim` | `ref` → `com.atproto.repo.strongRef` | Yes | Reference to the sim record this interview is about |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the interview was completed |
| `openAnswers` | `array` | Yes | Open-ended question answers, transcribed from voice recordings. |
| `yesNoAnswers` | `array` | Yes | Yes/no value statement responses. |

### `org.simocracy.interview#openAnswer`

**Type**: `object`

A single open-ended interview answer.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `answer` | `string` | Yes | The transcribed voice answer |
| `question` | `string` | Yes | The interview question that was asked |

### `org.simocracy.interview#valueResponse`

**Type**: `object`

A yes/no response to a value statement.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `answer` | `boolean` | Yes | Whether the interviewee agreed (true) or disagreed (false) |
| `statement` | `string` | Yes | The value statement presented |

## Raw Schema

```json
{
  "id": "org.simocracy.interview",
  "defs": {
    "main": {
      "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": {
      "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": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
