{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://vinquery.com/schemas/decisioq/7.6.3/business-decision-request.schema.json",
  "title": "DecisioQ Business Decision Request",
  "type": "object",
  "required": ["businessData"],
  "properties": {
    "industry": { "type": "string" },
    "decisionType": { "type": "string" },
    "decisionVersion": { "type": "string" },
    "decisionId": { "type": "string" },
    "businessData": { "type": "object" },
    "requestContext": {
      "type": "object",
      "properties": {
        "correlationId": { "type": "string", "maxLength": 200 },
        "locale": { "type": "string" },
        "measurementSystem": { "type": "string" },
        "currency": { "type": "string" },
        "timeZone": { "type": "string" },
        "jurisdiction": {
          "type": "object",
          "properties": {
            "countryCode": { "type": "string" },
            "regionCode": { "type": "string" }
          }
        },
        "attributes": { "type": "object" }
      }
    }
  },
  "anyOf": [
    { "required": ["decisionId"] },
    { "required": ["decisionType"] }
  ]
}
