{
  "$schema": "http://json-schema.org/draft-07/schema",
  "$id": "enum/payment_type.schema.json",
  "title": "payment_type",
  "$defs": {
    "payment_type": {
      "type": "string",
      "enum": [
        "debit",
        "invoice"
      ],
      "description": "Zahlweise (Lastschrift/Rechnung)"
    }
  }
}
