org.simocracy.interviewTemplate

gainforest.earth

Documentation

A reusable interview questionnaire template. Captures the questions a sim creator is asked to derive constitution and style.

main record

A reusable interview questionnaire template. Captures the questions a sim creator is asked to derive constitution and style.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

No description available.

maxLength: 30000 bytesmaxGraphemes: 3000 graphemes
name string Required

No description available.

maxLength: 3000 bytesmaxGraphemes: 300 graphemes
questions array of ref #question Required

No description available.

maxLength: 40 itemsminLength: 1 items
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "questions",
      "createdAt"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 3000,
        "maxGraphemes": 300
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "questions": {
        "type": "array",
        "items": {
          "ref": "#question",
          "type": "ref"
        },
        "maxLength": 40,
        "minLength": 1
      },
      "description": {
        "type": "string",
        "maxLength": 30000,
        "maxGraphemes": 3000
      },
      "descriptionFacets": {
        "type": "array",
        "items": {
          "ref": "app.bsky.richtext.facet",
          "type": "ref"
        }
      }
    }
  },
  "description": "A reusable interview questionnaire template. Captures the questions a sim creator is asked to derive constitution and style."
}
question object

A single question inside an interview template.

Properties

id string Required

Stable ID — lets answers survive prompt edits.

maxLength: 64 bytes
prompt string Required

No description available.

maxLength: 1000 bytes
required boolean Optional

No description available.

type string Required

No description available.

Known values: open, text, yesNo
View raw schema
{
  "type": "object",
  "required": [
    "id",
    "type",
    "prompt"
  ],
  "properties": {
    "id": {
      "type": "string",
      "maxLength": 64,
      "description": "Stable ID — lets answers survive prompt edits."
    },
    "type": {
      "type": "string",
      "knownValues": [
        "open",
        "text",
        "yesNo"
      ]
    },
    "prompt": {
      "type": "string",
      "maxLength": 1000
    },
    "required": {
      "type": "boolean",
      "default": false
    }
  },
  "description": "A single question inside an interview template."
}

Lexicon Garden

@