{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://kiduna.design/schemas/bellwether/orientation.schema.json",
  "title": "Bellwether  Schema",
  "type": "object",
  "required": [
    "id",
    "type",
    "version",
    "statement",
    "dimensions",
    "scoring",
    "questionPolicy",
    "output"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 3
    },
    "type": {
      "const": "orientation"
    },
    "version": {
      "type": "string",
      "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$"
    },
    "statement": {
      "type": "string"
    },
    "dimensions": {
      "type": "array"
    },
    "scoring": {
      "type": "object"
    },
    "questionPolicy": {
      "type": "string"
    },
    "output": {
      "type": "array"
    }
  },
  "additionalProperties": true
}
