{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "schemaVersion": "1.0",
  "title": "Branch Delta Dataset",
  "BranchDeltaResponse": {
    "type": "object",
    "properties": {
      "branchCrdNumber": {
        "type": "integer",
        "format": "int64"
      },
      "lastUpdatedTimestamp": {
        "type": "string",
        "format": "date-time",
        "description": "The date-time this update occurred."
      },
      "updateType": {
        "type": "string",
        "oneOf": [
          {
            "const": "U",
            "description": "Indicates that branch information has been updated."
          },
          {
            "const": "I",
            "description": "Indicates that new branch information has been inserted."
          }
        ]
      },
      "hasAdditionalChanges": {
        "type": "boolean",
        "description": "Indicates that the branch has additional changes for a given dateTime range besides being created/added."
      }
    },
    "required": [
      "branchCrdNumber",
      "lastUpdatedTimestamp",
      "updateType",
      "hasAdditionalChanges"
    ]
  }
}