org.simocracy.interview

lexicon.store View official

{
  "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
}

Validate Record

Validate a record against org.simocracy.interview

Validation Options
Treat any remaining unresolved references as valid

Metadata

DID
did:web:lexicon.store
CID
bafyreib6v7jg55hlpbxjekjcwcgcpqirmoztpwxf5sp7mbcgb54uy2di2a
Indexed At
2026-03-20 15:55 UTC
AT-URI
at://did:web:lexicon.store/com.atproto.lexicon.schema/org.simocracy.interview

Lexicon Garden

@