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