{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://kiduna.design/schemas/bellwether/funding-decision.schema.json",
  "title": "Bellwether  Schema",
  "type": "object",
  "required": [
    "id",
    "type",
    "version",
    "fundingRequestId",
    "authority",
    "result",
    "basis",
    "allocations"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 3
    },
    "type": {
      "const": "funding-decision"
    },
    "version": {
      "type": "string",
      "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$"
    },
    "fundingRequestId": {
      "type": "string"
    },
    "authority": {
      "type": "string"
    },
    "result": {
      "type": "string"
    },
    "basis": {
      "type": "array"
    },
    "allocations": {
      "type": "array"
    }
  },
  "additionalProperties": true
}
