{
  "title": "Tax",
  "type": "object",
  "properties": {
    "Startdate": {
      "type": "string",
      "minLength": 8,
      "maxLength": 8,
      "pattern": "^[0-9]*$"
    },
    "TaxCalculation": {
      "type": "string",
      "enum": [
        "Normal",
        "Conversion PT",
        "FiscVolAmount",
        "FiscVolPercent",
        "Amount",
        "Percent",
        "PercentNormal",
        "NonResident",
        "NoCity",
        "NoTax",
        "Younger",
        "NormalPlus",
        "Trainer",
        "NormalMinPerc",
        "NormalMinAmount"
      ]
    },
    "Value": {
      "type": "number",
      "minimum": 0.0,
      "maximum": 9999999999.0
    }
  },
  "required": [
    "Startdate",
    "TaxCalculation",
    "Value"
  ]
}