{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://kiduna.design/schemas/bellwether/project.schema.json",
  "title": "Bellwether  Schema",
  "type": "object",
  "required": [
    "id",
    "type",
    "version",
    "organizationId",
    "title",
    "purpose",
    "status",
    "rolesNeeded",
    "sceneId"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 3
    },
    "type": {
      "const": "project"
    },
    "version": {
      "type": "string",
      "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$"
    },
    "organizationId": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "purpose": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "rolesNeeded": {
      "type": "array"
    },
    "sceneId": {
      "type": "string"
    }
  },
  "additionalProperties": true
}
