{
  "$schema": "http://json-schema.org/draft-07/schema",
  "$id": "discount.schema.json",
  "title": "discount",
  "description": "Rabatte",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Rabattbezeichnung (z.B. 'public service', 'paperless')"
    },
    "value": {
      "type": "number",
      "description": "Rabatthöhe (z.B. -25.0)"
    },
    "value_unit": {
      "type": "string",
      "$ref": "enums/value_unit_type.schema.json#/$defs/value_unit_type"
    },
    "reason": {
      "type": "string",
      "description": "Begründung"
    }
  },

  "required": ["type", "value", "value_unit"]

}