scot.comhairle.testingPolisPollV1

lexicon.store View official

Documentation

A poll/topic for deliberation in the Polis-style system

main record

A poll/topic for deliberation in the Polis-style system

Record Key tid Timestamp-based ID

Properties

closedAt string datetime Optional

Optional timestamp when the poll was closed to new submissions

createdAt string datetime Required

Timestamp when the poll was created

description string Optional

Optional longer description of the poll

maxLength: 3000 bytes
topic string Required

The topic or question being discussed

maxLength: 300 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "topic",
      "createdAt"
    ],
    "properties": {
      "topic": {
        "type": "string",
        "maxLength": 300,
        "description": "The topic or question being discussed"
      },
      "closedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Optional timestamp when the poll was closed to new submissions"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the poll was created"
      },
      "description": {
        "type": "string",
        "maxLength": 3000,
        "description": "Optional longer description of the poll"
      }
    }
  },
  "description": "A poll/topic for deliberation in the Polis-style system"
}

Lexicon Garden

@