{
  "$id": "https://targetspace.ai/platform/schemas/answer-space.schema.json",
  "title": "AnswerSpace",
  "type": "object",
  "required": [
    "space_id",
    "options"
  ],
  "properties": {
    "space_id": {
      "type": "string",
      "pattern": "^[A-Za-z0-9._-]{3,64}$"
    },
    "options": {
      "type": "array",
      "minItems": 2,
      "maxItems": 12,
      "items": {
        "type": "object",
        "required": [
          "key",
          "label"
        ],
        "properties": {
          "key": {
            "type": "string",
            "pattern": "^[A-Za-z0-9._-]{3,64}$"
          },
          "label": {
            "type": "string"
          }
        }
      }
    },
    "hash": {
      "type": "string",
      "pattern": "^[a-f0-9]{64}$"
    }
  }
}
