{
  "$schema": "http://json-schema.org/draft-07/schema",
  "$id": "provider.schema.json",
  "title": "provider",
  "description": "Enthält Daten der Versicherung",
  "type": "object",
  "properties": {
    "broker_id": {
      "type": "string",
      "minLength": 1,
      "description": "Vermittlernummer"
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "description": "Versicherungsname"
    }
  },

  "required": ["broker_id", "name"]

}