{
  "openapi" : "3.1.0",
  "info" : {
    "title" : "Portalverbund - Suchdienst REST-API",
    "description" : "Das Portalverbund-Onlinegateway (PVOG) stellt zentral die Verwaltungsleistungen von Bund und Ländern bereit. Die Aufgabe des Suchdienstes ist es, die bereitgestellten Verwaltungsleistungen anwendergerecht und öffentlich durchsuchbar und auffindbar zu machen. Die vom Suchdienst bereitgestellte REST-API bietet verschiedene Endpunkte zum Durchsuchen des Datenbestands des PVOG.<br/><br/>Hinweis: Die APIs der Produktivumgebung unter pvog.fitko.de werden am 01.08.2026 abgeschaltet. Bitte stellen Sie rechtzeitig auf pvog.fitko.net um. Für die Umgebungen Demo und PreProd sind keine Änderungen notwendig. <br/><br/>Weitere Informationen zur Versionierung der Schnittstellen finden Sie in unserem <a target=\"_blank\" href=\"https://produktportal.pvog.fitko.de/docs/suchdienst/doku/#versionierung-der-schnittstelle\">Produktportal</a>.",
    "contact" : {
      "name" : "FITKO",
      "url" : "https://www.fitko.de/"
    },
    "license" : {
      "name" : "Creative Commons Attribution Share Alike 4.0 (CC BY-SA 4.0)",
      "url" : "https://creativecommons.org/licenses/by-sa/4.0/"
    },
    "version" : "11.12.0"
  },
  "servers" : [ {
    "url" : "https://stage.pvog.fitko.net/suchdienst/api",
    "description" : "Generated server url"
  } ],
  "tags" : [ {
    "name" : "Organisationseinheiten",
    "description" : "Endpunkte für den Zugriff auf Organisationseinheiten. Zumeist Behörden sind diese Organisationen die Orte der Inanspruchnahme der gesuchten Leistung. Einer gesuchten Leistung können mehrere Organisationseinheiten zugeordnet sein."
  }, {
    "name" : "Onlinedienste",
    "description" : "Endpunkte zum separaten Abrufen der Onlinedienste."
  }, {
    "name" : "Statistik",
    "description" : "Dieser Endpunkt liefert Statistiken über den Datenbestand aus."
  }, {
    "name" : "Leistungen",
    "description" : "Endpunkte zum Suchen und Finden von Verwaltungsleistungen. Sobald ein amtlicher Regionalschlüssel (ARS) ermittelt wurde, können Leistungen (servicedescriptions) gesucht werden."
  }, {
    "name" : "Orte",
    "description" : "Um den für die Zuständigkeit notwendigen ARS zu ermitteln, kann die Ortssuche des Suchdienstes verwendet werden, sofern der ARS des Suchenden sich nicht aus einem anderen Kontext ermitteln lässt. Dazu bietet der Suchdienst die folgenden Schnittstellen."
  }, {
    "name" : "JZuFi",
    "description" : "Endpunkte zum Laden von JZuFi. JZuFi ist eine JSON-Representation des XZuFi Datenmodells."
  }, {
    "name" : "Orte - BKG",
    "description" : "Um den für die Zuständigkeit notwendigen ARS zu ermitteln, kann die Ortssuche des Suchdienstes verwendet werden,\nsofern der ARS des Suchenden sich nicht aus einem anderen Kontext ermitteln lässt.\nDazu bietet der Suchdienst die folgenden Schnittstellen.\n\n**Hinweis:** Die in der Version 3 vorliegenden Schnittstellen binden das Bundesamt für Kartographie und\nGeodäsie (BKG) als Datenquelle an.\nDie ARS entsprechen nicht in allen Fällen denen der ARS-Codeliste im\nxRepository (`urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:rs`).\nDies hat zur Folge, dass mit solchen ARS am Suchdienst keine Auflösung von Geschäftsobjekten garantiert werden kann.\n"
  } ],
  "paths" : {
    "/v7/servicedescriptions/{ars}" : {
      "get" : {
        "tags" : [ "Leistungen" ],
        "summary" : "Dieser Endpunkt gibt die Leistung und deren zugeordneten Lebenslagen aus.",
        "description" : "Die Leistung wird nach ARS und Lebenslagen gefiltert. Hier wird die Leistung mit allen verknüpften Lebenslagen und deren Sublagen ausgegeben.",
        "operationId" : "getSearchOutModelV7",
        "parameters" : [ {
          "name" : "ars",
          "in" : "path",
          "description" : "Der ARS des Ortes, für den die Leistung gelten soll. Falls der angegebene ARS kürzer als 12 Zeichen ist, wird der Wert mit Nullen aufgefüllt. Der ARS löst die Hierarchie nach oben hin auf.",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 0,
            "pattern" : "[0-9]*"
          },
          "example" : "01"
        }, {
          "name" : "personalMatters",
          "in" : "query",
          "description" : "Codes der Lebenslagen, nach denen gefiltert werden soll.",
          "required" : false,
          "schema" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          }
        }, {
          "name" : "facades",
          "in" : "query",
          "description" : "Bewirkt, dass die Schnittstelle zusätzlich zu den Treffern eine Aggregation der zugehörigen Lebenslagen liefert.",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : false
          }
        }, {
          "name" : "q",
          "in" : "query",
          "description" : "Der Wert, nach dem gesucht werden soll",
          "required" : false,
          "schema" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "maxItems" : 2147483647,
            "minItems" : 1
          },
          "example" : [ "Ingen" ]
        }, {
          "name" : "page",
          "in" : "query",
          "description" : "Ab Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 0,
            "maximum" : 100,
            "minimum" : 0
          }
        }, {
          "name" : "size",
          "in" : "query",
          "description" : "Anzahl der Ergebnisse pro Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 10,
            "maximum" : 9999,
            "minimum" : 5
          }
        }, {
          "name" : "fuzzysearch",
          "in" : "query",
          "description" : "Erlaubt eine Fuzzy-Suche",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : false
          }
        }, {
          "name" : "ignoreLeikaTypes",
          "in" : "query",
          "description" : "Ignoriert bestimmte Leika-Typisierungen der Liste urn:de:fim:leika:typisierung",
          "required" : false,
          "schema" : {
            "type" : "array",
            "default" : [ ],
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          }
        }, {
          "name" : "validDate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        }, {
          "name" : "useArsHierarchy",
          "in" : "query",
          "description" : "Ob die Ars-Hierarchie bei der Suche berücksichtigt werden soll",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : true
          }
        }, {
          "name" : "applyDynamicParams",
          "in" : "query",
          "description" : "Schalter für das Erweitern des Onlinedienstlinks um dynamische Parameter. Bei aktivem Flag werden Query-Parameter gemäß dem XZuFi-Standard und dem im Suchdienstkonzept definierten Vorgehen ergänzt.",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : false
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Liste von Leistungen und zählt/aggregiert deren Lebenslagen",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/SearchOutModelSdOutModelV7_Search"
                }
              }
            }
          },
          "500" : {
            "description" : "Es ist ein interner Fehler aufgetreten",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel_Search"
                },
                "examples" : {
                  "unbekannter Fehler" : {
                    "description" : "unbekannter Fehler",
                    "value" : {
                      "timestamp" : "2022-12-06T07:00:00.000000000Z",
                      "code" : "UNKNOWN_ERROR",
                      "message" : "Ein unbekannter Fehler ist aufgetreten.",
                      "codeNumber" : 1900
                    }
                  }
                }
              }
            }
          },
          "400" : {
            "description" : "Request nicht valide",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel_Search"
                },
                "examples" : {
                  "Unzulässige Zeichenanzahl" : {
                    "description" : "Die Zeichenkette 'x' ist zu kurz als Wert für den Parameter q.",
                    "value" : {
                      "timestamp" : "2022-12-06T07:00:00.000000000Z",
                      "code" : "BAD_REQUEST",
                      "message" : "Die übermittelten Request-Parameter entsprechen nicht den Anforderungen.",
                      "fields" : {
                        "x" : "Größe muss zwischen 2 und 2147483647 sein"
                      },
                      "codeNumber" : 1901
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v5/servicedescriptions/{ars}/detail" : {
      "get" : {
        "tags" : [ "Leistungen" ],
        "summary" : "Gibt eine vollständige Leistung.",
        "description" : "Gibt eine Leistung mit allen Informationen und allen zuständigen Organisationseinheiten in einem bestimmten Gebiet (ARS) zurück.",
        "operationId" : "getSdOutModelV5",
        "parameters" : [ {
          "name" : "ars",
          "in" : "path",
          "description" : "Wenn vorhanden, dann der ARS, ansonsten der AGS des Ortes, für den die Leistung gelten soll",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 12,
            "pattern" : "[0-9]*"
          },
          "example" : "010000000000"
        }, {
          "name" : "q",
          "in" : "query",
          "description" : "Die ID der Leistung, deren Details geladen werden sollen",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 2147483647,
            "minLength" : 2
          },
          "example" : "L100012.LB.9413106"
        }, {
          "name" : "validDate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        }, {
          "name" : "useArsHierarchy",
          "in" : "query",
          "description" : "Ob die Ars-Hierarchie bei der Suche berücksichtigt werden soll",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : true
          }
        }, {
          "name" : "applyDynamicParams",
          "in" : "query",
          "description" : "Schalter für das Erweitern des Onlinedienstlinks um dynamische Parameter. Bei aktivem Flag werden Query-Parameter gemäß dem XZuFi-Standard und dem im Suchdienstkonzept definierten Vorgehen ergänzt.",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : false
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert Details über eine spezielle Leistung",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/SdOutModelV5_Detail"
                }
              }
            }
          },
          "404" : {
            "description" : "Es wurde kein Ergebnis gefunden.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel_Detail"
                },
                "examples" : {
                  "Nicht gefunden" : {
                    "description" : "Nicht gefunden",
                    "value" : {
                      "timestamp" : "2022-12-06T07:00:00.000000000Z",
                      "code" : "NOT_FOUND",
                      "message" : "Die angegebene Resource konnte nicht gefunden werden.",
                      "codeNumber" : 1906
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v5/servicedescriptions/csv" : {
      "get" : {
        "tags" : [ "Leistungen" ],
        "summary" : "Liefert alle Leistungen anhand des ARS in einer CSV Datei aus.",
        "description" : "Ermöglicht das Abrufen aller Leistungen in einer CSV Datei, die für den ARS erbracht werden (also für die es eine entsprechende räumliche Zuständigkeit gibt). Zusätzlich zu den Leistungen werden die Onlinedienste geladen. Wenn zu einer Leistung mehrere Onlinedienste vorhanden sind, dann wird je Onlinedienst eine Leistung mit nur einem Onlinedienst ausgegeben. Aufbau der CSV-Datei: <ol><li>ID der Leistung,</li><li>LeikaIds der Leistung,</li><li>Bezeichnung der Leistung (Textmodul 02),</li><li>Alternative Bezeichnung der Leistung (Textmodul 03),</li><li>Letzter Updatezeitpunkt,</li><li>ID des Onlinedienstes,</li><li>Bezeichnung des Onlinedienstes,</li><li>Url des Onlinedienstes</li></ol>",
        "operationId" : "getAllLbsCsv",
        "parameters" : [ {
          "name" : "ars",
          "in" : "query",
          "description" : "Der ARS der Suche.",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 0,
            "pattern" : "[0-9]*"
          },
          "example" : "01"
        }, {
          "name" : "validDate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine CSV-Liste von Leistungen mit Onlinediensten.",
            "content" : {
              "application/octet-stream" : {
                "schema" : {
                  "type" : "string",
                  "format" : "binary"
                }
              }
            }
          },
          "500" : {
            "description" : "Es ist ein interner Fehler aufgetreten",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          },
          "400" : {
            "description" : "Es wurde eine falsche Anfrage gestellt",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          }
        }
      }
    },
    "/v5/organisationunits/detail" : {
      "get" : {
        "tags" : [ "Organisationseinheiten" ],
        "summary" : "Gibt die Organisationseinheit zurück",
        "description" : "Gibt die Organisationseinheit mit der angeforderten ID zurück. Die Rolle sowie die Kontaktpersonen und Formulare der Organisationseinheit ergeben sich aus der übergebenen 'lbId'. Werden keine 'lbId' und 'ars' übergeben, wird die Rolle auf 'Ansprechpunkt' gesetzt, und es werden keine Kontaktpersonen und Formulare geliefert.",
        "operationId" : "getDetailOeOutModelV5",
        "parameters" : [ {
          "name" : "q",
          "in" : "query",
          "description" : "Die ID der Organisationseinheit",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 2147483647,
            "minLength" : 2
          }
        }, {
          "name" : "ars",
          "in" : "query",
          "description" : "Filtert Kontaktpersonen und Formulare anhand der räumlichen Zuständigkeit, konkretisiert die Zuständigkeitsrolle",
          "required" : false,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 2
          }
        }, {
          "name" : "lbId",
          "in" : "query",
          "description" : "Filtert Kontaktpersonen und Formulare anhand der Zuständigkeit für die Leistung, konkretisiert die Zuständigkeitsrolle",
          "required" : false,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "validDate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Organisationseinheit für ID gefunden",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/DetailOeOutModelV5_Detail"
                }
              }
            }
          },
          "404" : {
            "description" : "Organisationseinheit nicht gefunden",
            "content" : {
              "application/json" : {
                "examples" : {
                  "Organisationseinheit nicht gefunden" : {
                    "description" : "Organisationseinheit nicht gefunden",
                    "value" : {
                      "timestamp" : "2022-10-10T09:21:56.440533600Z",
                      "code" : "NOT_FOUND",
                      "message" : "Die angegebene Resource konnte nicht gefunden werden.",
                      "codeNumber" : 1906
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v3/servicedescriptions/leikaid" : {
      "get" : {
        "tags" : [ "Leistungen" ],
        "summary" : "Sucht mit einem LeiKa-Schlüssel nach Leistungen.",
        "description" : "Sucht nach Leistungen anhand des jeweiligen LeiKa-Schlüssels in einem bestimmten Gebiet (ARS).",
        "operationId" : "findByLeikaIdV3",
        "parameters" : [ {
          "name" : "leikaIds",
          "in" : "query",
          "description" : "Liste von Leika-Schlüsseln",
          "required" : true,
          "schema" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          },
          "example" : [ "99147006067000" ]
        }, {
          "name" : "q",
          "in" : "query",
          "description" : "Eine Liste mit zusätzlichen Suchbegriffen",
          "required" : false,
          "schema" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          },
          "example" : [ "Ingenieur" ]
        }, {
          "name" : "ars",
          "in" : "query",
          "description" : "Der ARS des Ortes, für den die Leistung gelten soll. Falls der angegebene ARS kürzer als 12 Zeichen ist, wird der Wert mit Nullen aufgefüllt. Der ARS löst die Hierarchie nach oben hin auf.",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 0,
            "pattern" : "[0-9]*"
          },
          "example" : "01"
        }, {
          "name" : "withOrgIds",
          "in" : "query",
          "description" : "Legt fest, ob die Response organisationIds enthält",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : true
          }
        }, {
          "name" : "page",
          "in" : "query",
          "description" : "Ab Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 0,
            "maximum" : 100,
            "minimum" : 0
          }
        }, {
          "name" : "size",
          "in" : "query",
          "description" : "Anzahl der Ergebnisse ab Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 10,
            "maximum" : 9999,
            "minimum" : 5
          }
        }, {
          "name" : "validDate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        }, {
          "name" : "useArsHierarchy",
          "in" : "query",
          "description" : "Ob die Ars-Hierarchie bei der Suche berücksichtigt werden soll",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : true
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "OK",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ResultPageSdOutModelV7"
                }
              }
            }
          }
        }
      }
    },
    "/v3/servicedescriptions/jzufi" : {
      "get" : {
        "tags" : [ "JZuFi" ],
        "summary" : "JZuFi der Leistung in angefragter Version",
        "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Leistungsbeschreibung in angefragter Version zurück. Es werden Accept-Headers application/json; xzufi-version=2.2.0 oder application/json; xzufi-version=2.3.1 unterstützt. Wenn die Auslieferungsversion der Daten von der Version abweicht, in der die Daten an das PVOG geliefert wurden, werden die ausgelieferten Daten entsprechend konvertiert.",
        "operationId" : "getJzufiLbV3",
        "parameters" : [ {
          "name" : "id",
          "in" : "query",
          "description" : "Die ID der Leistungsbeschreibung, deren Details geladen werden sollen",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 255,
            "minLength" : 1
          },
          "example" : "L100012.LB.9413106"
        }, {
          "name" : "validdate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Leistung in angefragter Version zurück. Es werden Accept-Headers application/json; xzufi-version=2.2.0 oder application/json; xzufi-version=2.3.1 unterstützt.",
            "content" : {
              "application/json;xzufi-version=2.2.0" : {
                "schema" : {
                  "$ref" : "#/components/schemas/Leistung"
                },
                "examples" : {
                  "Leistung im JZuFi 2.2.0 Format" : {
                    "description" : "in diesem Beispiel: Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung",
                    "value" : {
                      "id" : {
                        "value" : "9413106",
                        "schemeAgencyID" : "L100012",
                        "schemeID" : "OID"
                      },
                      "idSekundaer" : [ {
                        "value" : "99147006067000",
                        "schemeAgencyID" : "GK_LEIKA",
                        "schemeAgencyName" : "GK LeiKa",
                        "schemeID" : "LEIKA_LEISTUNG_SCHLUESSEL",
                        "schemeName" : "LeiKa Leistungsschlüssel",
                        "schemeVersionID" : "2"
                      } ],
                      "struktur" : {
                        "leistungsobjektID" : {
                          "value" : "01147006000000",
                          "schemeAgencyID" : "GK_LEIKA",
                          "schemeAgencyName" : "GK LeiKa",
                          "schemeID" : "LEIKA_LEISTUNG_SCHLUESSEL",
                          "schemeName" : "LeiKa Leistungsschlüssel",
                          "schemeVersionID" : "2"
                        }
                      },
                      "referenzLeiKa" : [ {
                        "code" : "99147006067000",
                        "listURI" : "urn:de:fim:leika:leistung",
                        "listVersionID" : "20180705"
                      } ],
                      "modulText" : [ {
                        "inhalt" : [ {
                          "value" : "Engineer: Permission to take the professional title",
                          "languageCode" : "en"
                        }, {
                          "value" : "Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung",
                          "languageCode" : "de"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "02",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<p>Die Berufsbezeichnung &#34;Ingenieurin&#34; oder &#34;Ingenieur&#34; ist nach dem Ingenieurgesetz Schleswig-Holstein (IngG) gesetzlich geschützt. Diesen Titel - allein oder in einer Wortverbindung - darf führen,</p> <ol><li>wer ein Studium einer technischen oder technisch-naturwissenschaftlichen Fachrichtung mit einer Regelstudienzeit von mindestens sechs Semestern in Vollzeit oder während einer entsprechenden Gesamtdauer in Teilzeit an einer deutschen, staatlichen oder staatlich anerkannten Universität, Fachhochschule oder Berufsakademie mit Erfolg abgeschlossen hat, wobei dieser Studiengang überwiegend von den Bereichen Mathematik, Informatik, Naturwissenschaften und Technik geprägt sein muss; für die Bezeichnung &#34;Wirtschaftsingenieurin&#34; oder &#34;Wirtschaftsingenieur&#34; muss der Studiengang von diesen Fächern zumindest geprägt sein,</li><li>wer von der zuständigen Stelle die Genehmigung hierzu erhalten hat,</li><li>wer nach dem Recht eines anderen Landes der Bundesrepublik Deutschland zur Führung dieser Berufsbezeichnung berechtigt ist oder</li><li>wer bis zum Inkrafttreten dieses Gesetzes bereits berechtigt war, die Berufsbezeichnung zu führen.</li>/ol> <p>Bezeichnungen, die auf wirtschaftlich tätige Zusammenschlüsse (&#34;Ingenieurbüro&#34; o.ä.) hinweisen, dürfen in Verbindung mit der Berufsbezeichnung nach Absatz 1 oder ähnlichen Bezeichnungen nur geführt werden, wenn mindestens die Hälfte der Mitglieder des Vorstands, der Geschäftsführung oder der Personen, die mindestens über die Hälfte der Stimmrechte verfügen, zur Führung der Berufsbezeichnung berechtigt sind.</p> <p>Eine Genehmigung können Personen aus einem Mitgliedstaat der Europäischen Union, einem Vertragsstaat des Abkommens über den Europäischen Wirtschaftsraum oder einem sonstigen durch Abkommen gleichgestellten Staat (Mitglieds- oder Vertragsstaat) beantragen, wenn sie in Schleswig-Holstein ihre Hauptwohnung, ihre Hauptniederlassung oder ihre überwiegende berufliche Beschäftigung haben.</p> <p>Die für eine Genehmigung erforderlichen Befähigungs- oder Ausbildungsnachweise und/oder Berufserfahrungen hängen davon ab, ob der Beruf im Herkunftsland reglementiert ist oder nicht.</p> <p>Die zuständige Stelle (s.u.) kann bei wesentlichen Qualifikationsunterschieden Ausgleichsmaßnahmen in Form von Anpassungslehrgängen oder Eignungsprüfungen verlangen.</p> <p>Rechtfertigen Tatsachen die Annahme, dass die erforderliche fachliche Kenntnis fehlt oder Leben und Gesundheit von Menschen erheblich gefährdet sind, dann kann das Führen der Berufsbezeichnung durch die zuständige Behörde untersagt werden.</p> <p>Eine Genehmigung können Personen aus einem Mitgliedstaat der Europäischen Union, einem Vertragsstaat des Abkommens über den Europäischen Wirtschaftsraum oder einem sonstigen Abkommen gleichgestellten</p> <p>Rechtfertigen Tatsachen die Annahme, dass die erforderliche fachliche Kenntnis fehlt oder Leben und Gesundheit von Menschen erheblich gefährdet sind, dann kann das Führen der Berufsbezeichnung durch die zuständige Behörde untersagt werden.</p>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>The professional title &#34;engineer&#34; or &#34;engineer&#34; is protected by law under the Schleswig-Holstein Engineering Act (IngG). This title may lead to this title, alone or in a word connection,</p> <ol><li>who has successfully completed a degree in a technical or technical-natural science discipline with a standard period of study of at least six semesters full-time or for a corresponding total period of part-time at a German, state or state-recognised university, university of applied sciences or vocational academy, the main degree of which must be in the fields of mathematics, computer science, natural sciences and technology; for the term &#34;industrial engineer&#34; or &#34;industrial engineer&#34; the course of study must at least be shaped by these subjects,</li><li>who has received authorisation from the competent body to do so,</li><li>who is entitled under the law of another country of the Federal Republic of Germany to take that professional title, or</li><li>who was already entitled to hold the professional title until this Act came into force.</li></ol> <p>Designations indicating economically active mergers (&#34;engineering office&#34; or similar) may be used in conjunction with the professional title referred to in paragraph 1 or similar designations only if at least half of the members of the management board, management or persons holding at least half of the voting rights are entitled to take the professional title.</p> <p>Persons from a Member State of the European Union, a Contracting State to the Agreement on the European Economic Area or any other State (Member State or Contracting State) assised by agreements may apply for authorisation if they have their principal residence, principal place of business or predominant professional employment in Schleswig-Holstein.</p> <p>The qualifications or qualifications and/or professional experience required for authorisation depend on whether the profession is regulated in the country of origin or not.</p> <p>The competent body (see, among others) may require compensatory measures in the form of adaptation courses or aptitude tests in the event of significant differences in qualifications.</p> <p>If facts justify the assumption that the necessary technical knowledge is lacking or that people&#39;s lives and health are seriously endangered, then the competent authority may prohibit the taking of the professional title.</p> <p>Authorisation may be granted to persons from a Member State of the European Union, a State Party to the Agreement on the European Economic Area or any other agreement</p> <p>If facts justify the assumption that the necessary technical knowledge is lacking or that people&#39;s lives and health are seriously endangered, then the competent authority may prohibit the taking of the professional title.</p>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "06",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "positionDarstellung" : 1,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<p>An die Architekten- und Ingenieurkammer Schleswig-Holstein (AIK).</p>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>To the Chamber of Architects and Engineers Schleswig-Holstein (AIK).</p>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "23",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "positionDarstellung" : 4,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<p>Wer die Berufsbezeichnung &#34;Ingenieurin / Ingenieur&#34; führen möchte, benötigt eine Erlaubnis.</p>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>If you want to use the professional title &#34;Engineer&#34;/ an engineer, you need a permit.</p>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "05",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "positionDarstellung" : 17,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<p>Wer die Berufsbezeichnung &#34;Ingenieur/Ingenieurin&#34; führt, ohne dazu berechtigt zu sein, handelt ordnungswidrig. Die Ordnungswidrigkeit kann mit einer Geldbuße geahndet werden.</p> <p>Das Recht zum Führen akademischer Grade bleibt unberührt.</p>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>Anyone who holds the professional title &#34;engineer&#34; without being entitled to do so is acting in an irregular manner. The offence may be punished by a fine.</p> <p>The right to conduct academic degrees remains unaffected.</p>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "16",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "positionDarstellung" : 14,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<ul><li>EG-Richtlinie 2005/36 über die Anerkennung von Berufsqualifikationen,</li><li>Gesetz zum Schutze der Berufsbezeichnung &#34;Ingenieur&#34; (Ingenieurgesetz - IngG).</li></ul>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<ul><li>EC Directive 2005/36 on the recognition of professional qualifications,</li><li>Law on the Protection of the Professional Title &#34;Engineer&#34; (Engineering Law - IngG).</li></ul>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "07",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ {
                          "uri" : "http://www.gesetze-rechtsprechung.sh.juris.de/jportal/?quelle=jlink&query=IngG+SH&psml=bsshoprod.psml&max=true&aiz=true",
                          "titel" : "IngG",
                          "beschreibung" : "Keine weiteren Hinweise vorhanden",
                          "positionDarstellung" : 0,
                          "languageCode" : "de"
                        }, {
                          "uri" : "http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:255:0022:0142:de:PDF",
                          "titel" : "EC Directive 2005/36",
                          "beschreibung" : "Keine weiteren Hinweise vorhanden",
                          "positionDarstellung" : 1,
                          "languageCode" : "en"
                        }, {
                          "uri" : "http://www.gesetze-rechtsprechung.sh.juris.de/jportal/?quelle=jlink&query=IngG+SH&psml=bsshoprod.psml&max=true&aiz=true",
                          "titel" : "IngG",
                          "beschreibung" : "Keine weiteren Hinweise vorhanden",
                          "positionDarstellung" : 2,
                          "languageCode" : "en"
                        }, {
                          "uri" : "http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:255:0022:0142:de:PDF",
                          "titel" : "EG-Richtlinie 2005/36",
                          "beschreibung" : "Keine weiteren Hinweise vorhanden",
                          "positionDarstellung" : 3,
                          "languageCode" : "de"
                        } ],
                        "positionDarstellung" : 11,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      } ],
                      "modulTextIndividuell" : [ ],
                      "modulBegriffImKontext" : [ ],
                      "modulUrsprungsportal" : [ {
                        "uri" : "https://zufish.schleswig-holstein.de/portaldeeplink?tsa_leistung_id=9413106&tsa_sprache=en_EN",
                        "titel" : "Engineer: Permission to take the professional title",
                        "positionDarstellung" : 1,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "uri" : "https://zufish.schleswig-holstein.de/portaldeeplink?tsa_leistung_id=9413106&tsa_sprache=de_DE",
                        "titel" : "Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung",
                        "positionDarstellung" : 2,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      } ],
                      "typisierung" : [ {
                        "code" : "4",
                        "name" : "Regelungskompetenz auf Landesebene",
                        "listURI" : "urn:de:fim:leika:typisierung",
                        "listVersionID" : "20201204"
                      } ],
                      "leistungsadressat" : [ ],
                      "kennzeichenSchriftformerfordernis" : false,
                      "kategorie" : [ {
                        "klasse" : {
                          "id" : {
                            "value" : "Lebenslage",
                            "schemeAgencyID" : "L100012",
                            "schemeID" : "TELEPORT_LKK"
                          },
                          "idSekundaer" : [ ],
                          "bezeichnung" : [ {
                            "value" : "Lebens- und Unternehmenslage",
                            "languageCode" : "de"
                          } ],
                          "beschreibung" : [ ]
                        },
                        "id" : {
                          "value" : "8935715",
                          "schemeAgencyID" : "L100012",
                          "schemeID" : "OID"
                        },
                        "idSekundaer" : [ ],
                        "uebergeordneteKategorieID" : {
                          "value" : "8935703",
                          "schemeAgencyID" : "L100012",
                          "schemeID" : "OID"
                        },
                        "untergeordneteKategorieID" : [ ],
                        "bezeichnung" : [ {
                          "value" : "Genehmigungen/ Bescheinigungen",
                          "languageCode" : "de"
                        } ],
                        "beschreibung" : [ {
                          "value" : "<p>Genehmigungen/ Bescheinigungen</p>",
                          "languageCode" : "de"
                        } ]
                      } ],
                      "klassifizierung" : [ ],
                      "informationsbereichSDG" : [ ],
                      "idLeistungImKontext" : [ ],
                      "idProzess" : [ ],
                      "gueltigkeitGebietID" : [ {
                        "value" : "010000000000",
                        "schemeID" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:bundesland",
                        "schemeVersionID" : "2018-07-31"
                      } ],
                      "kennzeichenEA" : false,
                      "relevantFuerWirtschaftszweig" : [ ],
                      "relevantFuerRechtsform" : [ ],
                      "relevantFuerStaatsangehoerigkeit" : [ ],
                      "versionsinformation" : {
                        "geaendertDatumZeit" : "2021-03-11T12:47:51+01:00"
                      },
                      "sprachversion" : [ {
                        "languageCode" : "de",
                        "sprachbezeichnungDeutsch" : "Deutsch",
                        "sprachbezeichnungNativ" : "Deutsch"
                      } ],
                      "gueltigkeit" : [ ]
                    }
                  }
                }
              },
              "application/json;xzufi-version=2.3.1" : {
                "schema" : {
                  "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Leistung"
                },
                "examples" : {
                  "Leistung im JZuFi 2.3.1 Format" : {
                    "description" : "in diesem Beispiel: Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung",
                    "value" : {
                      "id" : {
                        "value" : "9413106",
                        "schemeAgencyID" : "L100012",
                        "schemeID" : "OID"
                      },
                      "idSekundaer" : [ ],
                      "struktur" : {
                        "leistungsobjektID" : {
                          "value" : "99150085000000",
                          "schemeAgencyID" : "GK_LEIKA",
                          "schemeAgencyName" : "GK LeiKa",
                          "schemeID" : "LEIKA_LEISTUNG_SCHLUESSEL",
                          "schemeName" : "LeiKa Leistungsschlüssel",
                          "schemeVersionID" : "2"
                        }
                      },
                      "referenzLeistungsschluessel" : [ {
                        "value" : "99150085001000",
                        "schemeURI" : "urn:de:fim:leika:leistung",
                        "schemeVersionID" : "20220301"
                      } ],
                      "leistungsadressat" : [ ],
                      "modulText" : [ {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "inhalt" : [ {
                          "value" : "Ingenieurin und Ingenieur mit ausländischer Berufsqualifikation, Erlaubnis zum Führen der Berufsbezeichnung \"Ingenieurin\" oder \"Ingenieur\" beantragen",
                          "html" : true,
                          "languageCode" : "de"
                        }, {
                          "value" : "Engineer with foreign professional qualification, apply for permission to use the professional title \"engineer",
                          "html" : true,
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "02",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.leistungstextmodul",
                          "listVersionID" : "20240101"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ]
                      }, {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "inhalt" : [ {
                          "value" : "Ingenieurin und Ingenieur mit ausländischer Berufsqualifikation, Erlaubnis zum Führen der Berufsbezeichnung \"Ingenieurin\" oder \"Ingenieur\" beantragen",
                          "html" : true,
                          "languageCode" : "de"
                        }, {
                          "value" : "Engineer with foreign professional qualification, apply for permission to use the professional title \"engineer",
                          "html" : true,
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "03",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.leistungstextmodul",
                          "listVersionID" : "20240101"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ]
                      }, {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "positionDarstellung" : 1,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "inhalt" : [ {
                          "value" : "<p>The profession of engineer is regulated in Germany. The job title is particularly protected. This means: You must prove a specific qualification in order to be allowed to use the professional title \"Ingenieurin\" or \"Ingenieur\". To prove a foreign qualification, you can apply for recognition of your professional qualification. You can also submit the application for the recognition procedure from abroad.</p> <p>In the recognition procedure, the competent body compares your professional qualification from abroad with the professional qualification in the chosen federal state. The procedure is called: equivalence determination. You will receive a decision on the result of the equivalence assessment. The notice will state your professional qualifications. If you lack professional qualifications for recognition, the notice will also state the main differences.</p> <p>In order to use the professional title \"engineer\", you must fulfill other requirements in addition to the equivalence of the professional qualifications. You may have to prove these requirements at a later date:</p> <ul> <li>Main residence, establishment or predominant work in the chosen federal state. Or: You want to live or work in the chosen federal state soon.</li> <li>Personal suitability</li> </ul> <p>If your qualifications are equivalent and you meet all other requirements, you may use the professional title \"engineer\".</p>",
                          "html" : true,
                          "languageCode" : "en"
                        }, {
                          "value" : "<p>Der Beruf Ingenieurin und Ingenieur ist in Deutschland reglementiert. Die Berufsbezeichnung ist besonders geschützt. Das bedeutet: Sie müssen eine spezifische Qualifikation nachweisen, um die Berufsbezeichnung \"Ingenieurin\" oder \"Ingenieur\" führen zur dürfen. Für den Nachweis einer ausländischen Qualifikation können Sie die Anerkennung Ihrer Berufsqualifikation beantragen. Sie können den Antrag für das Anerkennungsverfahren auch aus dem Ausland stellen.</p> <p>Im Anerkennungsverfahren vergleicht die zuständige Stelle Ihre Berufsqualifikation aus dem Ausland mit der Berufsqualifikation in dem gewählten Bundesland. Das Verfahren heißt: Gleichwertigkeitsfeststellung. Über das Ergebnis der Gleichwertigkeitsfeststellung erhalten Sie einen Bescheid. Der Bescheid nennt Ihre beruflichen Qualifikationen. Wenn Ihnen für eine Anerkennung berufliche Qualifikationen fehlen, nennt der Bescheid auch die wesentlichen Unterschiede.</p> <p>Für das Führen der Berufsbezeichnung \"Ingenieurin\" oder \"Ingenieur\" müssen Sie neben der Gleichwertigkeit der Berufsqualifikation noch weitere Voraussetzungen erfüllen. Diese Voraussetzungen müssen Sie vielleicht erst zu einem späteren Zeitpunkt nachweisen:</p> <ul> <li>Hauptwohnsitz, Niederlassung oder überwiegende Arbeit in dem gewählten Bundesland. Oder: Sie wollen bald in dem gewählten Bundesland wohnen oder arbeiten.</li> <li>Persönliche Eignung</li> </ul> <p>Ist Ihre Qualifikation gleichwertig und Sie erfüllen alle weiteren Voraussetzungen, dürfen Sie die Berufsbezeichnung \"Ingenieurin\" oder \"Ingenieur\" führen.</p>",
                          "html" : true,
                          "languageCode" : "de"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "06",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.leistungstextmodul",
                          "listVersionID" : "20240101"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ]
                      } ],
                      "modulTextIndividuell" : [ ],
                      "modulFrist" : [ ],
                      "modulBearbeitungsdauer" : [ ],
                      "modulKosten" : [ {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "kosten" : [ ],
                        "beschreibung" : [ {
                          "value" : "<p>Zusätzlich können weitere Kosten entstehen (z. B. für Übersetzungen oder Beglaubigungen Ihrer Dokumente oder Ausgleichsmaßnahmen). Diese Kosten sind individuell unterschiedlich.</p>",
                          "html" : true,
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>In addition, further costs may arise (e.g. for translations or certifications of your documents or compensation measures). These costs vary individually.</p>",
                          "html" : true,
                          "languageCode" : "en"
                        } ],
                        "weiterfuehrenderLink" : [ ]
                      } ],
                      "modulDokument" : [ ],
                      "modulBegriffImKontext" : [ {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "begriffImKontext" : [ {
                          "begriff" : {
                            "value" : "Foreign qualification",
                            "languageCode" : "de"
                          },
                          "typ" : {
                            "code" : "001",
                            "listURI" : "urn:xoev-de:fim:codeliste:xzufi.begriffimkontexttyp",
                            "listVersionID" : "3"
                          }
                        } ]
                      } ],
                      "modulFachlicheFreigabe" : [ {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "fachlichFreigegebenAm" : "2021-09-30",
                        "fachlichFreigegebenDurch" : [ {
                          "value" : "Federal Institute for Vocational Education and Training Saxony-Anhalt Chamber of Engineers",
                          "languageCode" : "en"
                        }, {
                          "value" : "Bundesinstitut für Berufsbildung Ingenieurkammer Sachsen-Anhalt",
                          "languageCode" : "de"
                        } ]
                      } ],
                      "modulAuskunftshinweis" : [ ],
                      "modulUrsprungsportal" : [ {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "positionDarstellung" : 1,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "uri" : "https://zufish.schleswig-holstein.de/portaldeeplink?tsa_leistung_id=9413106&tsa_sprache=de_DE",
                        "titel" : "Ingenieurin und Ingenieur mit ausländischer Berufsqualifikation, Erlaubnis zum Führen der Berufsbezeichnung „Ingenieurin“ oder „Ingenieur“ beantragen",
                        "dynamischeParameter" : [ ],
                        "languageCode" : "de"
                      } ],
                      "typisierung" : [ {
                        "code" : "4",
                        "name" : "Regelungskompetenz auf Landesebene",
                        "listURI" : "urn:xoev-de:fim:codeliste:xzufi.typisierung",
                        "listVersionID" : "20240101"
                      } ],
                      "kennzeichenFormularSchriftformerfordernis" : false,
                      "kategorie" : [ ],
                      "klassifizierung" : [ {
                        "code" : "1040400",
                        "listURI" : "urn:xoev-de:fim:codeliste:pvlagen",
                        "listVersionID" : "20211001"
                      } ],
                      "informationsbereicheSDG" : {
                        "informationsbereichSDG1" : [ {
                          "code" : "1020300",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.sdginformationsbereich1",
                          "listVersionID" : "1"
                        } ],
                        "informationsbereichSDG2" : [ ]
                      },
                      "leistungImKontextID" : [ ],
                      "prozessID" : [ ],
                      "gueltigkeitGebietID" : [ {
                        "value" : "010000000000",
                        "schemeID" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:bundesland",
                        "schemeVersionID" : "2010-04-01"
                      } ],
                      "durchfuehrbarEinheitlicheStelle" : [ {
                        "code" : "11",
                        "listURI" : "urn:xoev-de:fim:codeliste:xzufi.einheitlichestelletyp",
                        "listVersionID" : "1"
                      } ],
                      "relevantFuerWirtschaftszweig" : [ ],
                      "relevantFuerRechtsform" : [ ],
                      "relevantFuerStaatsangehoerigkeit" : {
                        "staatsangehoerigkeit" : [ ],
                        "staatengruppe" : [ ]
                      },
                      "versionsinformation" : {
                        "geaendertDatumZeit" : "2024-05-31"
                      },
                      "sprachversion" : [ {
                        "languageCode" : "de",
                        "sprachbezeichnungDeutsch" : "Deutsch",
                        "sprachbezeichnungNativ" : "Deutsch",
                        "kennzeichenMaschinelleUebersetzung" : false
                      }, {
                        "languageCode" : "en",
                        "sprachbezeichnungDeutsch" : "Englisch",
                        "sprachbezeichnungNativ" : "English",
                        "kennzeichenMaschinelleUebersetzung" : false
                      } ],
                      "gueltigkeit" : [ ]
                    }
                  }
                }
              }
            }
          },
          "404" : {
            "description" : "Es wurde kein Ergebnis gefunden.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          }
        },
        "deprecated" : true
      }
    },
    "/v3/relations/{ars}/jzufi" : {
      "get" : {
        "tags" : [ "JZuFi" ],
        "summary" : "JZuFi der Zuständigkeits-Objekte in angefragter Version",
        "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Zuständigkeits-Objekte in angefragter Version zurück. Ein Zuständigkeits-Objekt verknüpft Leistungen, Organisationseinheiten und Onlinedienste. Es werden Accept-Headers application/json; xzufi-version=2.2.0 oder application/json; xzufi-version=2.3.1 unterstützt. Wenn die Auslieferungsversion der Daten von der Version abweicht, in der die Daten an das PVOG geliefert wurden, werden die ausgelieferten Daten entsprechend konvertiert.",
        "operationId" : "getZsTrByLbIdAndArsV3",
        "parameters" : [ {
          "name" : "ars",
          "in" : "path",
          "description" : "Der ARS des Ortes, für den die Zuständigkeiten gelten sollen",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 0,
            "pattern" : "[0-9]*"
          },
          "example" : "010000000000"
        }, {
          "name" : "lbids",
          "in" : "query",
          "description" : "Die IDs der Leistungen, für die die Zuständigkeiten gelten sollen",
          "required" : true,
          "schema" : {
            "type" : "array",
            "items" : {
              "type" : "string",
              "maxLength" : 255,
              "minLength" : 1
            },
            "maxItems" : 50,
            "minItems" : 1
          },
          "example" : [ "L100012.LB.9413106" ]
        }, {
          "name" : "validdate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        }, {
          "name" : "usearshierarchy",
          "in" : "query",
          "description" : "Ob die Ars-Hierarchie bei der Suche berücksichtigt werden soll",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : true
          }
        }, {
          "name" : "page",
          "in" : "query",
          "description" : "Ab Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 0,
            "minimum" : 0
          }
        }, {
          "name" : "size",
          "in" : "query",
          "description" : "Anzahl der Ergebnisse pro Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 10,
            "maximum" : 9999,
            "minimum" : 5
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Liste von ZustaendigkeitTransferObjekten.",
            "content" : {
              "application/json;xzufi-version=2.2.0" : {
                "schema" : {
                  "$ref" : "#/components/schemas/RelationPage22"
                },
                "examples" : {
                  "Zuständigkeiten in JZuFi 2.2.0 Format" : {
                    "description" : "Liste mit den gefundenen Zuständigkeiten",
                    "value" : {
                      "content" : [ {
                        "uebergeordnetesObjektID" : {
                          "value" : "OE_xzufi22DeleteZSOD_77777_0001",
                          "schemeAgencyID" : "L100042"
                        },
                        "zustaendigkeit" : [ {
                          "rolle" : {
                            "code" : "03",
                            "name" : "Ansprechpunkt",
                            "listURI" : "urn:de:xzufi:codeliste:zustaendigkeitsrolle",
                            "listVersionID" : "20210401"
                          },
                          "id" : {
                            "value" : "LB_xzufi22DeleteZSOD_77777_0001.OE_xzufi22DeleteZSOD_77777_0001.095640000003",
                            "schemeAgencyID" : "L100042",
                            "schemeID" : "ZustaendigkeitOrganisationseinheit"
                          },
                          "idSekundaer" : [ {
                            "value" : "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWJtaXNzaW9uSG9zdCI6InN1Ym1pc3Npb24tYXBpLXRlc3RpbmcuZml0LWNvbm5lY3QuZml0a28uZGV2IiwiaXNzIjoiaHR0cHM6Ly9wb3J0YWwuYXV0aC10ZXN0aW5nLmZpdC1jb25uZWN0LmZpdGtvLmRldiIsInNlcnZpY2VzIjpbeyJnZWJpZXRJRHMiOlsidXJuOmRlOmJ1bmQ6ZGVzdGF0aXM6YmV2b2Vsa2VydW5nc3N0YXRpc3RpazpzY2hsdWVzc2VsOnJzOjEyMzEyMzEyMzEyMyJdLCJsZWlzdHVuZ0lEcyI6WyJ1cm46ZGU6ZmltOmxlaWthOmxlaXN0dW5nOkxCX3h6dWZpMjJEZWxldGVaU09EXzc3Nzc3XzAwMDIiXX1dLCJkZXN0aW5hdGlvbklkIjoiN2I0OWNlYWQtNDQ4My00OTczLWJiZTctODZlYWExNzFjOTkzIiwiaWF0IjoxNjg4NTY1NzcxLCJqdGkiOiI1YmI2ODZmMS1hOGI1LTRiNjItYmU3NC02MDIyZjhmZWIwMmIifQ.scU5RTTc0CeG60VgECB2M3mxVFG5XLltPn8iYYR3XExj_PvkXk9BQoMZNQIHVG07YniAedfoJvJJzhxcnhaVau-20uNgKljtlicANMPaFIFD9CtidUuy04OKf-RvYVwvIM6-8uHvhqV7fzdkzLBlbMni8XQjoeBpHWd6lFYL8Hzak55cAbjU2G1-2LXou2etVBMYCISTQ_K-CvM_f-4R_FFgE9t1nfYjJAZkYaWdJ9iS9xu5rgw_0AJymCkqKAWl1jdvSglPlsycpozXYn7duZjZ3nJNdZ3QmGCtLhRXyF2Y-9aOBCu4U0lYcMbn7rgVJG3KLNCMHGA_axnRDg88Yw",
                            "schemeAgencyID" : "urn:de:fitko",
                            "schemeID" : "urn:de:fitko:fit-connect:xzufi:destination"
                          } ],
                          "leistungID" : [ {
                            "value" : "LB_xzufi22DeleteZSOD_77777_0002",
                            "schemeAgencyID" : "L100042"
                          } ],
                          "gebietID" : [ {
                            "value" : "012012012012",
                            "schemeAgencyID" : "DESTATIS",
                            "schemeID" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:rs",
                            "schemeVersionID" : "2018-07-31"
                          } ],
                          "gueltigkeit" : [ ]
                        } ]
                      } ],
                      "page" : {
                        "number" : 0,
                        "size" : 10,
                        "totalElements" : 1,
                        "totalPages" : 1
                      }
                    }
                  }
                }
              },
              "application/json;xzufi-version=2.3.1" : {
                "schema" : {
                  "$ref" : "#/components/schemas/RelationPage23"
                },
                "examples" : {
                  "Zuständigkeiten in JZuFi 2.3.1 Format" : {
                    "description" : "Liste mit den gefundenen Zuständigkeiten",
                    "value" : {
                      "content" : [ {
                        "uebergeordnetesObjektID" : {
                          "value" : "OE_xzufi22DeleteZSOD_77777_0001",
                          "schemeAgencyID" : "L100042"
                        },
                        "zustaendigkeit" : [ {
                          "rolle" : {
                            "code" : "03",
                            "name" : "Ansprechpunkt",
                            "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zustaendigkeitsrolle",
                            "listVersionID" : "1"
                          },
                          "id" : {
                            "value" : "LB_xzufi22DeleteZSOD_77777_0001.OE_xzufi22DeleteZSOD_77777_0001.095640000003",
                            "schemeAgencyID" : "L100042",
                            "schemeID" : "ZustaendigkeitOrganisationseinheit"
                          },
                          "idSekundaer" : [ {
                            "value" : "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWJtaXNzaW9uSG9zdCI6InN1Ym1pc3Npb24tYXBpLXRlc3RpbmcuZml0LWNvbm5lY3QuZml0a28uZGV2IiwiaXNzIjoiaHR0cHM6Ly9wb3J0YWwuYXV0aC10ZXN0aW5nLmZpdC1jb25uZWN0LmZpdGtvLmRldiIsInNlcnZpY2VzIjpbeyJnZWJpZXRJRHMiOlsidXJuOmRlOmJ1bmQ6ZGVzdGF0aXM6YmV2b2Vsa2VydW5nc3N0YXRpc3RpazpzY2hsdWVzc2VsOnJzOjEyMzEyMzEyMzEyMyJdLCJsZWlzdHVuZ0lEcyI6WyJ1cm46ZGU6ZmltOmxlaWthOmxlaXN0dW5nOkxCX3h6dWZpMjJEZWxldGVaU09EXzc3Nzc3XzAwMDIiXX1dLCJkZXN0aW5hdGlvbklkIjoiN2I0OWNlYWQtNDQ4My00OTczLWJiZTctODZlYWExNzFjOTkzIiwiaWF0IjoxNjg4NTY1NzcxLCJqdGkiOiI1YmI2ODZmMS1hOGI1LTRiNjItYmU3NC02MDIyZjhmZWIwMmIifQ.scU5RTTc0CeG60VgECB2M3mxVFG5XLltPn8iYYR3XExj_PvkXk9BQoMZNQIHVG07YniAedfoJvJJzhxcnhaVau-20uNgKljtlicANMPaFIFD9CtidUuy04OKf-RvYVwvIM6-8uHvhqV7fzdkzLBlbMni8XQjoeBpHWd6lFYL8Hzak55cAbjU2G1-2LXou2etVBMYCISTQ_K-CvM_f-4R_FFgE9t1nfYjJAZkYaWdJ9iS9xu5rgw_0AJymCkqKAWl1jdvSglPlsycpozXYn7duZjZ3nJNdZ3QmGCtLhRXyF2Y-9aOBCu4U0lYcMbn7rgVJG3KLNCMHGA_axnRDg88Yw",
                            "schemeAgencyID" : "urn:de:fitko",
                            "schemeID" : "urn:de:fitko:fit-connect:xzufi:destination"
                          } ],
                          "leistungID" : [ {
                            "value" : "LB_xzufi22DeleteZSOD_77777_0002",
                            "schemeAgencyID" : "L100042"
                          } ],
                          "gebietID" : [ {
                            "value" : "012012012012",
                            "schemeAgencyID" : "DESTATIS",
                            "schemeID" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:rs",
                            "schemeVersionID" : "2018-07-31"
                          } ],
                          "gueltigkeit" : [ ]
                        } ]
                      } ],
                      "page" : {
                        "number" : 0,
                        "size" : 10,
                        "totalElements" : 1,
                        "totalPages" : 1
                      }
                    }
                  }
                }
              }
            }
          },
          "500" : {
            "description" : "Es ist ein interner Fehler aufgetreten",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          }
        },
        "deprecated" : true
      }
    },
    "/v3/locations" : {
      "get" : {
        "tags" : [ "Orte - BKG" ],
        "summary" : "Liefert anhand eines Suchbegriffs Ortsdaten aus dem BKG zurück.",
        "description" : "Liefert anhand eines Suchbegriffs Ortsdaten aus dem BKG zurück.",
        "operationId" : "getLocationsByQuery",
        "parameters" : [ {
          "name" : "q",
          "in" : "query",
          "description" : "Suchbegriff, z. B. PLZ, Ort (Min: 1, Max: 70 Zeichen)",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 70,
            "minLength" : 1
          },
          "example" : "Neumün"
        }, {
          "name" : "limit",
          "in" : "query",
          "description" : "Anzahl der Ergebnisse",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 10,
            "maximum" : 25,
            "minimum" : 1
          }
        }, {
          "name" : "filterBy",
          "in" : "query",
          "description" : "Gibt die Properties an, die immer enthalten (nicht leer) sein sollen.",
          "required" : false,
          "schema" : {
            "type" : "array",
            "default" : [ ],
            "items" : {
              "type" : "string",
              "enum" : [ "PLZ", "STRASSE", "ORT", "HAUSNUMMER" ]
            },
            "uniqueItems" : true
          }
        }, {
          "name" : "distinctBy",
          "in" : "query",
          "description" : "Gibt die Properties an, die unique sein sollen.",
          "required" : false,
          "schema" : {
            "type" : "array",
            "default" : [ ],
            "items" : {
              "type" : "string",
              "enum" : [ "ARS", "NAME", "PLZ", "STRASSE" ]
            },
            "uniqueItems" : true
          }
        }, {
          "name" : "ortsteil",
          "in" : "query",
          "description" : "Gibt an, ob die Ortsteile in den Ergebnissen ihren eigenen ARS beibehalten sollen (ortsteil=true)\noder ob die Ortsteil-ARS durch den Bundesland ARS ersetzt werden soll (ortsteil=false).\n",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : true
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Liste von Ortsangaben",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "$ref" : "#/components/schemas/GeoArsOutModelV3"
                  }
                },
                "example" : [ {
                  "name" : "Mannheim",
                  "ars" : "082220000000",
                  "arsFederalstate" : "08",
                  "gemeinde" : "Mannheim"
                }, {
                  "name" : "Mannheim 'Rheinau'",
                  "ars" : "082220000000",
                  "arsFederalstate" : "08",
                  "plz" : "68219",
                  "strasse" : "Hauptstraße",
                  "hausnummer" : "2",
                  "gemeinde" : "Mannheim",
                  "koordinaten" : [ 8.484444, 49.452778 ]
                } ]
              }
            }
          },
          "400" : {
            "description" : "Die Eingabeparameter sind ungültig.",
            "content" : {
              "application/json" : {
                "example" : {
                  "timestamp" : "2022-10-11T08:57:53.216502100Z",
                  "code" : "BAD_REQUEST",
                  "message" : "Die übermittelten Request-Pfad-Parameter entsprechen nicht den Anforderungen.",
                  "codeNumber" : 1901
                }
              }
            }
          }
        }
      }
    },
    "/v3/locations/suggestions" : {
      "get" : {
        "tags" : [ "Orte - BKG" ],
        "summary" : "Liefert eine Liste von Vorschlägen zur Autovervollständigung zurück.",
        "description" : "Liefert Vorschläge zur Autovervollständigung für den Suchbegriff zurück (Präfixsuche).",
        "operationId" : "autocompleteLocations",
        "parameters" : [ {
          "name" : "q",
          "in" : "query",
          "description" : "Präfix des Namens oder der PLZ des Ortes für den die Autovervollständigung durchgeführt werden soll",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 70,
            "minLength" : 1
          },
          "example" : "Neumün"
        }, {
          "name" : "limit",
          "in" : "query",
          "description" : "Anzahl der Ergebnisse",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 10,
            "maximum" : 25,
            "minimum" : 1
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Liste von Vorschlägen zurück.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "$ref" : "#/components/schemas/GeoSuggestionOutModel"
                  }
                },
                "example" : [ {
                  "name" : "Berlingerode",
                  "weight" : 1.8060234
                }, {
                  "name" : "Berlingen",
                  "weight" : 1.7954723
                } ]
              }
            }
          },
          "400" : {
            "description" : "Es wurde eine falsche Anfrage gestellt",
            "content" : {
              "application/json" : {
                "example" : {
                  "timestamp" : "2022-10-11T08:57:53.216502100Z",
                  "code" : "BAD_REQUEST",
                  "message" : "Die übermittelten Request-Pfad-Parameter entsprechen nicht den Anforderungen.",
                  "codeNumber" : 1901
                }
              }
            }
          }
        }
      }
    },
    "/v3/locations/details" : {
      "get" : {
        "tags" : [ "Orte - BKG" ],
        "summary" : "Liefert eine Liste von Ortsdaten aus dem BKG zurück.",
        "description" : "Liefert anhand des Wertes der Suchanfrage Ortsdaten aus dem BKG zurück.\nEs muss mindestens einer der Parameter ort oder plz gefüllt sein.\n\nBitte Hinweise zu v3 in der Beschreibung beachten.",
        "operationId" : "getLocationsByAddress",
        "parameters" : [ {
          "name" : "ort",
          "in" : "query",
          "description" : "Der Name des Ortes, nach dem gesucht werden soll",
          "required" : false,
          "schema" : {
            "type" : "string",
            "maxLength" : 70,
            "minLength" : 1
          }
        }, {
          "name" : "plz",
          "in" : "query",
          "description" : "Die Postleitzahl, nach der gesucht werden soll",
          "required" : false,
          "schema" : {
            "type" : "string",
            "maxLength" : 5,
            "minLength" : 1,
            "pattern" : "[0-9]*"
          }
        }, {
          "name" : "strasse",
          "in" : "query",
          "description" : "Die Straße, nach der gesucht werden soll",
          "required" : false,
          "schema" : {
            "type" : "string",
            "maxLength" : 70,
            "minLength" : 1
          }
        }, {
          "name" : "hausnummer",
          "in" : "query",
          "description" : "Die Hausnummer, nach der gesucht werden soll",
          "required" : false,
          "schema" : {
            "type" : "string",
            "maxLength" : 70,
            "minLength" : 1
          }
        }, {
          "name" : "limit",
          "in" : "query",
          "description" : "Anzahl der Ergebnisse",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 10,
            "maximum" : 25,
            "minimum" : 1
          }
        }, {
          "name" : "filterBy",
          "in" : "query",
          "description" : "Gibt die Properties an, die immer enthalten (nicht leer) sein sollen.",
          "required" : false,
          "schema" : {
            "type" : "array",
            "default" : [ ],
            "items" : {
              "type" : "string",
              "enum" : [ "PLZ", "STRASSE", "ORT", "HAUSNUMMER" ]
            },
            "uniqueItems" : true
          }
        }, {
          "name" : "distinctBy",
          "in" : "query",
          "description" : "Gibt die Properties an, die unique sein sollen.",
          "required" : false,
          "schema" : {
            "type" : "array",
            "default" : [ ],
            "items" : {
              "type" : "string",
              "enum" : [ "ARS", "NAME", "PLZ", "STRASSE" ]
            },
            "uniqueItems" : true
          }
        }, {
          "name" : "ortsteil",
          "in" : "query",
          "description" : "Gibt an, ob die Ortsteile in den Ergebnissen ihren eigenen ARS beibehalten sollen (ortsteil=true)\noder ob die Ortsteil-ARS durch den Bundesland ARS ersetzt werden soll (ortsteil=false).",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : true
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Liste von Ortsdaten",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "$ref" : "#/components/schemas/GeoArsOutModelV3"
                  }
                },
                "example" : [ {
                  "gemeinde" : "Mannheim",
                  "arsFederalstate" : "08",
                  "ars" : "082220000000",
                  "plz" : "68219",
                  "strasse" : "Waldblick",
                  "name" : "Mannheim 'Rheinau'",
                  "koordinaten" : [ 8.484444, 49.452778 ]
                } ]
              }
            }
          },
          "400" : {
            "description" : "Die Eingabeparameter sind ungültig.",
            "content" : {
              "application/json" : {
                "example" : {
                  "timestamp" : "2022-10-11T08:57:53.216502100Z",
                  "code" : "BAD_REQUEST",
                  "message" : "Die übermittelten Request-Pfad-Parameter entsprechen nicht den Anforderungen.",
                  "codeNumber" : 1901
                }
              }
            }
          }
        }
      }
    },
    "/v3/locations/ars" : {
      "get" : {
        "tags" : [ "Orte - BKG" ],
        "summary" : "Liefert eine Liste von Ortsdaten aus dem BKG anhand des Amtlichen Regionalschlüssels zurück.",
        "description" : "Liefert anhand des Wertes der Suchanfrage Ortsdaten aus dem BKG zurück.\n\nBitte Hinweise zu v3 in der Beschreibung beachten.",
        "operationId" : "getLocationsByArs",
        "parameters" : [ {
          "name" : "ars",
          "in" : "query",
          "description" : "Der Ars des Ortes, nach dem gesucht werden soll.",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 2,
            "pattern" : "[0-9]*"
          }
        }, {
          "name" : "limit",
          "in" : "query",
          "description" : "Anzahl der Ergebnisse",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 10,
            "maximum" : 25,
            "minimum" : 1
          }
        }, {
          "name" : "filterBy",
          "in" : "query",
          "description" : "Gibt die Properties an, die immer enthalten (nicht leer) sein sollen.",
          "required" : false,
          "schema" : {
            "type" : "array",
            "default" : [ ],
            "items" : {
              "type" : "string",
              "enum" : [ "PLZ", "STRASSE", "ORT", "HAUSNUMMER" ]
            },
            "uniqueItems" : true
          }
        }, {
          "name" : "distinctBy",
          "in" : "query",
          "description" : "Gibt die Properties an, die unique sein sollen.",
          "required" : false,
          "schema" : {
            "type" : "array",
            "default" : [ ],
            "items" : {
              "type" : "string",
              "enum" : [ "ARS", "NAME", "PLZ", "STRASSE" ]
            },
            "uniqueItems" : true
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Liste von Ortsdaten",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "$ref" : "#/components/schemas/GeoArsOutModelV3"
                  }
                },
                "example" : [ {
                  "name" : "Mannheim",
                  "ars" : "082220000000",
                  "arsFederalstate" : "08",
                  "gemeinde" : "Mannheim"
                }, {
                  "name" : "Mannheim 'Rheinau'",
                  "ars" : "082220000000",
                  "arsFederalstate" : "08",
                  "plz" : "68219",
                  "gemeinde" : "Mannheim",
                  "koordinaten" : [ 8.484444, 49.452778 ]
                } ]
              }
            }
          },
          "400" : {
            "description" : "Die Eingabeparameter sind ungültig.",
            "content" : {
              "application/json" : {
                "example" : {
                  "timestamp" : "2022-10-11T08:57:53.216502100Z",
                  "code" : "BAD_REQUEST",
                  "message" : "Die übermittelten Request-Pfad-Parameter entsprechen nicht den Anforderungen.",
                  "codeNumber" : 1901
                }
              }
            }
          }
        }
      }
    },
    "/v2/servicedescriptions/leikahierarchy" : {
      "get" : {
        "tags" : [ "Leistungen" ],
        "summary" : "Sucht nach den Leistungen anhand der Hierarchie der Leika-Schlüssel.",
        "description" : "Die übergebenen Leika-Schlüssel müssen alle auf der selben Ebene liegen, also alle entweder Verrichtungsdetail, Verrichtungskennung oder Leistungskennung.<p>Gesucht wird zuerst nach exakt übereinstimmenden Schlüsseln, aber unabhängig von der Länderkennung, sofern der jeweilige Schlüssel nicht den dezentralen Adressraum verwendet. Exakte Treffer werden per 'exact' Flag im 'meta' Objekt der Paginierung-Daten gekennzeichnet.</p><p>Gibt es keine direkten Treffer, werden spezifischere Leikas als die gesuchten gefunden.</p><p>Existieren auch diese nicht, wird nach übergeordneten Leikas gesucht.</p>",
        "operationId" : "findByLeikaIdHierarchyV2",
        "parameters" : [ {
          "name" : "leikaIds",
          "in" : "query",
          "description" : "Liste von gültigen Leika-Schlüsseln, temporäre Schlüssel der Form TMP_XX_... sind nicht erlaubt.",
          "required" : true,
          "schema" : {
            "type" : "array",
            "items" : {
              "type" : "string",
              "maxLength" : 14,
              "minLength" : 14
            }
          }
        }, {
          "name" : "ars",
          "in" : "query",
          "description" : "Der ARS des Ortes für den die Leistung gelten soll",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 0,
            "pattern" : "[0-9]*"
          }
        }, {
          "name" : "ignoreLeikaTypes",
          "in" : "query",
          "description" : "Ignoriert bestimmte Leika-Typisierungen der Liste urn:de:fim:leika:typisierung",
          "required" : false,
          "schema" : {
            "type" : "array",
            "default" : [ ],
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          }
        }, {
          "name" : "page",
          "in" : "query",
          "description" : "Ab Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 0,
            "maximum" : 100,
            "minimum" : 0
          }
        }, {
          "name" : "size",
          "in" : "query",
          "description" : "Anzahl der Ergebnisse ab Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 10,
            "maximum" : 9999,
            "minimum" : 5
          }
        }, {
          "name" : "validDate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "OK",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ResultPageWithMetaSdOutModelV7LeikaMeta"
                }
              }
            }
          }
        }
      }
    },
    "/v2/servicedescriptions/jzufi" : {
      "get" : {
        "tags" : [ "JZuFi" ],
        "summary" : "JZuFi der Leistung",
        "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Leistung zurück. Es werden die Daten dabei immer in der Version 2.2.0 des XZuFi-Standards geliefert. Wenn die Auslieferungsversion der Daten von der Version abweicht, in der die Daten an das PVOG geliefert wurden, werden die ausgelieferten Daten entsprechend konvertiert.",
        "operationId" : "getJzufiLbV2",
        "parameters" : [ {
          "name" : "q",
          "in" : "query",
          "description" : "Die ID der Leistung, deren Details geladen werden sollen",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 255,
            "minLength" : 1
          },
          "example" : "L100012.LB.9413106"
        }, {
          "name" : "validDate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Leistung als Jzufi zurück.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/Leistung"
                },
                "examples" : {
                  "Leistung im JZufi-Format" : {
                    "description" : "in diesem Beispiel: Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung",
                    "value" : {
                      "id" : {
                        "value" : "9413106",
                        "schemeAgencyID" : "L100012",
                        "schemeID" : "OID"
                      },
                      "idSekundaer" : [ {
                        "value" : "99147006067000",
                        "schemeAgencyID" : "GK_LEIKA",
                        "schemeAgencyName" : "GK LeiKa",
                        "schemeID" : "LEIKA_LEISTUNG_SCHLUESSEL",
                        "schemeName" : "LeiKa Leistungsschlüssel",
                        "schemeVersionID" : "2"
                      } ],
                      "struktur" : {
                        "leistungsobjektID" : {
                          "value" : "01147006000000",
                          "schemeAgencyID" : "GK_LEIKA",
                          "schemeAgencyName" : "GK LeiKa",
                          "schemeID" : "LEIKA_LEISTUNG_SCHLUESSEL",
                          "schemeName" : "LeiKa Leistungsschlüssel",
                          "schemeVersionID" : "2"
                        }
                      },
                      "referenzLeiKa" : [ {
                        "code" : "99147006067000",
                        "listURI" : "urn:de:fim:leika:leistung",
                        "listVersionID" : "20180705"
                      } ],
                      "modulText" : [ {
                        "inhalt" : [ {
                          "value" : "Engineer: Permission to take the professional title",
                          "languageCode" : "en"
                        }, {
                          "value" : "Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung",
                          "languageCode" : "de"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "02",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<p>Die Berufsbezeichnung &#34;Ingenieurin&#34; oder &#34;Ingenieur&#34; ist nach dem Ingenieurgesetz Schleswig-Holstein (IngG) gesetzlich geschützt. Diesen Titel - allein oder in einer Wortverbindung - darf führen,</p> <ol><li>wer ein Studium einer technischen oder technisch-naturwissenschaftlichen Fachrichtung mit einer Regelstudienzeit von mindestens sechs Semestern in Vollzeit oder während einer entsprechenden Gesamtdauer in Teilzeit an einer deutschen, staatlichen oder staatlich anerkannten Universität, Fachhochschule oder Berufsakademie mit Erfolg abgeschlossen hat, wobei dieser Studiengang überwiegend von den Bereichen Mathematik, Informatik, Naturwissenschaften und Technik geprägt sein muss; für die Bezeichnung &#34;Wirtschaftsingenieurin&#34; oder &#34;Wirtschaftsingenieur&#34; muss der Studiengang von diesen Fächern zumindest geprägt sein,</li><li>wer von der zuständigen Stelle die Genehmigung hierzu erhalten hat,</li><li>wer nach dem Recht eines anderen Landes der Bundesrepublik Deutschland zur Führung dieser Berufsbezeichnung berechtigt ist oder</li><li>wer bis zum Inkrafttreten dieses Gesetzes bereits berechtigt war, die Berufsbezeichnung zu führen.</li>/ol> <p>Bezeichnungen, die auf wirtschaftlich tätige Zusammenschlüsse (&#34;Ingenieurbüro&#34; o.ä.) hinweisen, dürfen in Verbindung mit der Berufsbezeichnung nach Absatz 1 oder ähnlichen Bezeichnungen nur geführt werden, wenn mindestens die Hälfte der Mitglieder des Vorstands, der Geschäftsführung oder der Personen, die mindestens über die Hälfte der Stimmrechte verfügen, zur Führung der Berufsbezeichnung berechtigt sind.</p> <p>Eine Genehmigung können Personen aus einem Mitgliedstaat der Europäischen Union, einem Vertragsstaat des Abkommens über den Europäischen Wirtschaftsraum oder einem sonstigen durch Abkommen gleichgestellten Staat (Mitglieds- oder Vertragsstaat) beantragen, wenn sie in Schleswig-Holstein ihre Hauptwohnung, ihre Hauptniederlassung oder ihre überwiegende berufliche Beschäftigung haben.</p> <p>Die für eine Genehmigung erforderlichen Befähigungs- oder Ausbildungsnachweise und/oder Berufserfahrungen hängen davon ab, ob der Beruf im Herkunftsland reglementiert ist oder nicht.</p> <p>Die zuständige Stelle (s.u.) kann bei wesentlichen Qualifikationsunterschieden Ausgleichsmaßnahmen in Form von Anpassungslehrgängen oder Eignungsprüfungen verlangen.</p> <p>Rechtfertigen Tatsachen die Annahme, dass die erforderliche fachliche Kenntnis fehlt oder Leben und Gesundheit von Menschen erheblich gefährdet sind, dann kann das Führen der Berufsbezeichnung durch die zuständige Behörde untersagt werden.</p> <p>Eine Genehmigung können Personen aus einem Mitgliedstaat der Europäischen Union, einem Vertragsstaat des Abkommens über den Europäischen Wirtschaftsraum oder einem sonstigen Abkommen gleichgestellten</p> <p>Rechtfertigen Tatsachen die Annahme, dass die erforderliche fachliche Kenntnis fehlt oder Leben und Gesundheit von Menschen erheblich gefährdet sind, dann kann das Führen der Berufsbezeichnung durch die zuständige Behörde untersagt werden.</p>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>The professional title &#34;engineer&#34; or &#34;engineer&#34; is protected by law under the Schleswig-Holstein Engineering Act (IngG). This title may lead to this title, alone or in a word connection,</p> <ol><li>who has successfully completed a degree in a technical or technical-natural science discipline with a standard period of study of at least six semesters full-time or for a corresponding total period of part-time at a German, state or state-recognised university, university of applied sciences or vocational academy, the main degree of which must be in the fields of mathematics, computer science, natural sciences and technology; for the term &#34;industrial engineer&#34; or &#34;industrial engineer&#34; the course of study must at least be shaped by these subjects,</li><li>who has received authorisation from the competent body to do so,</li><li>who is entitled under the law of another country of the Federal Republic of Germany to take that professional title, or</li><li>who was already entitled to hold the professional title until this Act came into force.</li></ol> <p>Designations indicating economically active mergers (&#34;engineering office&#34; or similar) may be used in conjunction with the professional title referred to in paragraph 1 or similar designations only if at least half of the members of the management board, management or persons holding at least half of the voting rights are entitled to take the professional title.</p> <p>Persons from a Member State of the European Union, a Contracting State to the Agreement on the European Economic Area or any other State (Member State or Contracting State) assised by agreements may apply for authorisation if they have their principal residence, principal place of business or predominant professional employment in Schleswig-Holstein.</p> <p>The qualifications or qualifications and/or professional experience required for authorisation depend on whether the profession is regulated in the country of origin or not.</p> <p>The competent body (see, among others) may require compensatory measures in the form of adaptation courses or aptitude tests in the event of significant differences in qualifications.</p> <p>If facts justify the assumption that the necessary technical knowledge is lacking or that people&#39;s lives and health are seriously endangered, then the competent authority may prohibit the taking of the professional title.</p> <p>Authorisation may be granted to persons from a Member State of the European Union, a State Party to the Agreement on the European Economic Area or any other agreement</p> <p>If facts justify the assumption that the necessary technical knowledge is lacking or that people&#39;s lives and health are seriously endangered, then the competent authority may prohibit the taking of the professional title.</p>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "06",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "positionDarstellung" : 1,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<p>An die Architekten- und Ingenieurkammer Schleswig-Holstein (AIK).</p>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>To the Chamber of Architects and Engineers Schleswig-Holstein (AIK).</p>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "23",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "positionDarstellung" : 4,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<p>Wer die Berufsbezeichnung &#34;Ingenieurin / Ingenieur&#34; führen möchte, benötigt eine Erlaubnis.</p>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>If you want to use the professional title &#34;Engineer&#34;/ an engineer, you need a permit.</p>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "05",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "positionDarstellung" : 17,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<p>Wer die Berufsbezeichnung &#34;Ingenieur/Ingenieurin&#34; führt, ohne dazu berechtigt zu sein, handelt ordnungswidrig. Die Ordnungswidrigkeit kann mit einer Geldbuße geahndet werden.</p> <p>Das Recht zum Führen akademischer Grade bleibt unberührt.</p>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>Anyone who holds the professional title &#34;engineer&#34; without being entitled to do so is acting in an irregular manner. The offence may be punished by a fine.</p> <p>The right to conduct academic degrees remains unaffected.</p>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "16",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "positionDarstellung" : 14,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<ul><li>EG-Richtlinie 2005/36 über die Anerkennung von Berufsqualifikationen,</li><li>Gesetz zum Schutze der Berufsbezeichnung &#34;Ingenieur&#34; (Ingenieurgesetz - IngG).</li></ul>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<ul><li>EC Directive 2005/36 on the recognition of professional qualifications,</li><li>Law on the Protection of the Professional Title &#34;Engineer&#34; (Engineering Law - IngG).</li></ul>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "07",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ {
                          "uri" : "http://www.gesetze-rechtsprechung.sh.juris.de/jportal/?quelle=jlink&query=IngG+SH&psml=bsshoprod.psml&max=true&aiz=true",
                          "titel" : "IngG",
                          "beschreibung" : "Keine weiteren Hinweise vorhanden",
                          "positionDarstellung" : 0,
                          "languageCode" : "de"
                        }, {
                          "uri" : "http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:255:0022:0142:de:PDF",
                          "titel" : "EC Directive 2005/36",
                          "beschreibung" : "Keine weiteren Hinweise vorhanden",
                          "positionDarstellung" : 1,
                          "languageCode" : "en"
                        }, {
                          "uri" : "http://www.gesetze-rechtsprechung.sh.juris.de/jportal/?quelle=jlink&query=IngG+SH&psml=bsshoprod.psml&max=true&aiz=true",
                          "titel" : "IngG",
                          "beschreibung" : "Keine weiteren Hinweise vorhanden",
                          "positionDarstellung" : 2,
                          "languageCode" : "en"
                        }, {
                          "uri" : "http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:255:0022:0142:de:PDF",
                          "titel" : "EG-Richtlinie 2005/36",
                          "beschreibung" : "Keine weiteren Hinweise vorhanden",
                          "positionDarstellung" : 3,
                          "languageCode" : "de"
                        } ],
                        "positionDarstellung" : 11,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      } ],
                      "modulTextIndividuell" : [ ],
                      "modulBegriffImKontext" : [ ],
                      "modulUrsprungsportal" : [ {
                        "uri" : "https://zufish.schleswig-holstein.de/portaldeeplink?tsa_leistung_id=9413106&tsa_sprache=en_EN",
                        "titel" : "Engineer: Permission to take the professional title",
                        "positionDarstellung" : 1,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "uri" : "https://zufish.schleswig-holstein.de/portaldeeplink?tsa_leistung_id=9413106&tsa_sprache=de_DE",
                        "titel" : "Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung",
                        "positionDarstellung" : 2,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      } ],
                      "typisierung" : [ {
                        "code" : "4",
                        "name" : "Regelungskompetenz auf Landesebene",
                        "listURI" : "urn:de:fim:leika:typisierung",
                        "listVersionID" : "20201204"
                      } ],
                      "leistungsadressat" : [ ],
                      "kennzeichenSchriftformerfordernis" : false,
                      "kategorie" : [ {
                        "klasse" : {
                          "id" : {
                            "value" : "Lebenslage",
                            "schemeAgencyID" : "L100012",
                            "schemeID" : "TELEPORT_LKK"
                          },
                          "idSekundaer" : [ ],
                          "bezeichnung" : [ {
                            "value" : "Lebens- und Unternehmenslage",
                            "languageCode" : "de"
                          } ],
                          "beschreibung" : [ ]
                        },
                        "id" : {
                          "value" : "8935715",
                          "schemeAgencyID" : "L100012",
                          "schemeID" : "OID"
                        },
                        "idSekundaer" : [ ],
                        "uebergeordneteKategorieID" : {
                          "value" : "8935703",
                          "schemeAgencyID" : "L100012",
                          "schemeID" : "OID"
                        },
                        "untergeordneteKategorieID" : [ ],
                        "bezeichnung" : [ {
                          "value" : "Genehmigungen/ Bescheinigungen",
                          "languageCode" : "de"
                        } ],
                        "beschreibung" : [ {
                          "value" : "<p>Genehmigungen/ Bescheinigungen</p>",
                          "languageCode" : "de"
                        } ]
                      } ],
                      "klassifizierung" : [ ],
                      "informationsbereichSDG" : [ ],
                      "idLeistungImKontext" : [ ],
                      "idProzess" : [ ],
                      "gueltigkeitGebietID" : [ {
                        "value" : "010000000000",
                        "schemeID" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:bundesland",
                        "schemeVersionID" : "2018-07-31"
                      } ],
                      "kennzeichenEA" : false,
                      "relevantFuerWirtschaftszweig" : [ ],
                      "relevantFuerRechtsform" : [ ],
                      "relevantFuerStaatsangehoerigkeit" : [ ],
                      "versionsinformation" : {
                        "geaendertDatumZeit" : "2021-03-11T12:47:51+01:00"
                      },
                      "sprachversion" : [ {
                        "languageCode" : "de",
                        "sprachbezeichnungDeutsch" : "Deutsch",
                        "sprachbezeichnungNativ" : "Deutsch"
                      } ],
                      "gueltigkeit" : [ ]
                    }
                  }
                }
              }
            }
          },
          "404" : {
            "description" : "Es wurde kein Ergebnis gefunden.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          }
        },
        "deprecated" : true
      }
    },
    "/v2/relations/{ars}/jzufi" : {
      "get" : {
        "tags" : [ "JZuFi" ],
        "summary" : "JZuFi der Zuständigkeits-Objekte",
        "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Zuständigkeits-Objekte zurück. Ein Zuständigkeits-Objekt verknüpft Leistungen, Organisationseinheiten und Onlinedienste. Es werden die Daten dabei immer in der Version 2.2.0 des XZuFi-Standards geliefert. Wenn die Auslieferungsversion der Daten von der Version abweicht, in der die Daten an das PVOG geliefert wurden, werden die ausgelieferten Daten entsprechend konvertiert.",
        "operationId" : "getZsTrByLbIdAndArs",
        "parameters" : [ {
          "name" : "ars",
          "in" : "path",
          "description" : "Der ARS des Ortes, für den die Zuständigkeiten gelten sollen",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 0,
            "pattern" : "[0-9]*"
          }
        }, {
          "name" : "lbids",
          "in" : "query",
          "description" : "Die IDs der Leistungen, für die die Zuständigkeiten gelten sollen",
          "required" : true,
          "schema" : {
            "type" : "array",
            "items" : {
              "type" : "string",
              "maxLength" : 2147483647,
              "minLength" : 1
            },
            "maxItems" : 50,
            "minItems" : 1
          }
        }, {
          "name" : "validDate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        }, {
          "name" : "useArsHierarchy",
          "in" : "query",
          "description" : "Ob die Ars-Hierarchie bei der Suche berücksichtigt werden soll",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : true
          }
        }, {
          "name" : "page",
          "in" : "query",
          "description" : "Ab Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 0,
            "minimum" : 0
          }
        }, {
          "name" : "size",
          "in" : "query",
          "description" : "Anzahl der Ergebnisse pro Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 10,
            "maximum" : 9999,
            "minimum" : 5
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Liste von ZustaendigkeitTransferObjekten.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/RelationPage"
                },
                "examples" : {
                  "Zuständigkeiten" : {
                    "description" : "Liste mit den gefundenen Zuständigkeiten",
                    "value" : {
                      "content" : [ {
                        "uebergeordnetesObjektID" : {
                          "value" : "OE_xzufi22DeleteZSOD_77777_0001",
                          "schemeAgencyID" : "L100042"
                        },
                        "zustaendigkeit" : [ {
                          "rolle" : {
                            "code" : "03",
                            "name" : "Ansprechpunkt",
                            "listURI" : "urn:de:xzufi:codeliste:zustaendigkeitsrolle",
                            "listVersionID" : "20210401"
                          },
                          "id" : {
                            "value" : "LB_xzufi22DeleteZSOD_77777_0001.OE_xzufi22DeleteZSOD_77777_0001.095640000003",
                            "schemeAgencyID" : "L100042",
                            "schemeID" : "ZustaendigkeitOrganisationseinheit"
                          },
                          "idSekundaer" : [ {
                            "value" : "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWJtaXNzaW9uSG9zdCI6InN1Ym1pc3Npb24tYXBpLXRlc3RpbmcuZml0LWNvbm5lY3QuZml0a28uZGV2IiwiaXNzIjoiaHR0cHM6Ly9wb3J0YWwuYXV0aC10ZXN0aW5nLmZpdC1jb25uZWN0LmZpdGtvLmRldiIsInNlcnZpY2VzIjpbeyJnZWJpZXRJRHMiOlsidXJuOmRlOmJ1bmQ6ZGVzdGF0aXM6YmV2b2Vsa2VydW5nc3N0YXRpc3RpazpzY2hsdWVzc2VsOnJzOjEyMzEyMzEyMzEyMyJdLCJsZWlzdHVuZ0lEcyI6WyJ1cm46ZGU6ZmltOmxlaWthOmxlaXN0dW5nOkxCX3h6dWZpMjJEZWxldGVaU09EXzc3Nzc3XzAwMDIiXX1dLCJkZXN0aW5hdGlvbklkIjoiN2I0OWNlYWQtNDQ4My00OTczLWJiZTctODZlYWExNzFjOTkzIiwiaWF0IjoxNjg4NTY1NzcxLCJqdGkiOiI1YmI2ODZmMS1hOGI1LTRiNjItYmU3NC02MDIyZjhmZWIwMmIifQ.scU5RTTc0CeG60VgECB2M3mxVFG5XLltPn8iYYR3XExj_PvkXk9BQoMZNQIHVG07YniAedfoJvJJzhxcnhaVau-20uNgKljtlicANMPaFIFD9CtidUuy04OKf-RvYVwvIM6-8uHvhqV7fzdkzLBlbMni8XQjoeBpHWd6lFYL8Hzak55cAbjU2G1-2LXou2etVBMYCISTQ_K-CvM_f-4R_FFgE9t1nfYjJAZkYaWdJ9iS9xu5rgw_0AJymCkqKAWl1jdvSglPlsycpozXYn7duZjZ3nJNdZ3QmGCtLhRXyF2Y-9aOBCu4U0lYcMbn7rgVJG3KLNCMHGA_axnRDg88Yw",
                            "schemeAgencyID" : "urn:de:fitko",
                            "schemeID" : "urn:de:fitko:fit-connect:xzufi:destination"
                          } ],
                          "leistungID" : [ {
                            "value" : "LB_xzufi22DeleteZSOD_77777_0002",
                            "schemeAgencyID" : "L100042"
                          } ],
                          "gebietID" : [ {
                            "value" : "012012012012",
                            "schemeAgencyID" : "DESTATIS",
                            "schemeID" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:rs",
                            "schemeVersionID" : "2018-07-31"
                          } ],
                          "gueltigkeit" : [ ]
                        } ]
                      } ],
                      "pageable" : {
                        "sort" : {
                          "empty" : true,
                          "sorted" : false,
                          "unsorted" : true
                        },
                        "offset" : 0,
                        "pageSize" : 10,
                        "pageNumber" : 0,
                        "unpaged" : false,
                        "paged" : true
                      },
                      "first" : true,
                      "last" : true,
                      "numberOfElements" : 1,
                      "totalElements" : 1,
                      "totalPages" : 1,
                      "empty" : false
                    }
                  }
                }
              }
            }
          },
          "500" : {
            "description" : "Es ist ein interner Fehler aufgetreten",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          }
        },
        "deprecated" : true
      }
    },
    "/v2/organisationunits/titles" : {
      "get" : {
        "tags" : [ "Organisationseinheiten" ],
        "summary" : "Liefert die Titel, Rollen und Kriterien von Organisationseinheiten",
        "description" : "Gibt die für eine Leistung zuständigen Organisationseinheiten mit ihrem Titel, sowie Rollen und Kriterien zurück",
        "operationId" : "getOrganisationUnitTitlesV2",
        "parameters" : [ {
          "name" : "ars",
          "in" : "query",
          "description" : "Der ARS der Suche.",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 0,
            "pattern" : "[0-9]*"
          }
        }, {
          "name" : "lbId",
          "in" : "query",
          "description" : "Die ID der Leistung",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "validDate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Titel, Rollen und Kriterien der vorhandenen Organisationseinheiten",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "$ref" : "#/components/schemas/OeInfoOutModel"
                  }
                }
              }
            }
          },
          "503" : {
            "description" : "Dieser Endpunkt ist kurzzeitig nicht verfügbar",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          }
        }
      }
    },
    "/v2/organisationunits/jzufi" : {
      "get" : {
        "tags" : [ "JZuFi" ],
        "summary" : "JZuFi der Organisationseinheit in angefragter Version",
        "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Organisationseinheit in angefragter Version zurück. Es werden Accept-Headers application/json; xzufi-version=2.2.0 oder application/json; xzufi-version=2.3.1 unterstützt. Wenn die Auslieferungsversion der Daten von der Version abweicht, in der die Daten an das PVOG geliefert wurden, werden die ausgelieferten Daten entsprechend konvertiert.",
        "operationId" : "getJzufiOeV2",
        "parameters" : [ {
          "name" : "id",
          "in" : "query",
          "description" : "Die ID der Organisationseinheit",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 255,
            "minLength" : 1
          }
        }, {
          "name" : "validdate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Organisationseinheit für ID gefunden",
            "content" : {
              "application/json;xzufi-version=2.2.0" : {
                "schema" : {
                  "$ref" : "#/components/schemas/OrganisationseinheitErweitert"
                },
                "example" : {
                  "zustaendigkeit" : [ ],
                  "formular" : [ ],
                  "kontaktperson" : [ ],
                  "id" : {
                    "value" : "868",
                    "schemeAgencyID" : "L100042"
                  },
                  "idSekundaer" : [ ],
                  "externeOrganisationseinheitsermittlung" : false,
                  "untergeordneteOrganisationseinheitID" : [ ],
                  "alternativeHierarchie" : [ ],
                  "kategorie" : [ ],
                  "name" : [ {
                    "name" : [ {
                      "value" : "Landgericht München I",
                      "languageCode" : "de"
                    } ],
                    "kurzbezeichnung" : [ {
                      "value" : "LG M1",
                      "languageCode" : "de"
                    } ]
                  } ],
                  "beschreibung" : [ ],
                  "kurzbeschreibung" : [ ],
                  "infoOeffnungszeitenText" : [ ],
                  "infoOeffnungszeitenStrukturiert" : [ ],
                  "infoInternServicecenter" : [ ],
                  "infoSonstige" : [ ],
                  "anschrift" : [ {
                    "anfahrturl" : [ {
                      "uri" : "http://geoportal.bayern.de/bayernatlas?&X=5333676.26&Y=4467699.5&zoom=14&lang=de&topic=ba&bgLayer=atkis&crosshair=marker",
                      "titel" : "Standort im BayernAtlas anzeigen",
                      "languageCode" : "de"
                    } ],
                    "infoParkplatz" : [ ],
                    "infoOEPNV" : [ ],
                    "infoBarrierefreiheit" : [ ],
                    "typ" : {
                      "code" : "001",
                      "listURI" : "urn:xoev-de:fim:codeliste:xzufi.anschrifttyp",
                      "listVersionID" : "2.0"
                    },
                    "strasse" : "Prielmayerstr. 7",
                    "postleitzahl" : "80335",
                    "ort" : "München",
                    "ortID" : [ ],
                    "verwaltungspolitischeKodierung" : {
                      "kreis" : {
                        "code" : "09162",
                        "name" : "München",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:kreis",
                        "listVersionID" : "unbestimmt"
                      },
                      "bezirk" : {
                        "code" : "091",
                        "name" : "Oberbayern",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:bezirk",
                        "listVersionID" : "unbestimmt"
                      },
                      "bundesland" : {
                        "code" : "09",
                        "name" : "Bayern",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:bundesland",
                        "listVersionID" : "unbestimmt"
                      },
                      "gemeindeschluessel" : {
                        "code" : "09162000",
                        "name" : "München, Landeshauptstadt",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:ags",
                        "listVersionID" : "unbestimmt"
                      },
                      "staat" : {
                        "code" : "000",
                        "name" : "Deutschland",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:staat",
                        "listVersionID" : "unbestimmt"
                      }
                    },
                    "geokodierung" : [ {
                      "point" : {
                        "id" : "ID_POINT_GEB_868_868",
                        "pos" : {
                          "value" : [ 4467699.5, 5333676.26 ],
                          "axisLabels" : [ ],
                          "uomLabels" : [ ]
                        },
                        "metaDataProperty" : [ ],
                        "name" : [ ],
                        "srsName" : "EPSG:31468",
                        "axisLabels" : [ ],
                        "uomLabels" : [ ]
                      }
                    } ],
                    "gueltigkeit" : [ ]
                  }, {
                    "anfahrturl" : [ ],
                    "infoParkplatz" : [ ],
                    "infoOEPNV" : [ ],
                    "infoBarrierefreiheit" : [ ],
                    "typ" : {
                      "code" : "006",
                      "listURI" : "urn:xoev-de:fim:codeliste:xzufi.anschrifttyp",
                      "listVersionID" : "2.0"
                    },
                    "strasse" : "",
                    "postleitzahl" : "80316",
                    "ort" : "München",
                    "ortID" : [ ],
                    "geokodierung" : [ ],
                    "gueltigkeit" : [ ]
                  } ],
                  "erreichbarkeit" : [ {
                    "kanal" : {
                      "code" : "02",
                      "name" : "Telefon Festnetz",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "unbestimmt"
                    },
                    "kennung" : "+49 89 5597-03",
                    "gueltigkeit" : [ ]
                  }, {
                    "kanal" : {
                      "code" : "04",
                      "name" : "Fax",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "unbestimmt"
                    },
                    "kennung" : "+49 89 5597-2991",
                    "gueltigkeit" : [ ]
                  }, {
                    "kanal" : {
                      "code" : "01",
                      "name" : "E-Mail",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "unbestimmt"
                    },
                    "kennung" : "Poststelle@lg-m1.bayern.de",
                    "gueltigkeit" : [ ]
                  } ],
                  "kommunikationssystem" : [ ],
                  "internetadresse" : [ {
                    "uri" : "http://www.justiz.bayern.de/gericht/lg/m1/"
                  } ],
                  "bankverbindung" : [ ],
                  "zahlungsweisen" : [ ],
                  "zahlungsweisenText" : [ ],
                  "synonym" : [ ],
                  "sprachversion" : [ {
                    "languageCode" : "de",
                    "sprachbezeichnungDeutsch" : "Deutsch",
                    "sprachbezeichnungNativ" : "Deutsch"
                  } ],
                  "gueltigkeit" : [ {
                    "beginn" : "1699-12-31+01:00",
                    "ende" : "2050-02-01+01:00",
                    "zusatz" : [ ]
                  } ]
                }
              },
              "application/json;xzufi-version=2.3.1" : {
                "schema" : {
                  "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.OrganisationseinheitErweitert"
                },
                "example" : {
                  "id" : {
                    "value" : "9137467",
                    "schemeAgencyID" : "L100012",
                    "schemeID" : "OID"
                  },
                  "idSekundaer" : [ ],
                  "externeOrganisationseinheitsermittlung" : false,
                  "untergeordneteOrganisationseinheitID" : [ ],
                  "alternativeHierarchie" : [ ],
                  "kategorie" : [ {
                    "id" : {
                      "value" : "9081960",
                      "schemeAgencyID" : "L100012",
                      "schemeID" : "OID"
                    },
                    "idSekundaer" : [ ],
                    "untergeordneteKategorieID" : [ ],
                    "klasse" : {
                      "id" : {
                        "value" : "ORGANISATIONSEINHEITSKATEGORIE"
                      },
                      "idSekundaer" : [ ],
                      "typ" : {
                        "code" : "002",
                        "listURI" : "urn:xoev-de:fim:codeliste:xzufi.kategorieklassetyp",
                        "listVersionID" : "1"
                      },
                      "bezeichnung" : [ {
                        "value" : "Organisationseinheitkategorie",
                        "languageCode" : "de"
                      } ],
                      "beschreibung" : [ ]
                    },
                    "bezeichnung" : [ {
                      "value" : "Kammer",
                      "languageCode" : "de"
                    } ],
                    "beschreibung" : [ ]
                  } ],
                  "name" : [ {
                    "name" : [ {
                      "value" : "Architekten- und Ingenieurkammer Schleswig-Holstein",
                      "languageCode" : "de"
                    } ],
                    "kurzbezeichnung" : [ ]
                  } ],
                  "beschreibung" : [ ],
                  "kurzbeschreibung" : [ ],
                  "infoOeffnungszeitenText" : [ {
                    "value" : "Montag - Donnerstag: 9.00 - 12.00 Uhr und 14.00 - 16.00 Uhr\\n Freitag: 9.00 - 12.00 Uhr\\n\\n",
                    "html" : true,
                    "languageCode" : "de"
                  } ],
                  "infoOeffnungszeitenStrukturiert" : [ ],
                  "terminvereinbarungsdienst" : [ ],
                  "infoInternServicecenter" : [ ],
                  "infoSonstige" : [ ],
                  "anschrift" : [ {
                    "typ" : {
                      "code" : "001",
                      "listURI" : "urn:xoev-de:fim:codeliste:xzufi.anschrifttyp",
                      "listVersionID" : "4"
                    },
                    "strasse" : "Düsternbrooker Weg",
                    "hausnummer" : "71",
                    "postleitzahl" : "24105",
                    "ort" : "Kiel",
                    "ortID" : [ {
                      "value" : "010020000000",
                      "schemeID" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:rs",
                      "schemeVersionID" : "2022-09-30"
                    } ],
                    "verwaltungspolitischeKodierung" : {
                      "staat" : {
                        "code" : "000",
                        "name" : "Deutschland",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:staat",
                        "listVersionID" : "2022-02-18"
                      },
                      "bundesland" : {
                        "code" : "01",
                        "name" : "Schleswig-Holstein",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:bundesland",
                        "listVersionID" : "2010-04-01"
                      },
                      "gemeindeschluessel" : {
                        "code" : "01002000",
                        "name" : "Kiel",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:ags",
                        "listVersionID" : "2018-07-31"
                      },
                      "regionalschluessel" : {
                        "code" : "010020000000",
                        "name" : "Kiel",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:rs",
                        "listVersionID" : "2022-09-30"
                      }
                    },
                    "geokodierung" : [ {
                      "point" : {
                        "metaDataProperty" : [ ],
                        "name" : [ ],
                        "srsName" : "EPSG:25832",
                        "axisLabels" : [ "longitude", "latitude" ],
                        "uomLabels" : [ ],
                        "pos" : {
                          "value" : [ 574786.184, 6021298.671 ],
                          "axisLabels" : [ ],
                          "uomLabels" : [ ]
                        }
                      }
                    } ],
                    "bild" : [ ],
                    "gueltigkeit" : [ ],
                    "anfahrturl" : [ ],
                    "infoParkplatz" : [ ],
                    "infoOEPNV" : [ ],
                    "infoBarrierefreiheit" : [ ],
                    "kennzeichenAufzug" : false
                  } ],
                  "erreichbarkeit" : [ {
                    "kanal" : {
                      "code" : "02",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "3"
                    },
                    "kennung" : "+49 431 57065-0",
                    "gueltigkeit" : [ ]
                  }, {
                    "kanal" : {
                      "code" : "04",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "3"
                    },
                    "kennung" : "+49 431 57065-25",
                    "gueltigkeit" : [ ]
                  }, {
                    "kanal" : {
                      "code" : "01",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "3"
                    },
                    "kennung" : "info@aik-sh.de",
                    "gueltigkeit" : [ ]
                  } ],
                  "internetadresse" : [ {
                    "uri" : "http://www.aik-sh.de",
                    "titel" : "www.aik-sh.de",
                    "languageCode" : "de"
                  } ],
                  "bankverbindung" : [ ],
                  "zahlungsweisen" : [ ],
                  "zahlungsweisenText" : [ ],
                  "synonym" : [ ],
                  "kennzeichenOeffentlichAnzeigen" : true,
                  "versionsinformation" : {
                    "geaendertDatumZeit" : "2023-10-12"
                  },
                  "sprachversion" : [ {
                    "languageCode" : "de",
                    "sprachbezeichnungDeutsch" : "Deutsch",
                    "sprachbezeichnungNativ" : "Deutsch",
                    "kennzeichenMaschinelleUebersetzung" : false
                  } ],
                  "gueltigkeit" : [ ],
                  "zustaendigkeit" : [ ],
                  "formular" : [ ],
                  "kontaktperson" : [ ]
                }
              }
            }
          },
          "404" : {
            "description" : "Organisationseinheit nicht gefunden",
            "content" : {
              "application/json" : {
                "example" : {
                  "timestamp" : "2022-10-10T12:38:03.887762500Z",
                  "code" : "NOT_FOUND",
                  "message" : "Die angegebene Resource konnte nicht gefunden werden.",
                  "codeNumber" : 1906
                }
              }
            }
          }
        },
        "deprecated" : true
      }
    },
    "/v2/onlineservices/detail" : {
      "get" : {
        "tags" : [ "Onlinedienste" ],
        "summary" : "Liefert einen Onlinedienst",
        "description" : "Liefert einen Onlinedienst mit der angeforderten ID zurück",
        "operationId" : "getDetailOdV2",
        "parameters" : [ {
          "name" : "q",
          "in" : "query",
          "description" : "Die ID des Onlinedienstes",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 2147483647,
            "minLength" : 2
          }
        }, {
          "name" : "validDate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Onlinedienst für ID gefunden",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/OnlineServiceOutModelV2"
                },
                "examples" : {
                  "Onlinedienst" : {
                    "description" : "Onlinedienst",
                    "value" : {
                      "id" : "L100042.OD.OD_xzufi22DeleteZSOD_77777_0001",
                      "name" : "Link bzw. URL zum Online-Dienst",
                      "helpLinks" : [ ],
                      "paymentMethods" : [ ],
                      "identificationMethods" : [ ],
                      "links" : [ {
                        "uri" : "https://lmgtfy.com/?q=OD_xzufi22DeleteZSOD_77777_0001",
                        "title" : "OD_xzufi22DeleteZSOD_77777_0001_Title",
                        "replace" : false,
                        "dynamicParameters" : [ ]
                      } ],
                      "validityPeriods" : [ {
                        "gte" : "1970-01-01",
                        "lte" : "2999-12-31"
                      } ],
                      "lastUpdate" : "2022-10-06T07:24:24.356725600Z",
                      "parameters" : [ ],
                      "executionLanguages" : [ ],
                      "executionNationalities" : [ ],
                      "levelOfConfidence" : "00",
                      "languages" : [ "de", "en" ],
                      "languageComplete" : {
                        "en" : true
                      },
                      "arsFederalstate" : [ "12" ],
                      "relations" : [ {
                        "id" : "L100042.ZSOD.LB_xzufi22DeleteZSOD_77777_0003.OD_xzufi22DeleteZSOD_77777_0001.095620000000",
                        "lbId" : "L100042.LB.LB_xzufi22DeleteZSOD_77777_0001",
                        "ars" : "012012012012",
                        "parentId" : "L100042.OD.OD_xzufi22DeleteZSOD_77777_0001",
                        "typ" : "ONLINESERVICE"
                      } ],
                      "logos" : [ ]
                    }
                  }
                }
              }
            }
          },
          "404" : {
            "description" : "Onlinedienst für ID nicht gefunden",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          }
        }
      }
    },
    "/v2/locations" : {
      "get" : {
        "tags" : [ "Orte" ],
        "summary" : "Liefert eine Liste von Ortsdaten aus dem ARS-Index zurück",
        "description" : "Liefert anhand des Wertes der Suchanfrage Orte aus dem ARS-Index zurück",
        "operationId" : "getLocationsV2",
        "parameters" : [ {
          "name" : "q",
          "in" : "query",
          "description" : "Der Name, die PLZ oder der ARS des Ortes, nach dem gesucht werden soll",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 2147483647,
            "minLength" : 2
          }
        }, {
          "name" : "limit",
          "in" : "query",
          "description" : "Anzahl der Ergebnisse",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 10,
            "maximum" : 10,
            "minimum" : 1
          }
        }, {
          "name" : "fuzzysearch",
          "in" : "query",
          "description" : "Gibt an, ob per Fuzzy Search Rechtschreibfehler korrigiert werden sollen.",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : false
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Liste von Orten",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "$ref" : "#/components/schemas/ArsObject_Detail"
                  }
                }
              }
            }
          },
          "400" : {
            "description" : "Die Eingabeparameter sind ungültig.",
            "content" : {
              "application/json" : {
                "example" : {
                  "timestamp" : "2022-10-11T08:57:53.216502100Z",
                  "code" : "BAD_REQUEST",
                  "message" : "Die übermittelten Request-Pfad-Parameter entsprechen nicht den Anforderungen.",
                  "codeNumber" : 1901
                }
              }
            }
          }
        }
      }
    },
    "/v2/locations/suggestions" : {
      "get" : {
        "tags" : [ "Orte" ],
        "summary" : "Liefert eine Liste von Orten",
        "description" : "Liefert Autovervollständigungs-Vorschläge für den Suchbegriff zurück (Präfixsuche).",
        "operationId" : "autocompleteLocationsV2",
        "parameters" : [ {
          "name" : "q",
          "in" : "query",
          "description" : "Präfix des Namens oder der PLZ des Ortes für den die Autovervollständigung durchgeführt werden soll",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 50,
            "minLength" : 1
          },
          "example" : "Neumün"
        }, {
          "name" : "size",
          "in" : "query",
          "description" : "Anzahl der Ergebnisse",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 11,
            "minimum" : 10
          }
        }, {
          "name" : "fuzzySearch",
          "in" : "query",
          "description" : "Aktiviert die unscharfe Fuzzy-Suche, die auch Teilübereinstimmungen akzeptiert",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : false
          }
        }, {
          "name" : "fuzzyFirst",
          "in" : "query",
          "description" : "Fuzzy-Ergebnisse vor (true) oder nach (false) normalen Treffern einordnen",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : false
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Liste von Vorschlägen zurück.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "$ref" : "#/components/schemas/ArsObject_Search"
                  }
                }
              }
            }
          },
          "400" : {
            "description" : "Es wurde eine falsche Anfrage gestellt",
            "content" : {
              "application/json" : {
                "example" : {
                  "timestamp" : "2022-10-11T09:13:41.002318600Z",
                  "code" : "BAD_REQUEST",
                  "message" : "Die übermittelten Request-Pfad-Parameter entsprechen nicht den Anforderungen.",
                  "codeNumber" : 1901
                }
              }
            }
          },
          "500" : {
            "description" : "Interner Fehler, z.B. bei der Suche in ElasticSearch",
            "content" : {
              "application/json" : {
                "example" : {
                  "timestamp" : "2022-10-11T09:15:31.346674500Z",
                  "code" : "ELSE_IO_ERROR",
                  "message" : "Fehler bei der Suche in ElasticSearch",
                  "codeNumber" : 1301
                }
              }
            }
          }
        }
      }
    },
    "/v2/locations/reverse" : {
      "get" : {
        "tags" : [ "Orte" ],
        "summary" : "Liefert die Ortsdaten aus der Suchdienst Datenbank zu einem Breiten- und Längengrad zurück",
        "description" : "Liefert anhand des Breitengrads und Längengrads einen Ort zurück.",
        "operationId" : "getArsByCoordinatesV2",
        "parameters" : [ {
          "name" : "lat",
          "in" : "query",
          "description" : "Der Breitengrad",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "lon",
          "in" : "query",
          "description" : "Der Längengrad",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Liste von Orten",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "$ref" : "#/components/schemas/GeoArsOutModelV2_Detail"
                  }
                }
              }
            }
          },
          "400" : {
            "description" : "Die Eingabeparameter sind ungültig.",
            "content" : {
              "application/json" : {
                "example" : {
                  "timestamp" : "2022-10-11T08:57:53.216502100Z",
                  "code" : "BAD_REQUEST",
                  "message" : "Die übermittelten Request-Pfad-Parameter entsprechen nicht den Anforderungen.",
                  "codeNumber" : 1901
                }
              }
            }
          }
        }
      }
    },
    "/v2/client-stats" : {
      "get" : {
        "tags" : [ "Statistik" ],
        "summary" : "Statistiken über Leistungen, Organisationseinheiten, Onlinedienste und Spezialisierungen",
        "description" : "Gibt Statistiken über vorhandene Leistungen, Organisationseinheiten, Onlinedienste und Spezialisierungen zurück. Es werden pro Bundesland und Gesamt Deutschland die Anzahl der Objekte und der Zeitpunkt der letzten Änderung angegeben.",
        "operationId" : "getClientStatsV2",
        "responses" : {
          "200" : {
            "description" : "Liefert die Statistik aus.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/FederalStateServices"
                },
                "examples" : {
                  "Statistik" : {
                    "description" : "erzeugt mit produktionsnahen Daten am 2022-07-20",
                    "value" : {
                      "timestamp" : "2022-07-20T10:15:32.595314627Z",
                      "stateServices" : { },
                      "stateStatistics" : [ {
                        "ars" : "00",
                        "lbs" : {
                          "count" : 748,
                          "lastUpdate" : "2022-07-19T06:53:24.241073052Z"
                        },
                        "ods" : {
                          "count" : 130,
                          "lastUpdate" : "2022-07-19T06:53:24.240965870Z"
                        },
                        "oes" : {
                          "count" : 326,
                          "lastUpdate" : "2022-07-19T06:53:24.240986605Z"
                        },
                        "sps" : {
                          "count" : 0
                        }
                      }, {
                        "ars" : "01",
                        "lbs" : {
                          "count" : 792,
                          "lastUpdate" : "2022-07-19T07:20:17.278932448Z"
                        },
                        "ods" : {
                          "count" : 271,
                          "lastUpdate" : "2022-07-19T07:20:16.796392653Z"
                        },
                        "oes" : {
                          "count" : 3462,
                          "lastUpdate" : "2022-07-19T07:20:17.278885268Z"
                        },
                        "sps" : {
                          "count" : 7075,
                          "lastUpdate" : "2022-07-19T07:20:16.547389372Z"
                        }
                      }, {
                        "ars" : "02",
                        "lbs" : {
                          "count" : 782,
                          "lastUpdate" : "2022-07-19T07:32:27.427464354Z"
                        },
                        "ods" : {
                          "count" : 80,
                          "lastUpdate" : "2022-07-19T07:32:26.774724853Z"
                        },
                        "oes" : {
                          "count" : 7028,
                          "lastUpdate" : "2022-07-19T07:32:27.427423827Z"
                        },
                        "sps" : {
                          "count" : 0
                        }
                      }, {
                        "ars" : "03",
                        "lbs" : {
                          "count" : 1204,
                          "lastUpdate" : "2022-07-19T07:32:44.184895074Z"
                        },
                        "ods" : {
                          "count" : 1378,
                          "lastUpdate" : "2022-07-19T07:32:44.086878429Z"
                        },
                        "oes" : {
                          "count" : 5715,
                          "lastUpdate" : "2022-07-19T07:32:44.184855294Z"
                        },
                        "sps" : {
                          "count" : 16769,
                          "lastUpdate" : "2022-07-19T07:32:43.381343560Z"
                        }
                      }, {
                        "ars" : "04",
                        "lbs" : {
                          "count" : 725,
                          "lastUpdate" : "2022-07-19T06:52:55.753268143Z"
                        },
                        "ods" : {
                          "count" : 418,
                          "lastUpdate" : "2022-07-19T06:52:55.574287893Z"
                        },
                        "oes" : {
                          "count" : 212,
                          "lastUpdate" : "2022-07-19T06:52:55.753231130Z"
                        },
                        "sps" : {
                          "count" : 0
                        }
                      }, {
                        "ars" : "05",
                        "lbs" : {
                          "count" : 2398,
                          "lastUpdate" : "2022-07-19T07:45:04.930550542Z"
                        },
                        "ods" : {
                          "count" : 1224,
                          "lastUpdate" : "2022-07-19T07:45:04.851279111Z"
                        },
                        "oes" : {
                          "count" : 8579,
                          "lastUpdate" : "2022-07-19T07:45:04.930131315Z"
                        },
                        "sps" : {
                          "count" : 122212,
                          "lastUpdate" : "2022-07-19T07:45:04.930263106Z"
                        }
                      }, {
                        "ars" : "06",
                        "lbs" : {
                          "count" : 1101,
                          "lastUpdate" : "2022-07-19T07:07:13.172307543Z"
                        },
                        "ods" : {
                          "count" : 1160,
                          "lastUpdate" : "2022-07-19T07:07:12.914191030Z"
                        },
                        "oes" : {
                          "count" : 6129,
                          "lastUpdate" : "2022-07-19T07:07:13.171898551Z"
                        },
                        "sps" : {
                          "count" : 8270,
                          "lastUpdate" : "2022-07-19T07:07:13.172190289Z"
                        }
                      }, {
                        "ars" : "07",
                        "lbs" : {
                          "count" : 1464,
                          "lastUpdate" : "2022-07-19T07:20:24.126810804Z"
                        },
                        "ods" : {
                          "count" : 1471,
                          "lastUpdate" : "2022-07-19T07:20:10.801643050Z"
                        },
                        "oes" : {
                          "count" : 4305,
                          "lastUpdate" : "2022-07-19T07:20:24.126398398Z"
                        },
                        "sps" : {
                          "count" : 5456,
                          "lastUpdate" : "2022-07-19T07:20:24.126434331Z"
                        }
                      }, {
                        "ars" : "09",
                        "lbs" : {
                          "count" : 1758,
                          "lastUpdate" : "2022-07-19T08:34:53.494492467Z"
                        },
                        "ods" : {
                          "count" : 34089,
                          "lastUpdate" : "2022-07-19T08:34:53.493357002Z"
                        },
                        "oes" : {
                          "count" : 13627,
                          "lastUpdate" : "2022-07-19T08:34:53.493400214Z"
                        },
                        "sps" : {
                          "count" : 232738,
                          "lastUpdate" : "2022-07-19T08:34:32.198085504Z"
                        }
                      }, {
                        "ars" : "11",
                        "lbs" : {
                          "count" : 855,
                          "lastUpdate" : "2022-07-19T07:25:31.050583286Z"
                        },
                        "ods" : {
                          "count" : 0
                        },
                        "oes" : {
                          "count" : 685,
                          "lastUpdate" : "2022-07-19T07:25:31.050546529Z"
                        },
                        "sps" : {
                          "count" : 0
                        }
                      }, {
                        "ars" : "12",
                        "lbs" : {
                          "count" : 971,
                          "lastUpdate" : "2022-07-19T07:23:32.864106752Z"
                        },
                        "ods" : {
                          "count" : 90,
                          "lastUpdate" : "2022-07-19T07:23:06.220174727Z"
                        },
                        "oes" : {
                          "count" : 681,
                          "lastUpdate" : "2022-07-19T07:23:32.863749176Z"
                        },
                        "sps" : {
                          "count" : 1168,
                          "lastUpdate" : "2022-07-19T07:23:32.863795896Z"
                        }
                      }, {
                        "ars" : "13",
                        "lbs" : {
                          "count" : 915,
                          "lastUpdate" : "2022-07-19T07:18:11.005474044Z"
                        },
                        "ods" : {
                          "count" : 707,
                          "lastUpdate" : "2022-07-19T07:18:11.005412169Z"
                        },
                        "oes" : {
                          "count" : 1337,
                          "lastUpdate" : "2022-07-19T07:18:11.005422761Z"
                        },
                        "sps" : {
                          "count" : 1704,
                          "lastUpdate" : "2022-07-19T07:18:09.311520836Z"
                        }
                      }, {
                        "ars" : "15",
                        "lbs" : {
                          "count" : 995,
                          "lastUpdate" : "2022-07-19T07:00:48.226773965Z"
                        },
                        "ods" : {
                          "count" : 67,
                          "lastUpdate" : "2022-07-19T07:00:11.015474793Z"
                        },
                        "oes" : {
                          "count" : 3855,
                          "lastUpdate" : "2022-07-19T07:00:48.226459685Z"
                        },
                        "sps" : {
                          "count" : 1264,
                          "lastUpdate" : "2022-07-19T07:00:48.226539239Z"
                        }
                      }, {
                        "ars" : "16",
                        "lbs" : {
                          "count" : 769,
                          "lastUpdate" : "2022-07-19T07:01:12.617807491Z"
                        },
                        "ods" : {
                          "count" : 847,
                          "lastUpdate" : "2022-07-19T07:01:12.550006762Z"
                        },
                        "oes" : {
                          "count" : 2637,
                          "lastUpdate" : "2022-07-19T07:01:12.617595682Z"
                        },
                        "sps" : {
                          "count" : 1952,
                          "lastUpdate" : "2022-07-19T07:01:12.617638564Z"
                        }
                      } ]
                    }
                  }
                }
              }
            }
          },
          "500" : {
            "description" : "Es ist ein interner Fehler aufgetreten",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          }
        }
      }
    },
    "/v1/servicedescriptions/{id}/jzufi-2-3" : {
      "get" : {
        "tags" : [ "JZuFi" ],
        "summary" : "JZuFi der Leistung in der XZuFi-Version 2.3.1",
        "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Leistungsbeschreibung in der XZuFi-Version 2.3.1 zurück. Wenn die Auslieferungsversion der Daten von der Version abweicht, in der die Daten an das PVOG geliefert wurden, werden die ausgelieferten Daten entsprechend konvertiert.",
        "operationId" : "getJzufiLb231V1",
        "parameters" : [ {
          "name" : "id",
          "in" : "path",
          "description" : "Die ID der Leistungsbeschreibung, deren Details geladen werden sollen",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 255,
            "minLength" : 1
          },
          "example" : "L100012.LB.9413106"
        }, {
          "name" : "validdate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Leistung in der XZuFi-Version 2.3.1 zurück.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Leistung"
                },
                "examples" : {
                  "Leistung im JZuFi 2.3.1 Format" : {
                    "description" : "in diesem Beispiel: Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung",
                    "value" : {
                      "id" : {
                        "value" : "9413106",
                        "schemeAgencyID" : "L100012",
                        "schemeID" : "OID"
                      },
                      "idSekundaer" : [ ],
                      "struktur" : {
                        "leistungsobjektID" : {
                          "value" : "99150085000000",
                          "schemeAgencyID" : "GK_LEIKA",
                          "schemeAgencyName" : "GK LeiKa",
                          "schemeID" : "LEIKA_LEISTUNG_SCHLUESSEL",
                          "schemeName" : "LeiKa Leistungsschlüssel",
                          "schemeVersionID" : "2"
                        }
                      },
                      "referenzLeistungsschluessel" : [ {
                        "value" : "99150085001000",
                        "schemeURI" : "urn:de:fim:leika:leistung",
                        "schemeVersionID" : "20220301"
                      } ],
                      "leistungsadressat" : [ ],
                      "modulText" : [ {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "inhalt" : [ {
                          "value" : "Ingenieurin und Ingenieur mit ausländischer Berufsqualifikation, Erlaubnis zum Führen der Berufsbezeichnung \"Ingenieurin\" oder \"Ingenieur\" beantragen",
                          "html" : true,
                          "languageCode" : "de"
                        }, {
                          "value" : "Engineer with foreign professional qualification, apply for permission to use the professional title \"engineer",
                          "html" : true,
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "02",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.leistungstextmodul",
                          "listVersionID" : "20240101"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ]
                      }, {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "inhalt" : [ {
                          "value" : "Ingenieurin und Ingenieur mit ausländischer Berufsqualifikation, Erlaubnis zum Führen der Berufsbezeichnung \"Ingenieurin\" oder \"Ingenieur\" beantragen",
                          "html" : true,
                          "languageCode" : "de"
                        }, {
                          "value" : "Engineer with foreign professional qualification, apply for permission to use the professional title \"engineer",
                          "html" : true,
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "03",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.leistungstextmodul",
                          "listVersionID" : "20240101"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ]
                      }, {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "positionDarstellung" : 1,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "inhalt" : [ {
                          "value" : "<p>The profession of engineer is regulated in Germany. The job title is particularly protected. This means: You must prove a specific qualification in order to be allowed to use the professional title \"Ingenieurin\" or \"Ingenieur\". To prove a foreign qualification, you can apply for recognition of your professional qualification. You can also submit the application for the recognition procedure from abroad.</p> <p>In the recognition procedure, the competent body compares your professional qualification from abroad with the professional qualification in the chosen federal state. The procedure is called: equivalence determination. You will receive a decision on the result of the equivalence assessment. The notice will state your professional qualifications. If you lack professional qualifications for recognition, the notice will also state the main differences.</p> <p>In order to use the professional title \"engineer\", you must fulfill other requirements in addition to the equivalence of the professional qualifications. You may have to prove these requirements at a later date:</p> <ul> <li>Main residence, establishment or predominant work in the chosen federal state. Or: You want to live or work in the chosen federal state soon.</li> <li>Personal suitability</li> </ul> <p>If your qualifications are equivalent and you meet all other requirements, you may use the professional title \"engineer\".</p>",
                          "html" : true,
                          "languageCode" : "en"
                        }, {
                          "value" : "<p>Der Beruf Ingenieurin und Ingenieur ist in Deutschland reglementiert. Die Berufsbezeichnung ist besonders geschützt. Das bedeutet: Sie müssen eine spezifische Qualifikation nachweisen, um die Berufsbezeichnung \"Ingenieurin\" oder \"Ingenieur\" führen zur dürfen. Für den Nachweis einer ausländischen Qualifikation können Sie die Anerkennung Ihrer Berufsqualifikation beantragen. Sie können den Antrag für das Anerkennungsverfahren auch aus dem Ausland stellen.</p> <p>Im Anerkennungsverfahren vergleicht die zuständige Stelle Ihre Berufsqualifikation aus dem Ausland mit der Berufsqualifikation in dem gewählten Bundesland. Das Verfahren heißt: Gleichwertigkeitsfeststellung. Über das Ergebnis der Gleichwertigkeitsfeststellung erhalten Sie einen Bescheid. Der Bescheid nennt Ihre beruflichen Qualifikationen. Wenn Ihnen für eine Anerkennung berufliche Qualifikationen fehlen, nennt der Bescheid auch die wesentlichen Unterschiede.</p> <p>Für das Führen der Berufsbezeichnung \"Ingenieurin\" oder \"Ingenieur\" müssen Sie neben der Gleichwertigkeit der Berufsqualifikation noch weitere Voraussetzungen erfüllen. Diese Voraussetzungen müssen Sie vielleicht erst zu einem späteren Zeitpunkt nachweisen:</p> <ul> <li>Hauptwohnsitz, Niederlassung oder überwiegende Arbeit in dem gewählten Bundesland. Oder: Sie wollen bald in dem gewählten Bundesland wohnen oder arbeiten.</li> <li>Persönliche Eignung</li> </ul> <p>Ist Ihre Qualifikation gleichwertig und Sie erfüllen alle weiteren Voraussetzungen, dürfen Sie die Berufsbezeichnung \"Ingenieurin\" oder \"Ingenieur\" führen.</p>",
                          "html" : true,
                          "languageCode" : "de"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "06",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.leistungstextmodul",
                          "listVersionID" : "20240101"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ]
                      } ],
                      "modulTextIndividuell" : [ ],
                      "modulFrist" : [ ],
                      "modulBearbeitungsdauer" : [ ],
                      "modulKosten" : [ {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "kosten" : [ ],
                        "beschreibung" : [ {
                          "value" : "<p>Zusätzlich können weitere Kosten entstehen (z. B. für Übersetzungen oder Beglaubigungen Ihrer Dokumente oder Ausgleichsmaßnahmen). Diese Kosten sind individuell unterschiedlich.</p>",
                          "html" : true,
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>In addition, further costs may arise (e.g. for translations or certifications of your documents or compensation measures). These costs vary individually.</p>",
                          "html" : true,
                          "languageCode" : "en"
                        } ],
                        "weiterfuehrenderLink" : [ ]
                      } ],
                      "modulDokument" : [ ],
                      "modulBegriffImKontext" : [ {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "begriffImKontext" : [ {
                          "begriff" : {
                            "value" : "Foreign qualification",
                            "languageCode" : "de"
                          },
                          "typ" : {
                            "code" : "001",
                            "listURI" : "urn:xoev-de:fim:codeliste:xzufi.begriffimkontexttyp",
                            "listVersionID" : "3"
                          }
                        } ]
                      } ],
                      "modulFachlicheFreigabe" : [ {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "fachlichFreigegebenAm" : "2021-09-30",
                        "fachlichFreigegebenDurch" : [ {
                          "value" : "Federal Institute for Vocational Education and Training Saxony-Anhalt Chamber of Engineers",
                          "languageCode" : "en"
                        }, {
                          "value" : "Bundesinstitut für Berufsbildung Ingenieurkammer Sachsen-Anhalt",
                          "languageCode" : "de"
                        } ]
                      } ],
                      "modulAuskunftshinweis" : [ ],
                      "modulUrsprungsportal" : [ {
                        "zugangskanal" : {
                          "code" : "000",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zugangskanal",
                          "listVersionID" : "1"
                        },
                        "positionDarstellung" : 1,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ],
                        "uri" : "https://zufish.schleswig-holstein.de/portaldeeplink?tsa_leistung_id=9413106&tsa_sprache=de_DE",
                        "titel" : "Ingenieurin und Ingenieur mit ausländischer Berufsqualifikation, Erlaubnis zum Führen der Berufsbezeichnung „Ingenieurin“ oder „Ingenieur“ beantragen",
                        "dynamischeParameter" : [ ],
                        "languageCode" : "de"
                      } ],
                      "typisierung" : [ {
                        "code" : "4",
                        "name" : "Regelungskompetenz auf Landesebene",
                        "listURI" : "urn:xoev-de:fim:codeliste:xzufi.typisierung",
                        "listVersionID" : "20240101"
                      } ],
                      "kennzeichenFormularSchriftformerfordernis" : false,
                      "kategorie" : [ ],
                      "klassifizierung" : [ {
                        "code" : "1040400",
                        "listURI" : "urn:xoev-de:fim:codeliste:pvlagen",
                        "listVersionID" : "20211001"
                      } ],
                      "informationsbereicheSDG" : {
                        "informationsbereichSDG1" : [ {
                          "code" : "1020300",
                          "listURI" : "urn:xoev-de:fim:codeliste:xzufi.sdginformationsbereich1",
                          "listVersionID" : "1"
                        } ],
                        "informationsbereichSDG2" : [ ]
                      },
                      "leistungImKontextID" : [ ],
                      "prozessID" : [ ],
                      "gueltigkeitGebietID" : [ {
                        "value" : "010000000000",
                        "schemeID" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:bundesland",
                        "schemeVersionID" : "2010-04-01"
                      } ],
                      "durchfuehrbarEinheitlicheStelle" : [ {
                        "code" : "11",
                        "listURI" : "urn:xoev-de:fim:codeliste:xzufi.einheitlichestelletyp",
                        "listVersionID" : "1"
                      } ],
                      "relevantFuerWirtschaftszweig" : [ ],
                      "relevantFuerRechtsform" : [ ],
                      "relevantFuerStaatsangehoerigkeit" : {
                        "staatsangehoerigkeit" : [ ],
                        "staatengruppe" : [ ]
                      },
                      "versionsinformation" : {
                        "geaendertDatumZeit" : "2024-05-31"
                      },
                      "sprachversion" : [ {
                        "languageCode" : "de",
                        "sprachbezeichnungDeutsch" : "Deutsch",
                        "sprachbezeichnungNativ" : "Deutsch",
                        "kennzeichenMaschinelleUebersetzung" : false
                      }, {
                        "languageCode" : "en",
                        "sprachbezeichnungDeutsch" : "Englisch",
                        "sprachbezeichnungNativ" : "English",
                        "kennzeichenMaschinelleUebersetzung" : false
                      } ],
                      "gueltigkeit" : [ ]
                    }
                  }
                }
              }
            }
          },
          "404" : {
            "description" : "Es wurde kein Ergebnis gefunden.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          }
        }
      }
    },
    "/v1/servicedescriptions/{id}/jzufi-2-2" : {
      "get" : {
        "tags" : [ "JZuFi" ],
        "summary" : "JZuFi der Leistung in der XZuFi-Version 2.2.0",
        "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Leistungsbeschreibung in der XZuFi-Version 2.2.0 zurück. Wenn die Auslieferungsversion der Daten von der Version abweicht, in der die Daten an das PVOG geliefert wurden, werden die ausgelieferten Daten entsprechend konvertiert.",
        "operationId" : "getJzufiLb220V1",
        "parameters" : [ {
          "name" : "id",
          "in" : "path",
          "description" : "Die ID der Leistungsbeschreibung, deren Details geladen werden sollen",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 255,
            "minLength" : 1
          },
          "example" : "L100012.LB.9413106"
        }, {
          "name" : "validdate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Leistung in der XZuFi-Version 2.2.0 zurück.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/Leistung"
                },
                "examples" : {
                  "Leistung im JZuFi 2.2.0 Format" : {
                    "description" : "in diesem Beispiel: Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung",
                    "value" : {
                      "id" : {
                        "value" : "9413106",
                        "schemeAgencyID" : "L100012",
                        "schemeID" : "OID"
                      },
                      "idSekundaer" : [ {
                        "value" : "99147006067000",
                        "schemeAgencyID" : "GK_LEIKA",
                        "schemeAgencyName" : "GK LeiKa",
                        "schemeID" : "LEIKA_LEISTUNG_SCHLUESSEL",
                        "schemeName" : "LeiKa Leistungsschlüssel",
                        "schemeVersionID" : "2"
                      } ],
                      "struktur" : {
                        "leistungsobjektID" : {
                          "value" : "01147006000000",
                          "schemeAgencyID" : "GK_LEIKA",
                          "schemeAgencyName" : "GK LeiKa",
                          "schemeID" : "LEIKA_LEISTUNG_SCHLUESSEL",
                          "schemeName" : "LeiKa Leistungsschlüssel",
                          "schemeVersionID" : "2"
                        }
                      },
                      "referenzLeiKa" : [ {
                        "code" : "99147006067000",
                        "listURI" : "urn:de:fim:leika:leistung",
                        "listVersionID" : "20180705"
                      } ],
                      "modulText" : [ {
                        "inhalt" : [ {
                          "value" : "Engineer: Permission to take the professional title",
                          "languageCode" : "en"
                        }, {
                          "value" : "Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung",
                          "languageCode" : "de"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "02",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<p>Die Berufsbezeichnung &#34;Ingenieurin&#34; oder &#34;Ingenieur&#34; ist nach dem Ingenieurgesetz Schleswig-Holstein (IngG) gesetzlich geschützt. Diesen Titel - allein oder in einer Wortverbindung - darf führen,</p> <ol><li>wer ein Studium einer technischen oder technisch-naturwissenschaftlichen Fachrichtung mit einer Regelstudienzeit von mindestens sechs Semestern in Vollzeit oder während einer entsprechenden Gesamtdauer in Teilzeit an einer deutschen, staatlichen oder staatlich anerkannten Universität, Fachhochschule oder Berufsakademie mit Erfolg abgeschlossen hat, wobei dieser Studiengang überwiegend von den Bereichen Mathematik, Informatik, Naturwissenschaften und Technik geprägt sein muss; für die Bezeichnung &#34;Wirtschaftsingenieurin&#34; oder &#34;Wirtschaftsingenieur&#34; muss der Studiengang von diesen Fächern zumindest geprägt sein,</li><li>wer von der zuständigen Stelle die Genehmigung hierzu erhalten hat,</li><li>wer nach dem Recht eines anderen Landes der Bundesrepublik Deutschland zur Führung dieser Berufsbezeichnung berechtigt ist oder</li><li>wer bis zum Inkrafttreten dieses Gesetzes bereits berechtigt war, die Berufsbezeichnung zu führen.</li>/ol> <p>Bezeichnungen, die auf wirtschaftlich tätige Zusammenschlüsse (&#34;Ingenieurbüro&#34; o.ä.) hinweisen, dürfen in Verbindung mit der Berufsbezeichnung nach Absatz 1 oder ähnlichen Bezeichnungen nur geführt werden, wenn mindestens die Hälfte der Mitglieder des Vorstands, der Geschäftsführung oder der Personen, die mindestens über die Hälfte der Stimmrechte verfügen, zur Führung der Berufsbezeichnung berechtigt sind.</p> <p>Eine Genehmigung können Personen aus einem Mitgliedstaat der Europäischen Union, einem Vertragsstaat des Abkommens über den Europäischen Wirtschaftsraum oder einem sonstigen durch Abkommen gleichgestellten Staat (Mitglieds- oder Vertragsstaat) beantragen, wenn sie in Schleswig-Holstein ihre Hauptwohnung, ihre Hauptniederlassung oder ihre überwiegende berufliche Beschäftigung haben.</p> <p>Die für eine Genehmigung erforderlichen Befähigungs- oder Ausbildungsnachweise und/oder Berufserfahrungen hängen davon ab, ob der Beruf im Herkunftsland reglementiert ist oder nicht.</p> <p>Die zuständige Stelle (s.u.) kann bei wesentlichen Qualifikationsunterschieden Ausgleichsmaßnahmen in Form von Anpassungslehrgängen oder Eignungsprüfungen verlangen.</p> <p>Rechtfertigen Tatsachen die Annahme, dass die erforderliche fachliche Kenntnis fehlt oder Leben und Gesundheit von Menschen erheblich gefährdet sind, dann kann das Führen der Berufsbezeichnung durch die zuständige Behörde untersagt werden.</p> <p>Eine Genehmigung können Personen aus einem Mitgliedstaat der Europäischen Union, einem Vertragsstaat des Abkommens über den Europäischen Wirtschaftsraum oder einem sonstigen Abkommen gleichgestellten</p> <p>Rechtfertigen Tatsachen die Annahme, dass die erforderliche fachliche Kenntnis fehlt oder Leben und Gesundheit von Menschen erheblich gefährdet sind, dann kann das Führen der Berufsbezeichnung durch die zuständige Behörde untersagt werden.</p>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>The professional title &#34;engineer&#34; or &#34;engineer&#34; is protected by law under the Schleswig-Holstein Engineering Act (IngG). This title may lead to this title, alone or in a word connection,</p> <ol><li>who has successfully completed a degree in a technical or technical-natural science discipline with a standard period of study of at least six semesters full-time or for a corresponding total period of part-time at a German, state or state-recognised university, university of applied sciences or vocational academy, the main degree of which must be in the fields of mathematics, computer science, natural sciences and technology; for the term &#34;industrial engineer&#34; or &#34;industrial engineer&#34; the course of study must at least be shaped by these subjects,</li><li>who has received authorisation from the competent body to do so,</li><li>who is entitled under the law of another country of the Federal Republic of Germany to take that professional title, or</li><li>who was already entitled to hold the professional title until this Act came into force.</li></ol> <p>Designations indicating economically active mergers (&#34;engineering office&#34; or similar) may be used in conjunction with the professional title referred to in paragraph 1 or similar designations only if at least half of the members of the management board, management or persons holding at least half of the voting rights are entitled to take the professional title.</p> <p>Persons from a Member State of the European Union, a Contracting State to the Agreement on the European Economic Area or any other State (Member State or Contracting State) assised by agreements may apply for authorisation if they have their principal residence, principal place of business or predominant professional employment in Schleswig-Holstein.</p> <p>The qualifications or qualifications and/or professional experience required for authorisation depend on whether the profession is regulated in the country of origin or not.</p> <p>The competent body (see, among others) may require compensatory measures in the form of adaptation courses or aptitude tests in the event of significant differences in qualifications.</p> <p>If facts justify the assumption that the necessary technical knowledge is lacking or that people&#39;s lives and health are seriously endangered, then the competent authority may prohibit the taking of the professional title.</p> <p>Authorisation may be granted to persons from a Member State of the European Union, a State Party to the Agreement on the European Economic Area or any other agreement</p> <p>If facts justify the assumption that the necessary technical knowledge is lacking or that people&#39;s lives and health are seriously endangered, then the competent authority may prohibit the taking of the professional title.</p>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "06",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "positionDarstellung" : 1,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<p>An die Architekten- und Ingenieurkammer Schleswig-Holstein (AIK).</p>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>To the Chamber of Architects and Engineers Schleswig-Holstein (AIK).</p>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "23",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "positionDarstellung" : 4,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<p>Wer die Berufsbezeichnung &#34;Ingenieurin / Ingenieur&#34; führen möchte, benötigt eine Erlaubnis.</p>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>If you want to use the professional title &#34;Engineer&#34;/ an engineer, you need a permit.</p>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "05",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "positionDarstellung" : 17,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<p>Wer die Berufsbezeichnung &#34;Ingenieur/Ingenieurin&#34; führt, ohne dazu berechtigt zu sein, handelt ordnungswidrig. Die Ordnungswidrigkeit kann mit einer Geldbuße geahndet werden.</p> <p>Das Recht zum Führen akademischer Grade bleibt unberührt.</p>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<p>Anyone who holds the professional title &#34;engineer&#34; without being entitled to do so is acting in an irregular manner. The offence may be punished by a fine.</p> <p>The right to conduct academic degrees remains unaffected.</p>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "16",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ ],
                        "positionDarstellung" : 14,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "inhalt" : [ {
                          "value" : "<ul><li>EG-Richtlinie 2005/36 über die Anerkennung von Berufsqualifikationen,</li><li>Gesetz zum Schutze der Berufsbezeichnung &#34;Ingenieur&#34; (Ingenieurgesetz - IngG).</li></ul>",
                          "languageCode" : "de"
                        }, {
                          "value" : "<ul><li>EC Directive 2005/36 on the recognition of professional qualifications,</li><li>Law on the Protection of the Professional Title &#34;Engineer&#34; (Engineering Law - IngG).</li></ul>",
                          "languageCode" : "en"
                        } ],
                        "leikaTextmodul" : {
                          "code" : "07",
                          "listURI" : "urn:de:xzufi:codeliste:leistungstextmodulleika",
                          "listVersionID" : "20190605"
                        },
                        "leikaTextModulAbweichendeBezeichnung" : [ ],
                        "weiterfuehrenderLink" : [ {
                          "uri" : "http://www.gesetze-rechtsprechung.sh.juris.de/jportal/?quelle=jlink&query=IngG+SH&psml=bsshoprod.psml&max=true&aiz=true",
                          "titel" : "IngG",
                          "beschreibung" : "Keine weiteren Hinweise vorhanden",
                          "positionDarstellung" : 0,
                          "languageCode" : "de"
                        }, {
                          "uri" : "http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:255:0022:0142:de:PDF",
                          "titel" : "EC Directive 2005/36",
                          "beschreibung" : "Keine weiteren Hinweise vorhanden",
                          "positionDarstellung" : 1,
                          "languageCode" : "en"
                        }, {
                          "uri" : "http://www.gesetze-rechtsprechung.sh.juris.de/jportal/?quelle=jlink&query=IngG+SH&psml=bsshoprod.psml&max=true&aiz=true",
                          "titel" : "IngG",
                          "beschreibung" : "Keine weiteren Hinweise vorhanden",
                          "positionDarstellung" : 2,
                          "languageCode" : "en"
                        }, {
                          "uri" : "http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:255:0022:0142:de:PDF",
                          "titel" : "EG-Richtlinie 2005/36",
                          "beschreibung" : "Keine weiteren Hinweise vorhanden",
                          "positionDarstellung" : 3,
                          "languageCode" : "de"
                        } ],
                        "positionDarstellung" : 11,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      } ],
                      "modulTextIndividuell" : [ ],
                      "modulBegriffImKontext" : [ ],
                      "modulUrsprungsportal" : [ {
                        "uri" : "https://zufish.schleswig-holstein.de/portaldeeplink?tsa_leistung_id=9413106&tsa_sprache=en_EN",
                        "titel" : "Engineer: Permission to take the professional title",
                        "positionDarstellung" : 1,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      }, {
                        "uri" : "https://zufish.schleswig-holstein.de/portaldeeplink?tsa_leistung_id=9413106&tsa_sprache=de_DE",
                        "titel" : "Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung",
                        "positionDarstellung" : 2,
                        "idSekundaer" : [ ],
                        "gueltigkeit" : [ ]
                      } ],
                      "typisierung" : [ {
                        "code" : "4",
                        "name" : "Regelungskompetenz auf Landesebene",
                        "listURI" : "urn:de:fim:leika:typisierung",
                        "listVersionID" : "20201204"
                      } ],
                      "leistungsadressat" : [ ],
                      "kennzeichenSchriftformerfordernis" : false,
                      "kategorie" : [ {
                        "klasse" : {
                          "id" : {
                            "value" : "Lebenslage",
                            "schemeAgencyID" : "L100012",
                            "schemeID" : "TELEPORT_LKK"
                          },
                          "idSekundaer" : [ ],
                          "bezeichnung" : [ {
                            "value" : "Lebens- und Unternehmenslage",
                            "languageCode" : "de"
                          } ],
                          "beschreibung" : [ ]
                        },
                        "id" : {
                          "value" : "8935715",
                          "schemeAgencyID" : "L100012",
                          "schemeID" : "OID"
                        },
                        "idSekundaer" : [ ],
                        "uebergeordneteKategorieID" : {
                          "value" : "8935703",
                          "schemeAgencyID" : "L100012",
                          "schemeID" : "OID"
                        },
                        "untergeordneteKategorieID" : [ ],
                        "bezeichnung" : [ {
                          "value" : "Genehmigungen/ Bescheinigungen",
                          "languageCode" : "de"
                        } ],
                        "beschreibung" : [ {
                          "value" : "<p>Genehmigungen/ Bescheinigungen</p>",
                          "languageCode" : "de"
                        } ]
                      } ],
                      "klassifizierung" : [ ],
                      "informationsbereichSDG" : [ ],
                      "idLeistungImKontext" : [ ],
                      "idProzess" : [ ],
                      "gueltigkeitGebietID" : [ {
                        "value" : "010000000000",
                        "schemeID" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:bundesland",
                        "schemeVersionID" : "2018-07-31"
                      } ],
                      "kennzeichenEA" : false,
                      "relevantFuerWirtschaftszweig" : [ ],
                      "relevantFuerRechtsform" : [ ],
                      "relevantFuerStaatsangehoerigkeit" : [ ],
                      "versionsinformation" : {
                        "geaendertDatumZeit" : "2021-03-11T12:47:51+01:00"
                      },
                      "sprachversion" : [ {
                        "languageCode" : "de",
                        "sprachbezeichnungDeutsch" : "Deutsch",
                        "sprachbezeichnungNativ" : "Deutsch"
                      } ],
                      "gueltigkeit" : [ ]
                    }
                  }
                }
              }
            }
          },
          "404" : {
            "description" : "Es wurde kein Ergebnis gefunden.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          }
        }
      }
    },
    "/v1/servicedescriptions/suggestions/{ars}" : {
      "get" : {
        "tags" : [ "Leistungen" ],
        "summary" : "Sucht nach Vorschlägen für die Leistungen.",
        "description" : "Sucht nach Vorschlägen für die Leistungen. Es wird nach dem ARS gefiltert, die Anzahl der Vorschläge ist auf 5 begrenzt.",
        "operationId" : "getLbSuggestions",
        "parameters" : [ {
          "name" : "ars",
          "in" : "path",
          "description" : "Der ARS des Ortes für den der Suchvorschlag gelten soll.",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 2,
            "pattern" : "[0-9]*"
          },
          "example" : "01"
        }, {
          "name" : "q",
          "in" : "query",
          "description" : "Der Wert, nach dem für die Vervollständigung gesucht werden soll",
          "required" : true,
          "schema" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "maxItems" : 50,
            "minItems" : 1
          },
          "example" : [ "Ingen" ]
        }, {
          "name" : "skipDuplicates",
          "in" : "query",
          "description" : "Ob Mehrfachtreffer ignoriert werden sollen",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : false
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Liste von Vorschlägen.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "$ref" : "#/components/schemas/ServiceDescriptionSuggestion"
                  }
                }
              }
            }
          },
          "500" : {
            "description" : "Es ist ein interner Fehler aufgetreten",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          }
        }
      }
    },
    "/v1/relations/jzufi-2-3" : {
      "get" : {
        "tags" : [ "JZuFi" ],
        "summary" : "JZuFi der Zuständigkeits-Objekte in der XZuFi-Version 2.3.1",
        "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Zuständigkeits-Objekte in der XZuFi-Version 2.3.1 zurück. Ein Zuständigkeits-Objekt verknüpft Leistungen, Organisationseinheiten und Onlinedienste. Wenn die Auslieferungsversion der Daten von der Version abweicht, in der die Daten an das PVOG geliefert wurden, werden die ausgelieferten Daten entsprechend konvertiert.",
        "operationId" : "getZsTrByLbIdAndArs231V1",
        "parameters" : [ {
          "name" : "ars",
          "in" : "query",
          "description" : "Der ARS des Ortes, für den die Zuständigkeiten gelten sollen",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 0,
            "pattern" : "[0-9]*"
          },
          "example" : "010000000000"
        }, {
          "name" : "lbids",
          "in" : "query",
          "description" : "Die IDs der Leistungen, für die die Zuständigkeiten gelten sollen",
          "required" : true,
          "schema" : {
            "type" : "array",
            "items" : {
              "type" : "string",
              "maxLength" : 255,
              "minLength" : 1
            },
            "maxItems" : 50,
            "minItems" : 1
          },
          "example" : [ "L100012.LB.9413106" ]
        }, {
          "name" : "validdate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        }, {
          "name" : "usearshierarchy",
          "in" : "query",
          "description" : "Ob die Ars-Hierarchie bei der Suche berücksichtigt werden soll",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : true
          }
        }, {
          "name" : "page",
          "in" : "query",
          "description" : "Ab Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 0,
            "minimum" : 0
          }
        }, {
          "name" : "size",
          "in" : "query",
          "description" : "Anzahl der Ergebnisse pro Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 10,
            "maximum" : 9999,
            "minimum" : 5
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Liste von ZustaendigkeitTransferObjekten.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/RelationPage23"
                },
                "examples" : {
                  "Zuständigkeiten in JZuFi 2.3.1 Format" : {
                    "description" : "Liste mit den gefundenen Zuständigkeiten",
                    "value" : {
                      "content" : [ {
                        "uebergeordnetesObjektID" : {
                          "value" : "OE_xzufi22DeleteZSOD_77777_0001",
                          "schemeAgencyID" : "L100042"
                        },
                        "zustaendigkeit" : [ {
                          "rolle" : {
                            "code" : "03",
                            "name" : "Ansprechpunkt",
                            "listURI" : "urn:xoev-de:fim:codeliste:xzufi.zustaendigkeitsrolle",
                            "listVersionID" : "1"
                          },
                          "id" : {
                            "value" : "LB_xzufi22DeleteZSOD_77777_0001.OE_xzufi22DeleteZSOD_77777_0001.095640000003",
                            "schemeAgencyID" : "L100042",
                            "schemeID" : "ZustaendigkeitOrganisationseinheit"
                          },
                          "idSekundaer" : [ {
                            "value" : "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWJtaXNzaW9uSG9zdCI6InN1Ym1pc3Npb24tYXBpLXRlc3RpbmcuZml0LWNvbm5lY3QuZml0a28uZGV2IiwiaXNzIjoiaHR0cHM6Ly9wb3J0YWwuYXV0aC10ZXN0aW5nLmZpdC1jb25uZWN0LmZpdGtvLmRldiIsInNlcnZpY2VzIjpbeyJnZWJpZXRJRHMiOlsidXJuOmRlOmJ1bmQ6ZGVzdGF0aXM6YmV2b2Vsa2VydW5nc3N0YXRpc3RpazpzY2hsdWVzc2VsOnJzOjEyMzEyMzEyMzEyMyJdLCJsZWlzdHVuZ0lEcyI6WyJ1cm46ZGU6ZmltOmxlaWthOmxlaXN0dW5nOkxCX3h6dWZpMjJEZWxldGVaU09EXzc3Nzc3XzAwMDIiXX1dLCJkZXN0aW5hdGlvbklkIjoiN2I0OWNlYWQtNDQ4My00OTczLWJiZTctODZlYWExNzFjOTkzIiwiaWF0IjoxNjg4NTY1NzcxLCJqdGkiOiI1YmI2ODZmMS1hOGI1LTRiNjItYmU3NC02MDIyZjhmZWIwMmIifQ.scU5RTTc0CeG60VgECB2M3mxVFG5XLltPn8iYYR3XExj_PvkXk9BQoMZNQIHVG07YniAedfoJvJJzhxcnhaVau-20uNgKljtlicANMPaFIFD9CtidUuy04OKf-RvYVwvIM6-8uHvhqV7fzdkzLBlbMni8XQjoeBpHWd6lFYL8Hzak55cAbjU2G1-2LXou2etVBMYCISTQ_K-CvM_f-4R_FFgE9t1nfYjJAZkYaWdJ9iS9xu5rgw_0AJymCkqKAWl1jdvSglPlsycpozXYn7duZjZ3nJNdZ3QmGCtLhRXyF2Y-9aOBCu4U0lYcMbn7rgVJG3KLNCMHGA_axnRDg88Yw",
                            "schemeAgencyID" : "urn:de:fitko",
                            "schemeID" : "urn:de:fitko:fit-connect:xzufi:destination"
                          } ],
                          "leistungID" : [ {
                            "value" : "LB_xzufi22DeleteZSOD_77777_0002",
                            "schemeAgencyID" : "L100042"
                          } ],
                          "gebietID" : [ {
                            "value" : "012012012012",
                            "schemeAgencyID" : "DESTATIS",
                            "schemeID" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:rs",
                            "schemeVersionID" : "2018-07-31"
                          } ],
                          "gueltigkeit" : [ ]
                        } ]
                      } ],
                      "page" : {
                        "number" : 0,
                        "size" : 10,
                        "totalElements" : 1,
                        "totalPages" : 1
                      }
                    }
                  }
                }
              }
            }
          },
          "500" : {
            "description" : "Es ist ein interner Fehler aufgetreten",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          }
        }
      }
    },
    "/v1/relations/jzufi-2-2" : {
      "get" : {
        "tags" : [ "JZuFi" ],
        "summary" : "JZuFi der Zuständigkeits-Objekte in der XZuFi-Version 2.2.0",
        "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Zuständigkeits-Objekte in der XZuFi-Version 2.2.0 zurück. Ein Zuständigkeits-Objekt verknüpft Leistungen, Organisationseinheiten und Onlinedienste. Wenn die Auslieferungsversion der Daten von der Version abweicht, in der die Daten an das PVOG geliefert wurden, werden die ausgelieferten Daten entsprechend konvertiert.",
        "operationId" : "getZsTrByLbIdAndArs220V1",
        "parameters" : [ {
          "name" : "ars",
          "in" : "query",
          "description" : "Der ARS des Ortes, für den die Zuständigkeiten gelten sollen",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 0,
            "pattern" : "[0-9]*"
          },
          "example" : "010000000000"
        }, {
          "name" : "lbids",
          "in" : "query",
          "description" : "Die IDs der Leistungen, für die die Zuständigkeiten gelten sollen",
          "required" : true,
          "schema" : {
            "type" : "array",
            "items" : {
              "type" : "string",
              "maxLength" : 255,
              "minLength" : 1
            },
            "maxItems" : 50,
            "minItems" : 1
          },
          "example" : [ "L100012.LB.9413106" ]
        }, {
          "name" : "validdate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        }, {
          "name" : "usearshierarchy",
          "in" : "query",
          "description" : "Ob die Ars-Hierarchie bei der Suche berücksichtigt werden soll",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : true
          }
        }, {
          "name" : "page",
          "in" : "query",
          "description" : "Ab Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 0,
            "minimum" : 0
          }
        }, {
          "name" : "size",
          "in" : "query",
          "description" : "Anzahl der Ergebnisse pro Seite",
          "required" : false,
          "schema" : {
            "type" : "integer",
            "format" : "int32",
            "default" : 10,
            "maximum" : 9999,
            "minimum" : 5
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Liefert eine Liste von ZustaendigkeitTransferObjekten.",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/RelationPage22"
                },
                "examples" : {
                  "Zuständigkeiten in JZuFi 2.2.0 Format" : {
                    "description" : "Liste mit den gefundenen Zuständigkeiten",
                    "value" : {
                      "content" : [ {
                        "uebergeordnetesObjektID" : {
                          "value" : "OE_xzufi22DeleteZSOD_77777_0001",
                          "schemeAgencyID" : "L100042"
                        },
                        "zustaendigkeit" : [ {
                          "rolle" : {
                            "code" : "03",
                            "name" : "Ansprechpunkt",
                            "listURI" : "urn:de:xzufi:codeliste:zustaendigkeitsrolle",
                            "listVersionID" : "20210401"
                          },
                          "id" : {
                            "value" : "LB_xzufi22DeleteZSOD_77777_0001.OE_xzufi22DeleteZSOD_77777_0001.095640000003",
                            "schemeAgencyID" : "L100042",
                            "schemeID" : "ZustaendigkeitOrganisationseinheit"
                          },
                          "idSekundaer" : [ {
                            "value" : "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWJtaXNzaW9uSG9zdCI6InN1Ym1pc3Npb24tYXBpLXRlc3RpbmcuZml0LWNvbm5lY3QuZml0a28uZGV2IiwiaXNzIjoiaHR0cHM6Ly9wb3J0YWwuYXV0aC10ZXN0aW5nLmZpdC1jb25uZWN0LmZpdGtvLmRldiIsInNlcnZpY2VzIjpbeyJnZWJpZXRJRHMiOlsidXJuOmRlOmJ1bmQ6ZGVzdGF0aXM6YmV2b2Vsa2VydW5nc3N0YXRpc3RpazpzY2hsdWVzc2VsOnJzOjEyMzEyMzEyMzEyMyJdLCJsZWlzdHVuZ0lEcyI6WyJ1cm46ZGU6ZmltOmxlaWthOmxlaXN0dW5nOkxCX3h6dWZpMjJEZWxldGVaU09EXzc3Nzc3XzAwMDIiXX1dLCJkZXN0aW5hdGlvbklkIjoiN2I0OWNlYWQtNDQ4My00OTczLWJiZTctODZlYWExNzFjOTkzIiwiaWF0IjoxNjg4NTY1NzcxLCJqdGkiOiI1YmI2ODZmMS1hOGI1LTRiNjItYmU3NC02MDIyZjhmZWIwMmIifQ.scU5RTTc0CeG60VgECB2M3mxVFG5XLltPn8iYYR3XExj_PvkXk9BQoMZNQIHVG07YniAedfoJvJJzhxcnhaVau-20uNgKljtlicANMPaFIFD9CtidUuy04OKf-RvYVwvIM6-8uHvhqV7fzdkzLBlbMni8XQjoeBpHWd6lFYL8Hzak55cAbjU2G1-2LXou2etVBMYCISTQ_K-CvM_f-4R_FFgE9t1nfYjJAZkYaWdJ9iS9xu5rgw_0AJymCkqKAWl1jdvSglPlsycpozXYn7duZjZ3nJNdZ3QmGCtLhRXyF2Y-9aOBCu4U0lYcMbn7rgVJG3KLNCMHGA_axnRDg88Yw",
                            "schemeAgencyID" : "urn:de:fitko",
                            "schemeID" : "urn:de:fitko:fit-connect:xzufi:destination"
                          } ],
                          "leistungID" : [ {
                            "value" : "LB_xzufi22DeleteZSOD_77777_0002",
                            "schemeAgencyID" : "L100042"
                          } ],
                          "gebietID" : [ {
                            "value" : "012012012012",
                            "schemeAgencyID" : "DESTATIS",
                            "schemeID" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:rs",
                            "schemeVersionID" : "2018-07-31"
                          } ],
                          "gueltigkeit" : [ ]
                        } ]
                      } ],
                      "page" : {
                        "number" : 0,
                        "size" : 10,
                        "totalElements" : 1,
                        "totalPages" : 1
                      }
                    }
                  }
                }
              }
            }
          },
          "500" : {
            "description" : "Es ist ein interner Fehler aufgetreten",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          }
        }
      }
    },
    "/v1/personalmatters/{ars}" : {
      "get" : {
        "tags" : [ "Leistungen" ],
        "summary" : "Sucht nach allen Lebenslagen in einem Gebiet.",
        "description" : "Gibt alle Lebenslagen gefiltert nach dem ARS aus. Es werden alle Lebenslagen, inklusive Sublagen angezeigt, für die in einem bestimmten Gebiet (ARS) Leistungen vorhanden sind.",
        "operationId" : "getPersonalMatters",
        "parameters" : [ {
          "name" : "ars",
          "in" : "path",
          "description" : "Der ARS des Ortes, für den die Leistung gelten soll. Falls der angegebene ARS kürzer als 12 Zeichen ist, wird der Wert mit Nullen aufgefüllt. Der ARS löst die Hierarchie nach oben hin auf.",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 12,
            "minLength" : 0,
            "pattern" : "[0-9]*"
          },
          "example" : "090000000000"
        } ],
        "responses" : {
          "200" : {
            "description" : "OK",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "$ref" : "#/components/schemas/FullLifeSituationAggOutModel_Search"
                  },
                  "uniqueItems" : true
                }
              }
            }
          }
        }
      }
    },
    "/v1/organisationunits/{oeId}/ars" : {
      "get" : {
        "tags" : [ "Organisationseinheiten" ],
        "summary" : "Finde alle ARS einer Organisationseinheit die Leistungen unter einer LeiKa-ID anbieten.",
        "description" : "Gibt eine Liste von Amtlichen Regionalschlüsseln (ARS) zurück, \nfür die eine Organisationseinheit eine Leistung anbietet, \nwelche im Leistungskatalog unter der angegebenen LeiKa-ID geführt wird.",
        "operationId" : "findArsByOeIdAndLeikaId",
        "parameters" : [ {
          "name" : "oeId",
          "in" : "path",
          "description" : "Die ID der Organisationseinheit",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 255,
            "minLength" : 2
          },
          "example" : "L100022.OE.6001887"
        }, {
          "name" : "leikaId",
          "in" : "query",
          "description" : "Die LeiKa-ID",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 21,
            "minLength" : 14
          },
          "example" : "99061006000000"
        } ],
        "responses" : {
          "200" : {
            "description" : "Liste von Amtlichen Regionalschlüsseln (ARS)",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "type" : "string"
                  }
                }
              }
            }
          },
          "503" : {
            "description" : "Dieser Endpunkt ist kurzzeitig nicht verfügbar",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                }
              }
            }
          },
          "400" : {
            "description" : "Request nicht valide",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorModel"
                },
                "example" : {
                  "timestamp" : "2025-08-27T07:48:29.766756500Z",
                  "code" : "BAD_REQUEST",
                  "message" : "Die übermittelten Request-Parameter entsprechen nicht den Anforderungen.",
                  "fields" : {
                    "leikaId" : "Größe muss zwischen 14 und 21 sein"
                  },
                  "codeNumber" : 1901
                }
              }
            }
          }
        }
      }
    },
    "/v1/organisationunits/{id}/jzufi-2-3" : {
      "get" : {
        "tags" : [ "JZuFi" ],
        "summary" : "JZuFi der Organisationseinheit in der XZuFi-Version 2.3.1",
        "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Organisationseinheit in der XZuFi-Version 2.3.1 zurück. Wenn die Auslieferungsversion der Daten von der Version abweicht, in der die Daten an das PVOG geliefert wurden, werden die ausgelieferten Daten entsprechend konvertiert.",
        "operationId" : "getJzufiOe231V1",
        "parameters" : [ {
          "name" : "id",
          "in" : "path",
          "description" : "Die ID der Organisationseinheit",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 255,
            "minLength" : 1
          }
        }, {
          "name" : "validdate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Organisationseinheit für ID gefunden",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.OrganisationseinheitErweitert"
                },
                "example" : {
                  "id" : {
                    "value" : "9137467",
                    "schemeAgencyID" : "L100012",
                    "schemeID" : "OID"
                  },
                  "idSekundaer" : [ ],
                  "externeOrganisationseinheitsermittlung" : false,
                  "untergeordneteOrganisationseinheitID" : [ ],
                  "alternativeHierarchie" : [ ],
                  "kategorie" : [ {
                    "id" : {
                      "value" : "9081960",
                      "schemeAgencyID" : "L100012",
                      "schemeID" : "OID"
                    },
                    "idSekundaer" : [ ],
                    "untergeordneteKategorieID" : [ ],
                    "klasse" : {
                      "id" : {
                        "value" : "ORGANISATIONSEINHEITSKATEGORIE"
                      },
                      "idSekundaer" : [ ],
                      "typ" : {
                        "code" : "002",
                        "listURI" : "urn:xoev-de:fim:codeliste:xzufi.kategorieklassetyp",
                        "listVersionID" : "1"
                      },
                      "bezeichnung" : [ {
                        "value" : "Organisationseinheitkategorie",
                        "languageCode" : "de"
                      } ],
                      "beschreibung" : [ ]
                    },
                    "bezeichnung" : [ {
                      "value" : "Kammer",
                      "languageCode" : "de"
                    } ],
                    "beschreibung" : [ ]
                  } ],
                  "name" : [ {
                    "name" : [ {
                      "value" : "Architekten- und Ingenieurkammer Schleswig-Holstein",
                      "languageCode" : "de"
                    } ],
                    "kurzbezeichnung" : [ ]
                  } ],
                  "beschreibung" : [ ],
                  "kurzbeschreibung" : [ ],
                  "infoOeffnungszeitenText" : [ {
                    "value" : "Montag - Donnerstag: 9.00 - 12.00 Uhr und 14.00 - 16.00 Uhr\\n Freitag: 9.00 - 12.00 Uhr\\n\\n",
                    "html" : true,
                    "languageCode" : "de"
                  } ],
                  "infoOeffnungszeitenStrukturiert" : [ ],
                  "terminvereinbarungsdienst" : [ ],
                  "infoInternServicecenter" : [ ],
                  "infoSonstige" : [ ],
                  "anschrift" : [ {
                    "typ" : {
                      "code" : "001",
                      "listURI" : "urn:xoev-de:fim:codeliste:xzufi.anschrifttyp",
                      "listVersionID" : "4"
                    },
                    "strasse" : "Düsternbrooker Weg",
                    "hausnummer" : "71",
                    "postleitzahl" : "24105",
                    "ort" : "Kiel",
                    "ortID" : [ {
                      "value" : "010020000000",
                      "schemeID" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:rs",
                      "schemeVersionID" : "2022-09-30"
                    } ],
                    "verwaltungspolitischeKodierung" : {
                      "staat" : {
                        "code" : "000",
                        "name" : "Deutschland",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:staat",
                        "listVersionID" : "2022-02-18"
                      },
                      "bundesland" : {
                        "code" : "01",
                        "name" : "Schleswig-Holstein",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:bundesland",
                        "listVersionID" : "2010-04-01"
                      },
                      "gemeindeschluessel" : {
                        "code" : "01002000",
                        "name" : "Kiel",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:ags",
                        "listVersionID" : "2018-07-31"
                      },
                      "regionalschluessel" : {
                        "code" : "010020000000",
                        "name" : "Kiel",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:rs",
                        "listVersionID" : "2022-09-30"
                      }
                    },
                    "geokodierung" : [ {
                      "point" : {
                        "metaDataProperty" : [ ],
                        "name" : [ ],
                        "srsName" : "EPSG:25832",
                        "axisLabels" : [ "longitude", "latitude" ],
                        "uomLabels" : [ ],
                        "pos" : {
                          "value" : [ 574786.184, 6021298.671 ],
                          "axisLabels" : [ ],
                          "uomLabels" : [ ]
                        }
                      }
                    } ],
                    "bild" : [ ],
                    "gueltigkeit" : [ ],
                    "anfahrturl" : [ ],
                    "infoParkplatz" : [ ],
                    "infoOEPNV" : [ ],
                    "infoBarrierefreiheit" : [ ],
                    "kennzeichenAufzug" : false
                  } ],
                  "erreichbarkeit" : [ {
                    "kanal" : {
                      "code" : "02",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "3"
                    },
                    "kennung" : "+49 431 57065-0",
                    "gueltigkeit" : [ ]
                  }, {
                    "kanal" : {
                      "code" : "04",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "3"
                    },
                    "kennung" : "+49 431 57065-25",
                    "gueltigkeit" : [ ]
                  }, {
                    "kanal" : {
                      "code" : "01",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "3"
                    },
                    "kennung" : "info@aik-sh.de",
                    "gueltigkeit" : [ ]
                  } ],
                  "internetadresse" : [ {
                    "uri" : "http://www.aik-sh.de",
                    "titel" : "www.aik-sh.de",
                    "languageCode" : "de"
                  } ],
                  "bankverbindung" : [ ],
                  "zahlungsweisen" : [ ],
                  "zahlungsweisenText" : [ ],
                  "synonym" : [ ],
                  "kennzeichenOeffentlichAnzeigen" : true,
                  "versionsinformation" : {
                    "geaendertDatumZeit" : "2023-10-12"
                  },
                  "sprachversion" : [ {
                    "languageCode" : "de",
                    "sprachbezeichnungDeutsch" : "Deutsch",
                    "sprachbezeichnungNativ" : "Deutsch",
                    "kennzeichenMaschinelleUebersetzung" : false
                  } ],
                  "gueltigkeit" : [ ],
                  "zustaendigkeit" : [ ],
                  "formular" : [ ],
                  "kontaktperson" : [ ]
                }
              }
            }
          },
          "404" : {
            "description" : "Organisationseinheit nicht gefunden",
            "content" : {
              "application/json" : {
                "example" : {
                  "timestamp" : "2022-10-10T12:38:03.887762500Z",
                  "code" : "NOT_FOUND",
                  "message" : "Die angegebene Resource konnte nicht gefunden werden.",
                  "codeNumber" : 1906
                }
              }
            }
          }
        }
      }
    },
    "/v1/organisationunits/{id}/jzufi-2-2" : {
      "get" : {
        "tags" : [ "JZuFi" ],
        "summary" : "JZuFi der Organisationseinheit in der XZuFi-Version 2.2.0",
        "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Organisationseinheit in der XZuFi-Version 2.2.0 zurück. Wenn die Auslieferungsversion der Daten von der Version abweicht, in der die Daten an das PVOG geliefert wurden, werden die ausgelieferten Daten entsprechend konvertiert.",
        "operationId" : "getJzufiOe220V1",
        "parameters" : [ {
          "name" : "id",
          "in" : "path",
          "description" : "Die ID der Organisationseinheit",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 255,
            "minLength" : 1
          }
        }, {
          "name" : "validdate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Organisationseinheit für ID gefunden",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/OrganisationseinheitErweitert"
                },
                "example" : {
                  "zustaendigkeit" : [ ],
                  "formular" : [ ],
                  "kontaktperson" : [ ],
                  "id" : {
                    "value" : "868",
                    "schemeAgencyID" : "L100042"
                  },
                  "idSekundaer" : [ ],
                  "externeOrganisationseinheitsermittlung" : false,
                  "untergeordneteOrganisationseinheitID" : [ ],
                  "alternativeHierarchie" : [ ],
                  "kategorie" : [ ],
                  "name" : [ {
                    "name" : [ {
                      "value" : "Landgericht München I",
                      "languageCode" : "de"
                    } ],
                    "kurzbezeichnung" : [ {
                      "value" : "LG M1",
                      "languageCode" : "de"
                    } ]
                  } ],
                  "beschreibung" : [ ],
                  "kurzbeschreibung" : [ ],
                  "infoOeffnungszeitenText" : [ ],
                  "infoOeffnungszeitenStrukturiert" : [ ],
                  "infoInternServicecenter" : [ ],
                  "infoSonstige" : [ ],
                  "anschrift" : [ {
                    "anfahrturl" : [ {
                      "uri" : "http://geoportal.bayern.de/bayernatlas?&X=5333676.26&Y=4467699.5&zoom=14&lang=de&topic=ba&bgLayer=atkis&crosshair=marker",
                      "titel" : "Standort im BayernAtlas anzeigen",
                      "languageCode" : "de"
                    } ],
                    "infoParkplatz" : [ ],
                    "infoOEPNV" : [ ],
                    "infoBarrierefreiheit" : [ ],
                    "typ" : {
                      "code" : "001",
                      "listURI" : "urn:xoev-de:fim:codeliste:xzufi.anschrifttyp",
                      "listVersionID" : "2.0"
                    },
                    "strasse" : "Prielmayerstr. 7",
                    "postleitzahl" : "80335",
                    "ort" : "München",
                    "ortID" : [ ],
                    "verwaltungspolitischeKodierung" : {
                      "kreis" : {
                        "code" : "09162",
                        "name" : "München",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:kreis",
                        "listVersionID" : "unbestimmt"
                      },
                      "bezirk" : {
                        "code" : "091",
                        "name" : "Oberbayern",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:bezirk",
                        "listVersionID" : "unbestimmt"
                      },
                      "bundesland" : {
                        "code" : "09",
                        "name" : "Bayern",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:bundesland",
                        "listVersionID" : "unbestimmt"
                      },
                      "gemeindeschluessel" : {
                        "code" : "09162000",
                        "name" : "München, Landeshauptstadt",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:ags",
                        "listVersionID" : "unbestimmt"
                      },
                      "staat" : {
                        "code" : "000",
                        "name" : "Deutschland",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:staat",
                        "listVersionID" : "unbestimmt"
                      }
                    },
                    "geokodierung" : [ {
                      "point" : {
                        "id" : "ID_POINT_GEB_868_868",
                        "pos" : {
                          "value" : [ 4467699.5, 5333676.26 ],
                          "axisLabels" : [ ],
                          "uomLabels" : [ ]
                        },
                        "metaDataProperty" : [ ],
                        "name" : [ ],
                        "srsName" : "EPSG:31468",
                        "axisLabels" : [ ],
                        "uomLabels" : [ ]
                      }
                    } ],
                    "gueltigkeit" : [ ]
                  }, {
                    "anfahrturl" : [ ],
                    "infoParkplatz" : [ ],
                    "infoOEPNV" : [ ],
                    "infoBarrierefreiheit" : [ ],
                    "typ" : {
                      "code" : "006",
                      "listURI" : "urn:xoev-de:fim:codeliste:xzufi.anschrifttyp",
                      "listVersionID" : "2.0"
                    },
                    "strasse" : "",
                    "postleitzahl" : "80316",
                    "ort" : "München",
                    "ortID" : [ ],
                    "geokodierung" : [ ],
                    "gueltigkeit" : [ ]
                  } ],
                  "erreichbarkeit" : [ {
                    "kanal" : {
                      "code" : "02",
                      "name" : "Telefon Festnetz",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "unbestimmt"
                    },
                    "kennung" : "+49 89 5597-03",
                    "gueltigkeit" : [ ]
                  }, {
                    "kanal" : {
                      "code" : "04",
                      "name" : "Fax",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "unbestimmt"
                    },
                    "kennung" : "+49 89 5597-2991",
                    "gueltigkeit" : [ ]
                  }, {
                    "kanal" : {
                      "code" : "01",
                      "name" : "E-Mail",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "unbestimmt"
                    },
                    "kennung" : "Poststelle@lg-m1.bayern.de",
                    "gueltigkeit" : [ ]
                  } ],
                  "kommunikationssystem" : [ ],
                  "internetadresse" : [ {
                    "uri" : "http://www.justiz.bayern.de/gericht/lg/m1/"
                  } ],
                  "bankverbindung" : [ ],
                  "zahlungsweisen" : [ ],
                  "zahlungsweisenText" : [ ],
                  "synonym" : [ ],
                  "sprachversion" : [ {
                    "languageCode" : "de",
                    "sprachbezeichnungDeutsch" : "Deutsch",
                    "sprachbezeichnungNativ" : "Deutsch"
                  } ],
                  "gueltigkeit" : [ {
                    "beginn" : "1699-12-31+01:00",
                    "ende" : "2050-02-01+01:00",
                    "zusatz" : [ ]
                  } ]
                }
              }
            }
          },
          "404" : {
            "description" : "Organisationseinheit nicht gefunden",
            "content" : {
              "application/json" : {
                "example" : {
                  "timestamp" : "2022-10-10T12:38:03.887762500Z",
                  "code" : "NOT_FOUND",
                  "message" : "Die angegebene Resource konnte nicht gefunden werden.",
                  "codeNumber" : 1906
                }
              }
            }
          }
        }
      }
    },
    "/v1/organisationunits/jzufi" : {
      "get" : {
        "tags" : [ "JZuFi" ],
        "summary" : "JZuFi der Organisationseinheit",
        "description" : "Gibt das ursprüngliche XZuFi als JSON (JZuFi) der Organisationseinheit zurück. Es werden die Daten dabei immer in der Version 2.2.0 des XZuFi-Standards geliefert. Wenn die Auslieferungsversion der Daten von der Version abweicht, in der die Daten an das PVOG geliefert wurden, werden die ausgelieferten Daten entsprechend konvertiert.",
        "operationId" : "getJzufiOeV1",
        "parameters" : [ {
          "name" : "q",
          "in" : "query",
          "description" : "Die ID der Organisationseinheit",
          "required" : true,
          "schema" : {
            "type" : "string",
            "maxLength" : 2147483647,
            "minLength" : 2
          }
        }, {
          "name" : "validDate",
          "in" : "query",
          "description" : "Das Gültigkeitsdatum in der Form yyyy-MM-dd",
          "required" : false,
          "schema" : {
            "type" : "string",
            "format" : "date"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Organisationseinheit für ID gefunden",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/OrganisationseinheitErweitert"
                },
                "example" : {
                  "zustaendigkeit" : [ ],
                  "formular" : [ ],
                  "kontaktperson" : [ ],
                  "id" : {
                    "value" : "868",
                    "schemeAgencyID" : "L100042"
                  },
                  "idSekundaer" : [ ],
                  "externeOrganisationseinheitsermittlung" : false,
                  "untergeordneteOrganisationseinheitID" : [ ],
                  "alternativeHierarchie" : [ ],
                  "kategorie" : [ ],
                  "name" : [ {
                    "name" : [ {
                      "value" : "Landgericht München I",
                      "languageCode" : "de"
                    } ],
                    "kurzbezeichnung" : [ {
                      "value" : "LG M1",
                      "languageCode" : "de"
                    } ]
                  } ],
                  "beschreibung" : [ ],
                  "kurzbeschreibung" : [ ],
                  "infoOeffnungszeitenText" : [ ],
                  "infoOeffnungszeitenStrukturiert" : [ ],
                  "infoInternServicecenter" : [ ],
                  "infoSonstige" : [ ],
                  "anschrift" : [ {
                    "anfahrturl" : [ {
                      "uri" : "http://geoportal.bayern.de/bayernatlas?&X=5333676.26&Y=4467699.5&zoom=14&lang=de&topic=ba&bgLayer=atkis&crosshair=marker",
                      "titel" : "Standort im BayernAtlas anzeigen",
                      "languageCode" : "de"
                    } ],
                    "infoParkplatz" : [ ],
                    "infoOEPNV" : [ ],
                    "infoBarrierefreiheit" : [ ],
                    "typ" : {
                      "code" : "001",
                      "listURI" : "urn:xoev-de:fim:codeliste:xzufi.anschrifttyp",
                      "listVersionID" : "2.0"
                    },
                    "strasse" : "Prielmayerstr. 7",
                    "postleitzahl" : "80335",
                    "ort" : "München",
                    "ortID" : [ ],
                    "verwaltungspolitischeKodierung" : {
                      "kreis" : {
                        "code" : "09162",
                        "name" : "München",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:kreis",
                        "listVersionID" : "unbestimmt"
                      },
                      "bezirk" : {
                        "code" : "091",
                        "name" : "Oberbayern",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:bezirk",
                        "listVersionID" : "unbestimmt"
                      },
                      "bundesland" : {
                        "code" : "09",
                        "name" : "Bayern",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:bundesland",
                        "listVersionID" : "unbestimmt"
                      },
                      "gemeindeschluessel" : {
                        "code" : "09162000",
                        "name" : "München, Landeshauptstadt",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:ags",
                        "listVersionID" : "unbestimmt"
                      },
                      "staat" : {
                        "code" : "000",
                        "name" : "Deutschland",
                        "listURI" : "urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:staat",
                        "listVersionID" : "unbestimmt"
                      }
                    },
                    "geokodierung" : [ {
                      "point" : {
                        "id" : "ID_POINT_GEB_868_868",
                        "pos" : {
                          "value" : [ 4467699.5, 5333676.26 ],
                          "axisLabels" : [ ],
                          "uomLabels" : [ ]
                        },
                        "metaDataProperty" : [ ],
                        "name" : [ ],
                        "srsName" : "EPSG:31468",
                        "axisLabels" : [ ],
                        "uomLabels" : [ ]
                      }
                    } ],
                    "gueltigkeit" : [ ]
                  }, {
                    "anfahrturl" : [ ],
                    "infoParkplatz" : [ ],
                    "infoOEPNV" : [ ],
                    "infoBarrierefreiheit" : [ ],
                    "typ" : {
                      "code" : "006",
                      "listURI" : "urn:xoev-de:fim:codeliste:xzufi.anschrifttyp",
                      "listVersionID" : "2.0"
                    },
                    "strasse" : "",
                    "postleitzahl" : "80316",
                    "ort" : "München",
                    "ortID" : [ ],
                    "geokodierung" : [ ],
                    "gueltigkeit" : [ ]
                  } ],
                  "erreichbarkeit" : [ {
                    "kanal" : {
                      "code" : "02",
                      "name" : "Telefon Festnetz",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "unbestimmt"
                    },
                    "kennung" : "+49 89 5597-03",
                    "gueltigkeit" : [ ]
                  }, {
                    "kanal" : {
                      "code" : "04",
                      "name" : "Fax",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "unbestimmt"
                    },
                    "kennung" : "+49 89 5597-2991",
                    "gueltigkeit" : [ ]
                  }, {
                    "kanal" : {
                      "code" : "01",
                      "name" : "E-Mail",
                      "listURI" : "urn:de:xoev:codeliste:erreichbarkeit",
                      "listVersionID" : "unbestimmt"
                    },
                    "kennung" : "Poststelle@lg-m1.bayern.de",
                    "gueltigkeit" : [ ]
                  } ],
                  "kommunikationssystem" : [ ],
                  "internetadresse" : [ {
                    "uri" : "http://www.justiz.bayern.de/gericht/lg/m1/"
                  } ],
                  "bankverbindung" : [ ],
                  "zahlungsweisen" : [ ],
                  "zahlungsweisenText" : [ ],
                  "synonym" : [ ],
                  "sprachversion" : [ {
                    "languageCode" : "de",
                    "sprachbezeichnungDeutsch" : "Deutsch",
                    "sprachbezeichnungNativ" : "Deutsch"
                  } ],
                  "gueltigkeit" : [ {
                    "beginn" : "1699-12-31+01:00",
                    "ende" : "2050-02-01+01:00",
                    "zusatz" : [ ]
                  } ]
                }
              }
            }
          },
          "404" : {
            "description" : "Organisationseinheit nicht gefunden",
            "content" : {
              "application/json" : {
                "example" : {
                  "timestamp" : "2022-10-10T12:38:03.887762500Z",
                  "code" : "NOT_FOUND",
                  "message" : "Die angegebene Resource konnte nicht gefunden werden.",
                  "codeNumber" : 1906
                }
              }
            }
          }
        },
        "deprecated" : true
      }
    }
  },
  "components" : {
    "schemas" : {
      "ErrorModel_Search" : {
        "type" : "object",
        "description" : "Fehlerinformationen",
        "example" : {
          "timestamp" : "2022-07-19T07:56:29.263780500Z",
          "code" : "BAD_REQUEST",
          "message" : "Die übermittelten Request-Pfad-Parameter entsprechen nicht den Anforderungen.",
          "codeNumber" : 1901
        },
        "properties" : {
          "timestamp" : {
            "type" : "string",
            "format" : "date-time"
          },
          "code" : {
            "type" : "string",
            "enum" : [ "ELSE_IO_ERROR", "JSON_IO_ERROR", "ELSE_POINT_IN_TIME_ERROR", "FAILURE_RESPONSE", "XZUFI_UNEXPECTED_FORMAT", "XZUFI_IMPORT_ERROR", "IMPORT_QUEUE", "IMPORT_QUEUE_STORAGE_FULL", "SEARCH_UNEXPECTED_RESULT", "MISSING_RESOURCE", "UNKNOWN_ERROR", "BAD_REQUEST", "BAD_JSON_REQUEST", "BAD_JSON_PROP_REQUEST", "NO_MASTER", "NO_INSTANCETYPE", "NOT_FOUND", "INVALID_CSV", "MISSING_HEADER", "MESSAGE_NOT_READABLE", "CODELIST_DOWNLOAD", "FORBIDDEN", "VIRUS_DETECTED", "VIRUS_SCANNER_ERROR", "INVALID_FILE", "CLIENT_ABORT", "CSV_CREATION_ERROR", "UNAUTHORIZED", "CONFLICT", "ENDPOINT_UNAVAILABLE", "IMPORT_RUNNING", "THREAD_ERROR", "GEO_REQUEST_ERROR" ]
          },
          "message" : {
            "type" : "string"
          },
          "codeNumber" : {
            "type" : "integer",
            "format" : "int32"
          }
        }
      },
      "AdditionalLink" : {
        "type" : "object",
        "properties" : {
          "uri" : {
            "type" : "string",
            "description" : "uri, xs:anyURI"
          },
          "title" : {
            "type" : "string",
            "description" : "titel, xs:string"
          },
          "description" : {
            "type" : "string",
            "description" : "beschreibung, xs:string"
          },
          "replace" : {
            "type" : "boolean",
            "description" : "Ersetzungs-Flag, falls das Objekt aus einer Spezialisierung kommt"
          },
          "dynamicParameters" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/OnlinedienstDynamischerParameter"
            }
          }
        },
        "required" : [ "uri" ]
      },
      "AdditionalLink_Search" : {
        "type" : "object",
        "properties" : {
          "uri" : {
            "type" : "string",
            "description" : "uri, xs:anyURI"
          },
          "title" : {
            "type" : "string",
            "description" : "titel, xs:string"
          },
          "description" : {
            "type" : "string",
            "description" : "beschreibung, xs:string"
          },
          "replace" : {
            "type" : "boolean",
            "description" : "Ersetzungs-Flag, falls das Objekt aus einer Spezialisierung kommt"
          },
          "dynamicParameters" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/OnlinedienstDynamischerParameter_Search"
            }
          }
        },
        "required" : [ "uri" ]
      },
      "CodeListValue_Search" : {
        "type" : "object",
        "properties" : {
          "key" : {
            "type" : "string"
          },
          "value" : {
            "type" : "string"
          },
          "locale" : {
            "type" : "string"
          }
        }
      },
      "CodeOnlinedienstDynamischerParameterTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeOnlinedienstDynamischerParameterTyp_Search" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodelistEntry_Search" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "uri" : {
            "type" : "string"
          },
          "version" : {
            "type" : "string"
          },
          "code" : {
            "type" : "string"
          },
          "key" : {
            "$ref" : "#/components/schemas/CodelistKey_Search"
          },
          "texts" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "string"
            }
          },
          "comments" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "string"
            }
          },
          "values" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/CodeListValue_Search"
            }
          }
        }
      },
      "CodelistKey_Search" : {
        "type" : "object",
        "properties" : {
          "uri" : {
            "type" : "string"
          },
          "version" : {
            "type" : "string"
          },
          "code" : {
            "type" : "string"
          }
        }
      },
      "Facades_Search" : {
        "type" : "object",
        "properties" : {
          "personalMatters" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/LifeSituationAggOutModel_Search"
            },
            "uniqueItems" : true
          }
        }
      },
      "KeyValueObject" : {
        "type" : "object",
        "properties" : {
          "textKey" : {
            "type" : "string"
          },
          "textValue" : {
            "type" : "string"
          }
        }
      },
      "KeyValueObject_Search" : {
        "type" : "object",
        "properties" : {
          "textKey" : {
            "type" : "string"
          },
          "textValue" : {
            "type" : "string"
          }
        }
      },
      "LeikaTyping_Search" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string"
          },
          "listVersionID" : {
            "type" : "string"
          }
        }
      },
      "LifeSituationAggOutModel_Search" : {
        "type" : "object",
        "description" : "Ein Lebenslageneintrag",
        "properties" : {
          "code" : {
            "type" : "string",
            "description" : "Code der Lebenslage gemäß Codeliste"
          },
          "name" : {
            "type" : "string",
            "description" : "Der für den Client internationalisierte Name der Lebenslage"
          },
          "count" : {
            "type" : "integer",
            "format" : "int64",
            "description" : "Anzahl der Lebenslagen aggregiert auf die Hierarchie-Ebene"
          },
          "children" : {
            "type" : "array",
            "description" : "Die untergeordneten Lebenslagen",
            "items" : {
              "$ref" : "#/components/schemas/LifeSituationAggOutModel_Search"
            }
          }
        }
      },
      "NationalityCode_Search" : {
        "type" : "object",
        "properties" : {
          "destatisCode" : {
            "type" : "string"
          },
          "iso2Code" : {
            "type" : "string"
          }
        }
      },
      "OdOutModel_Search" : {
        "type" : "object",
        "properties" : {
          "uri" : {
            "type" : "string",
            "description" : "uri, xs:anyURI"
          },
          "title" : {
            "type" : "string",
            "description" : "titel, xs:string"
          },
          "description" : {
            "type" : "string",
            "description" : "beschreibung, xs:string"
          },
          "replace" : {
            "type" : "boolean",
            "description" : "Ersetzungs-Flag, falls das Objekt aus einer Spezialisierung kommt"
          },
          "dynamicParameters" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/OnlinedienstDynamischerParameter_Search"
            }
          },
          "id" : {
            "type" : "string",
            "description" : "id, xzufi:Identifikator"
          },
          "validFrom" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "Da es mehr als ein Gültigkeitsdatum geben kann, ist dieses Feld deprecated"
          },
          "validTo" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "Da es mehr als ein Gültigkeitsdatum geben kann, ist dieses Feld deprecated"
          },
          "validityPeriods" : {
            "type" : "array",
            "description" : "gueltigkeit, xzufi:Zeitraum",
            "items" : {
              "$ref" : "#/components/schemas/ValidityPeriodOutModel_Search"
            }
          },
          "executionLanguages" : {
            "type" : "array",
            "items" : {
              "type" : "string",
              "uniqueItems" : true
            },
            "uniqueItems" : true
          },
          "executionNationalities" : {
            "type" : "array",
            "description" : "durchfuehrungStaatsangehoerigkeit, xzufi:Code.StaatsangehoerigkeitDestatis",
            "items" : {
              "$ref" : "#/components/schemas/NationalityCode_Search"
            },
            "uniqueItems" : true
          },
          "levelOfConfidence" : {
            "type" : "string",
            "description" : "vertrauensniveau, xzufi:Code.Vertrauensniveau",
            "example" : "00"
          }
        },
        "required" : [ "uri" ]
      },
      "OnlinedienstDynamischerParameter" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/CodeOnlinedienstDynamischerParameterTyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "parameterName" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "parameterName", "typ" ]
      },
      "OnlinedienstDynamischerParameter_Search" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/CodeOnlinedienstDynamischerParameterTyp_Search",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "parameterName" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "parameterName", "typ" ]
      },
      "ResultPagePageableSort_Search" : {
        "type" : "object",
        "properties" : {
          "sorted" : {
            "type" : "boolean"
          },
          "unsorted" : {
            "type" : "boolean"
          },
          "empty" : {
            "type" : "boolean"
          }
        }
      },
      "ResultPagePageable_Search" : {
        "type" : "object",
        "properties" : {
          "unpaged" : {
            "type" : "boolean"
          },
          "pageNumber" : {
            "type" : "integer",
            "format" : "int64"
          },
          "paged" : {
            "type" : "boolean"
          },
          "pageSize" : {
            "type" : "integer",
            "format" : "int64"
          },
          "offset" : {
            "type" : "integer",
            "format" : "int64"
          },
          "sort" : {
            "$ref" : "#/components/schemas/ResultPagePageableSort_Search"
          }
        }
      },
      "ResultPageSdOutModelV7_Search" : {
        "type" : "object",
        "properties" : {
          "content" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/SdOutModelV7_Search"
            }
          },
          "empty" : {
            "type" : "boolean"
          },
          "totalPages" : {
            "type" : "integer",
            "format" : "int32"
          },
          "numberOfElements" : {
            "type" : "integer",
            "format" : "int32"
          },
          "totalElements" : {
            "type" : "integer",
            "format" : "int64"
          },
          "first" : {
            "type" : "boolean"
          },
          "last" : {
            "type" : "boolean"
          },
          "pageable" : {
            "$ref" : "#/components/schemas/ResultPagePageable_Search"
          }
        }
      },
      "SdOutModelV7_Search" : {
        "type" : "object",
        "description" : "Dienstbeschreibung-Ausgabe",
        "example" : {
          "name" : "Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung",
          "description" : "<p>Die Berufsbezeichnung &#34;Ingenieurin&#34; oder &#34;Ingenieur&#34; ist nach dem Ingenieurgesetz Schleswig-Holstein (IngG) gesetzlich geschützt. Diesen Titel - allein oder in einer Wortverbindung - darf führen,</p> <ol><li>wer ein Studium einer technischen oder technisch-naturwissenschaftlichen Fachrichtung mit einer Regelstudienzeit von mindestens sechs Semestern in Vollzeit oder während einer entsprechenden Gesamtdauer in Teilzeit an einer deutschen, staatlichen oder staatlich anerkannten Universität, Fachhochschule oder Berufsakademie mit Erfolg abgeschlossen hat, wobei dieser Studiengang überwiegend von den Bereichen Mathematik, Informatik, Naturwissenschaften und Technik geprägt sein muss; für die Bezeichnung &#34;Wirtschaftsingenieurin&#34; oder &#34;Wirtschaftsingenieur&#34; muss der Studiengang von diesen Fächern zumindest geprägt sein,</li><li>wer von der zuständigen Stelle die Genehmigung hierzu erhalten hat,</li><li>wer nach dem Recht eines anderen Landes der Bundesrepublik Deutschland zur Führung dieser Berufsbezeichnung berechtigt ist oder</li><li>wer bis zum Inkrafttreten dieses Gesetzes bereits berechtigt war, die Berufsbezeichnung zu führen.</li></ol> <p>Bezeichnungen, die auf wirtschaftlich tätige Zusammenschlüsse (&#34;Ingenieurbüro&#34; o.ä.) hinweisen, dürfen in Verbindung mit der Berufsbezeichnung nach Absatz 1 oder ähnlichen Bezeichnungen nur geführt werden, wenn mindestens die Hälfte der Mitglieder des Vorstands, der Geschäftsführung oder der Personen, die mindestens über die Hälfte der Stimmrechte verfügen, zur Führung der Berufsbezeichnung berechtigt sind.</p> <p>Eine Genehmigung können Personen aus einem Mitgliedstaat der Europäischen Union, einem Vertragsstaat des Abkommens über den Europäischen Wirtschaftsraum oder einem sonstigen durch Abkommen gleichgestellten Staat (Mitglieds- oder Vertragsstaat) beantragen, wenn sie in Schleswig-Holstein ihre Hauptwohnung, ihre Hauptniederlassung oder ihre überwiegende berufliche Beschäftigung haben.</p> <p>Die für eine Genehmigung erforderlichen Befähigungs- oder Ausbildungsnachweise und/oder Berufserfahrungen hängen davon ab, ob der Beruf im Herkunftsland reglementiert ist oder nicht.</p> <p>Die zuständige Stelle (s.u.) kann bei wesentlichen Qualifikationsunterschieden Ausgleichsmaßnahmen in Form von Anpassungslehrgängen oder Eignungsprüfungen verlangen.</p> <p>Rechtfertigen Tatsachen die Annahme, dass die erforderliche fachliche Kenntnis fehlt oder Leben und Gesundheit von Menschen erheblich gefährdet sind, dann kann das Führen der Berufsbezeichnung durch die zuständige Behörde untersagt werden.</p> <p>Eine Genehmigung können Personen aus einem Mitgliedstaat der Europäischen Union, einem Vertragsstaat des Abkommens über den Europäischen Wirtschaftsraum oder einem sonstigen Abkommen gleichgestellten</p> <p>Rechtfertigen Tatsachen die Annahme, dass die erforderliche fachliche Kenntnis fehlt oder Leben und Gesundheit von Menschen erheblich gefährdet sind, dann kann das Führen der Berufsbezeichnung durch die zuständige Behörde untersagt werden.</p>",
          "leikakeys" : [ "99147006067000" ],
          "sdgInformation" : [ ],
          "id" : "L100012.LB.9413106",
          "languageCode" : "de",
          "timestamp" : "2022-07-14T15:13:24.045997200Z",
          "ars" : [ "010000000000" ],
          "sourcePortals" : [ ],
          "languageComplete" : { },
          "availableLanguages" : [ "de" ],
          "organisationIds" : [ ],
          "lastUpdate" : "2022-07-14T15:13:24.045997200Z",
          "externalLastUpdate" : "2021-03-11T11:47:51Z",
          "addressees" : [ ],
          "arsFederalstate" : [ "01" ],
          "validFrom" : "1970-01-01",
          "validTo" : "2999-12-31",
          "validityPeriods" : [ {
            "validFrom" : "1970-01-01",
            "validTo" : "2999-12-31"
          } ],
          "synonyms" : [ "the", "take", "berufsbezeichnung", "erlaubnis", "Ingenieur  Ingenieurin Erlaubnis zum Führen der Berufsbezeichnung", "führen", "ingenieur", "permission", "title", "engineer", "professional" ],
          "typing" : [ {
            "code" : "4",
            "name" : "Regelungskompetenz auf Landesebene",
            "listURI" : "urn:de:fim:leika:typisierung",
            "listVersionID" : "20201204"
          } ],
          "onlineServiceLinks" : [ ],
          "teaser" : "Teaser",
          "suggest" : [ "the", "take", "berufsbezeichnung", "erlaubnis", "Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung", "führen", "ingenieur", "permission", "title", "engineer", "professional" ]
        },
        "properties" : {
          "name" : {
            "type" : "string",
            "description" : "leikaTextModul mit Code 03, wenn vorhanden, sonst 02"
          },
          "description" : {
            "type" : "string",
            "description" : "leikaTextModul mit Code 06"
          },
          "leikakeys" : {
            "type" : "array",
            "description" : "referenzLeiKa, xzufi:Code.LeiKaLeistung",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "sdgInformation" : {
            "type" : "array",
            "description" : "informationsbereichSDG, xzufi:Code.SDGInformationsbereich",
            "items" : {
              "$ref" : "#/components/schemas/CodelistEntry_Search"
            },
            "uniqueItems" : true
          },
          "id" : {
            "type" : "string",
            "description" : "id, xzufi:Identifikator"
          },
          "languageCode" : {
            "type" : "string",
            "description" : "Der Sprachcode aus sprachversion.languageCode"
          },
          "timestamp" : {
            "type" : "string",
            "format" : "date-time",
            "description" : "Zeitpunkt, an dem der Datensatz im Suchdienst erstellt wurde"
          },
          "ars" : {
            "type" : "array",
            "description" : "gueltigkeitGebietID, xzufi:Identifikator",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "sourcePortals" : {
            "type" : "array",
            "description" : "modulUrsprungsportal, xzufi:UrsprungsportalModul",
            "items" : {
              "$ref" : "#/components/schemas/SourcePortal_Search"
            }
          },
          "languageComplete" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "boolean"
            },
            "description" : "Vollständigkeit der Felder zu einer Sprache"
          },
          "availableLanguages" : {
            "type" : "array",
            "description" : "Verfügbare Sprachen aus \"sprachversion\"",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "organisationIds" : {
            "type" : "array",
            "description" : "IDs der für diese Leistung zuständigen Organisationseinheiten",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "lastUpdate" : {
            "type" : "string",
            "format" : "date-time",
            "description" : "Zeitpunkt, an dem der Datensatz im Suchdienst empfangen wurde"
          },
          "externalLastUpdate" : {
            "type" : "string",
            "format" : "date-time",
            "description" : "versionsinformation, xzufi:Versionsinformation"
          },
          "addressees" : {
            "type" : "array",
            "description" : "leistungsadressat, xzufi:Code.Leistungsadressat",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "arsFederalstate" : {
            "type" : "array",
            "description" : "ARS der zugehörigen Bundesländer",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "validFrom" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "Da es mehr als ein Gültigkeitsdatum geben kann, ist dieses Feld deprecated"
          },
          "validTo" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "Da es mehr als ein Gültigkeitsdatum geben kann, ist dieses Feld deprecated"
          },
          "validityPeriods" : {
            "type" : "array",
            "description" : "gueltigkeit, xzufi:Zeitraum",
            "items" : {
              "$ref" : "#/components/schemas/ValidityPeriodOutModel_Search"
            }
          },
          "synonyms" : {
            "type" : "array",
            "description" : "Titel aus modulUrsprungsportal, Inhalt für Code 02 und 03 aus modulText, Begriff aus modulBegriffImKontext, zusätzlich gefüllt mit denselben Feldern aus der Spezialisierung",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "details" : {
            "type" : "array",
            "description" : "[modulText, xzufi:Textmodul ; modulKosten, xzufi:Kostenmodul ; modulFrist, xzufi:Fristmodul ; modulDokument, xzufi:Dokumentmodul ; modulTextIndividuell, xzufi:TextmodulIndividuell]",
            "items" : {
              "oneOf" : [ {
                "$ref" : "#/components/schemas/SeDeBlockModuleDetail_Search"
              }, {
                "$ref" : "#/components/schemas/SeDeBlockModule_Search"
              } ]
            }
          },
          "typing" : {
            "type" : "array",
            "description" : "typisierung, xzufi:Code.LeiKaTypisierung",
            "items" : {
              "$ref" : "#/components/schemas/LeikaTyping_Search"
            }
          },
          "onlineServiceLinks" : {
            "type" : "array",
            "description" : "Zugehörige Onlinedienste",
            "items" : {
              "$ref" : "#/components/schemas/OdOutModel_Search"
            }
          },
          "teaser" : {
            "type" : "string",
            "description" : "Inhalt aus modulText mit Code 24"
          },
          "suggest" : {
            "type" : "array",
            "description" : "Titel aus modulUrsprungsportal, Inhalt für Code 02 und 03 aus modulText, Begriff aus modulBegriffImKontext, zusätzlich gefüllt mit denselben Feldern aus der Spezialisierung",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          }
        },
        "required" : [ "id", "lastUpdate", "name" ]
      },
      "SeDeBlockModule" : {
        "allOf" : [ {
          "$ref" : "#/components/schemas/SeDeBlock"
        }, {
          "type" : "object",
          "properties" : {
            "additionalInformation" : {
              "type" : "array",
              "description" : "Zusatzinformationen aus Modulen",
              "items" : {
                "$ref" : "#/components/schemas/KeyValueObject"
              }
            }
          }
        } ],
        "required" : [ "@type", "code", "filled", "replace", "title" ]
      },
      "SeDeBlockModuleDetail" : {
        "allOf" : [ {
          "$ref" : "#/components/schemas/SeDeBlock"
        }, {
          "type" : "object",
          "properties" : {
            "details" : {
              "type" : "array",
              "items" : {
                "$ref" : "#/components/schemas/SeDeBlockModule"
              }
            },
            "placeholder" : {
              "type" : "boolean"
            }
          }
        } ],
        "required" : [ "@type", "code", "filled", "placeholder", "replace", "title" ]
      },
      "SeDeBlockModuleDetail_Search" : {
        "allOf" : [ {
          "$ref" : "#/components/schemas/SeDeBlock_Search"
        }, {
          "type" : "object",
          "properties" : {
            "details" : {
              "type" : "array",
              "items" : {
                "$ref" : "#/components/schemas/SeDeBlockModule_Search"
              }
            },
            "placeholder" : {
              "type" : "boolean"
            }
          }
        } ],
        "required" : [ "@type", "code", "filled", "placeholder", "replace", "title" ]
      },
      "SeDeBlockModule_Search" : {
        "allOf" : [ {
          "$ref" : "#/components/schemas/SeDeBlock_Search"
        }, {
          "type" : "object",
          "properties" : {
            "additionalInformation" : {
              "type" : "array",
              "description" : "Zusatzinformationen aus Modulen",
              "items" : {
                "$ref" : "#/components/schemas/KeyValueObject_Search"
              }
            }
          }
        } ],
        "required" : [ "@type", "code", "filled", "replace", "title" ]
      },
      "SeDeBlock_Search" : {
        "type" : "object",
        "discriminator" : {
          "propertyName" : "@type",
          "mapping" : {
            "_module" : "#/components/schemas/SeDeBlockModule",
            "_moduleDetail" : "#/components/schemas/SeDeBlockModuleDetail"
          }
        },
        "properties" : {
          "title" : {
            "type" : "string",
            "description" : "Inhalt der Codeliste für den Code in leikaTextmodul"
          },
          "text" : {
            "type" : "string",
            "description" : "inhalt, xzufi:String.Localized"
          },
          "links" : {
            "type" : "array",
            "description" : "weiterfuehrenderLink, xzufi:HyperlinkErweitert",
            "items" : {
              "$ref" : "#/components/schemas/AdditionalLink_Search"
            }
          },
          "replace" : {
            "type" : "boolean",
            "description" : "Zeigt an, ob ersetzende Spezialisierung",
            "example" : false
          },
          "code" : {
            "type" : "string",
            "description" : "leikaTextmodul, xzufi:Code.Leistungstextmodul"
          },
          "filled" : {
            "type" : "boolean",
            "description" : "Zeigt an, ob das Modul mindestens minimalen Inhalt aufweist"
          },
          "placeholder" : {
            "type" : "boolean",
            "description" : "Zeigt an, ob das Modul erzeugt wurde, um Anforderungen an Vollständigkeit zu genügen"
          },
          "@type" : {
            "type" : "string",
            "description" : "Discriminator zur Feststellung des spezifischen Subtyps",
            "readOnly" : true
          },
          "xZufiCategory" : {
            "$ref" : "#/components/schemas/XZufiCategory_Search",
            "description" : "XZuFi Kategorie",
            "example" : "TEXT_MODUL"
          }
        },
        "required" : [ "@type", "code", "filled", "replace", "title" ],
        "title" : "Service Description (detail block)"
      },
      "SearchOutModelSdOutModelV7_Search" : {
        "type" : "object",
        "properties" : {
          "serviceDescriptions" : {
            "$ref" : "#/components/schemas/ResultPageSdOutModelV7_Search"
          },
          "facades" : {
            "$ref" : "#/components/schemas/Facades_Search"
          }
        }
      },
      "SourcePortal_Search" : {
        "type" : "object",
        "properties" : {
          "title" : {
            "type" : "string",
            "description" : "titel, xs:string"
          },
          "uri" : {
            "type" : "string",
            "description" : "uri, xs:anyURI"
          },
          "replace" : {
            "type" : "boolean",
            "description" : "Ersetzungs-Flag, falls das Modul aus einer Spezialisierung kommt"
          }
        },
        "required" : [ "replace", "uri" ]
      },
      "ValidityPeriod" : {
        "type" : "object",
        "properties" : {
          "gte" : {
            "type" : "string",
            "format" : "date",
            "description" : "beginn, xs:date"
          },
          "lte" : {
            "type" : "string",
            "format" : "date",
            "description" : "ende, xs:date"
          }
        }
      },
      "ValidityPeriodOutModel_Search" : {
        "type" : "object",
        "properties" : {
          "validFrom" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "beginn, xs:date"
          },
          "validTo" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "ende, xs:date"
          }
        },
        "required" : [ "validFrom", "validTo" ]
      },
      "XZufiCategory" : {
        "type" : "string",
        "enum" : [ "BEARBEITUNGSDAUER", "BEGRIFF_IM_KONTEXT", "DOKUMENT", "FRIST", "KOSTEN", "TEXT_MODUL_INDIVIDUELL", "TEXT_MODUL", "FACHLICHE_FREIGABE", "URSPRUNGSPORTAL_MODUL" ]
      },
      "XZufiCategory_Search" : {
        "type" : "string",
        "enum" : [ "BEARBEITUNGSDAUER", "BEGRIFF_IM_KONTEXT", "DOKUMENT", "FRIST", "KOSTEN", "TEXT_MODUL_INDIVIDUELL", "TEXT_MODUL", "FACHLICHE_FREIGABE", "URSPRUNGSPORTAL_MODUL" ]
      },
      "AdditionalLink_Detail" : {
        "type" : "object",
        "properties" : {
          "uri" : {
            "type" : "string",
            "description" : "uri, xs:anyURI"
          },
          "title" : {
            "type" : "string",
            "description" : "titel, xs:string"
          },
          "description" : {
            "type" : "string",
            "description" : "beschreibung, xs:string"
          },
          "replace" : {
            "type" : "boolean",
            "description" : "Ersetzungs-Flag, falls das Objekt aus einer Spezialisierung kommt"
          },
          "dynamicParameters" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/OnlinedienstDynamischerParameter_Detail"
            }
          }
        },
        "required" : [ "uri" ]
      },
      "CodeListValue_Detail" : {
        "type" : "object",
        "properties" : {
          "key" : {
            "type" : "string"
          },
          "value" : {
            "type" : "string"
          },
          "locale" : {
            "type" : "string"
          }
        }
      },
      "CodeOnlinedienstDynamischerParameterTyp_Detail" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodelistEntry_Detail" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "uri" : {
            "type" : "string"
          },
          "version" : {
            "type" : "string"
          },
          "code" : {
            "type" : "string"
          },
          "key" : {
            "$ref" : "#/components/schemas/CodelistKey_Detail"
          },
          "texts" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "string"
            }
          },
          "comments" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "string"
            }
          },
          "values" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/CodeListValue_Detail"
            }
          }
        }
      },
      "CodelistKey_Detail" : {
        "type" : "object",
        "properties" : {
          "uri" : {
            "type" : "string"
          },
          "version" : {
            "type" : "string"
          },
          "code" : {
            "type" : "string"
          }
        }
      },
      "FoOutModel_Detail" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string",
            "description" : "id, xzufi:id"
          },
          "name" : {
            "type" : "string",
            "description" : "Name des Formulars, xzufi:bezeichnung"
          },
          "description" : {
            "type" : "string",
            "description" : "Beschreibung des Formulars, xzufi:beschreibung"
          },
          "mimeCode" : {
            "type" : "string",
            "description" : "MimeType, xzufi:mimeCode"
          },
          "uri" : {
            "type" : "string",
            "description" : "Link zum Formular, xzufi:uri"
          }
        },
        "required" : [ "id", "uri" ]
      },
      "KeyValueObject_Detail" : {
        "type" : "object",
        "properties" : {
          "textKey" : {
            "type" : "string"
          },
          "textValue" : {
            "type" : "string"
          }
        }
      },
      "LeikaTyping_Detail" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string"
          },
          "listVersionID" : {
            "type" : "string"
          }
        }
      },
      "LifeSituationOutModel_Detail" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string",
            "description" : "Code der Lebenslage gemäß Codeliste"
          },
          "name" : {
            "type" : "string",
            "description" : "Der für den Client internationalisierte Name der Lebenslage"
          },
          "children" : {
            "type" : "array",
            "description" : "Menge der Unter-Lebenslagen",
            "items" : {
              "$ref" : "#/components/schemas/LifeSituationOutModel_Detail"
            }
          }
        },
        "required" : [ "code", "name" ]
      },
      "NationalityCode_Detail" : {
        "type" : "object",
        "properties" : {
          "destatisCode" : {
            "type" : "string"
          },
          "iso2Code" : {
            "type" : "string"
          }
        }
      },
      "OdOutModelV4_Detail" : {
        "type" : "object",
        "properties" : {
          "uri" : {
            "type" : "string",
            "description" : "uri, xs:anyURI"
          },
          "title" : {
            "type" : "string",
            "description" : "titel, xs:string"
          },
          "description" : {
            "type" : "string",
            "description" : "beschreibung, xs:string"
          },
          "replace" : {
            "type" : "boolean",
            "description" : "Ersetzungs-Flag, falls das Objekt aus einer Spezialisierung kommt"
          },
          "dynamicParameters" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/OnlinedienstDynamischerParameter_Detail"
            }
          },
          "id" : {
            "type" : "string",
            "description" : "id, xzufi:Identifikator"
          },
          "validFrom" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "Da es mehr als ein Gültigkeitsdatum geben kann, ist dieses Feld deprecated"
          },
          "validTo" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "Da es mehr als ein Gültigkeitsdatum geben kann, ist dieses Feld deprecated"
          },
          "validityPeriods" : {
            "type" : "array",
            "description" : "gueltigkeit, xzufi:Zeitraum",
            "items" : {
              "$ref" : "#/components/schemas/ValidityPeriodOutModel_Detail"
            }
          },
          "executionLanguages" : {
            "type" : "array",
            "items" : {
              "type" : "string",
              "uniqueItems" : true
            },
            "uniqueItems" : true
          },
          "executionNationalities" : {
            "type" : "array",
            "description" : "durchfuehrungStaatsangehoerigkeit, xzufi:Code.StaatsangehoerigkeitDestatis",
            "items" : {
              "$ref" : "#/components/schemas/NationalityCode_Detail"
            },
            "uniqueItems" : true
          },
          "levelOfConfidence" : {
            "type" : "string",
            "description" : "vertrauensniveau, xzufi:Code.Vertrauensniveau",
            "example" : "00"
          },
          "identificationMethods" : {
            "type" : "array",
            "description" : "identifizierungsmittel, xzufi:Code.Identifizierungsmittel",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "paymentMethods" : {
            "type" : "array",
            "description" : "zahlungsweise, xzufi:Code.Zahlungsweise",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "helpText" : {
            "type" : "string",
            "description" : "hilfeText, xzufi:String.Localized"
          },
          "helpLinks" : {
            "type" : "array",
            "description" : "hilfeLink, xzufi:HyperlinkErweitert",
            "items" : {
              "$ref" : "#/components/schemas/AdditionalLink_Detail"
            }
          }
        },
        "required" : [ "uri" ]
      },
      "OnlinedienstDynamischerParameter_Detail" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/CodeOnlinedienstDynamischerParameterTyp_Detail",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "parameterName" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "parameterName", "typ" ]
      },
      "SdOutModelV5_Detail" : {
        "type" : "object",
        "description" : "Vom Standard abweichende Version des LB-Ausgabemodells mit neuen Feldern an den onlineServiceLinks",
        "example" : {
          "name" : "Schulform wechseln",
          "description" : "Sie wünschen für Ihr Kind einen Wechsel der Schulform? Dann können Sie einen Wechsel der Schulform bis zum Ende der Klasse 8 bei der Schule beantragen.",
          "leikakeys" : [ "99088013005000" ],
          "sdgInformation" : [ {
            "id" : "urn:xoev-de:fim:codeliste:sdginformationsbereich10501003",
            "uri" : "urn:xoev-de:fim:codeliste:sdginformationsbereich",
            "version" : "3",
            "code" : "1050100",
            "texts" : {
              "de" : "Bildungswesen in einem anderen Mitgliedstaat, einschließlich der frühkindlichen Betreuung, Bildung und Erziehung, der Primar- und Sekundarschulbildung, der Hochschulbildung und der Erwachsenenbildung",
              "en_GB" : "education system in another Member State, including early childhood education and care, primary and secondary education, higher education and adult learning"
            },
            "values" : [ {
              "key" : "eu-code",
              "value" : "E01",
              "locale" : "de"
            } ]
          } ],
          "id" : "L100002.LB.00c33c8f98a69ac19c9ac945f4ffde1e",
          "languageCode" : "de",
          "timestamp" : "2022-11-11T12:57:07.808994100Z",
          "ars" : [ "050000000000" ],
          "sourcePortals" : [ {
            "title" : "Weiterleitungsdienst: Deep-Link zum Ursprungsportal",
            "uri" : "https://verwaltungsleistung.nrw",
            "replace" : false
          } ],
          "languageComplete" : { },
          "availableLanguages" : [ "de" ],
          "organisationIds" : [ "L100002.OE.661b259513840cad0ad1cc0bf90b149a" ],
          "lastUpdate" : "2022-11-11T12:57:04.026993Z",
          "externalLastUpdate" : "2021-06-22T04:03:20Z",
          "addressees" : [ ],
          "arsFederalstate" : [ "05" ],
          "validFrom" : "1970-01-01",
          "validTo" : "2999-12-31",
          "validityPeriods" : [ {
            "validFrom" : "1970-01-01",
            "validTo" : "2999-12-31"
          } ],
          "synonyms" : [ "Wechsel in eine andere Schulform Erlaubnis", "erlaubnis", "gymnasium", "weiterleitungsdienst", "wechsel", "sekundarschule", "wechseln", "Schulform wechseln", "DeepLink", "ursprungsportal", "hauptschule", "schulform", "sekundarstufe1", "förderschule", "realschule", "gesamtschule", "schulberatung" ],
          "details" : [ {
            "@type" : "_module",
            "title" : "Volltext",
            "text" : "Das Team Verwaltung, Personal und Haushalt der Abteilung Schule (FB 45/400.010) organisiert von Seiten des Schulträgers das Einschulungsverfahren sowie das Anmeldeverfahren für die weiterführenden Schulen.   Darüber hinaus überwacht das Team die Schulpflicht bei Kindern, die nach Aachen ziehen.",
            "links" : [ ],
            "replace" : true,
            "code" : "06",
            "additionalInformation" : [ ],
            "filled" : true,
            "placeholder" : false,
            "xZufiCategory" : "TEXT_MODUL"
          }, {
            "@type" : "_module",
            "title" : "Voraussetzungen",
            "text" : "<ul><li>evtl. Zeugnisse</li><li>Beschluss der Versetzungskonferenz der bisher besuchten Klasse</li><li>für den Wechsel in eine Förderschule: Nachweis sonderpädagogischer Förderbedarf</li><li>für den Wechsel ins Gymnasium ab Klasse 8 (G9), ab Klasse 7 (G8): Kenntnisse einer zweiten Fremdsprache</li></ul>",
            "links" : [ ],
            "replace" : false,
            "code" : "09",
            "additionalInformation" : [ ],
            "filled" : true,
            "placeholder" : false,
            "xZufiCategory" : "TEXT_MODUL"
          }, {
            "@type" : "_module",
            "title" : "erforderliche Unterlagen",
            "text" : "<p>Informationen hierzu können Sie den Ausführungen der jeweiligen Schulform entnehmen.</p>",
            "links" : [ ],
            "replace" : false,
            "code" : "08",
            "additionalInformation" : [ ],
            "filled" : true,
            "placeholder" : false,
            "xZufiCategory" : "TEXT_MODUL"
          }, {
            "@type" : "_moduleDetail",
            "title" : "Kosten & Gebühren",
            "text" : "keine",
            "links" : [ ],
            "replace" : false,
            "code" : "98",
            "details" : [ ],
            "filled" : true,
            "placeholder" : false,
            "xZufiCategory" : "KOSTEN"
          }, {
            "@type" : "_module",
            "title" : "Ansprechpunkt",
            "text" : "nicht angegeben",
            "links" : [ ],
            "replace" : false,
            "code" : "23",
            "additionalInformation" : [ ],
            "filled" : true,
            "placeholder" : true,
            "xZufiCategory" : "TEXT_MODUL"
          }, {
            "@type" : "_moduleDetail",
            "title" : "Fristen",
            "text" : "Sie müssen die Anträge in der Regel im Verlauf des 2. Halbjahres, spätestens 6 Wochen vor Ausgabe der Jahreszeugnisse bei der Schule stellen.",
            "links" : [ ],
            "replace" : false,
            "code" : "97",
            "details" : [ ],
            "filled" : true,
            "placeholder" : false,
            "xZufiCategory" : "FRIST"
          }, {
            "@type" : "_module",
            "title" : "weiterführende Informationen",
            "text" : "http://broschüren.nrw/sekundarstufe-1",
            "links" : [ ],
            "replace" : false,
            "code" : "15",
            "additionalInformation" : [ ],
            "filled" : true,
            "placeholder" : false,
            "xZufiCategory" : "TEXT_MODUL"
          }, {
            "@type" : "_module",
            "title" : "Rechtsgrundlage(n)",
            "text" : "",
            "links" : [ {
              "uri" : "https://recht.nrw.de/lmi/owa/br_bes_text?anw_nr=2&gld_nr=2&ugl_nr=223&bes_id=7345&menu=0&sg=0&aufgehoben=N&keyword=Schulgesetz#det0",
              "title" : "§ 13, § 46, § 50 SchulG",
              "replace" : false,
              "dynamicParameters" : [ ]
            }, {
              "uri" : "https://recht.nrw.de/lmi/owa/br_text_anzeigen?v_id=10000000000000000640",
              "title" : "§ 11, § 12, § 13 APO-S I",
              "replace" : false,
              "dynamicParameters" : [ ]
            } ],
            "replace" : false,
            "code" : "07",
            "additionalInformation" : [ ],
            "filled" : true,
            "placeholder" : false,
            "xZufiCategory" : "TEXT_MODUL"
          }, {
            "@type" : "_module",
            "title" : "Urheber",
            "text" : "nicht angegeben",
            "links" : [ ],
            "replace" : false,
            "code" : "18",
            "additionalInformation" : [ ],
            "filled" : true,
            "placeholder" : true,
            "xZufiCategory" : "TEXT_MODUL"
          }, {
            "@type" : "_module",
            "title" : "Zuständige Stelle",
            "text" : "nicht angegeben",
            "links" : [ ],
            "replace" : false,
            "code" : "22",
            "additionalInformation" : [ ],
            "filled" : true,
            "placeholder" : true,
            "xZufiCategory" : "TEXT_MODUL"
          }, {
            "@type" : "_module",
            "title" : "Leistungsbezeichnung",
            "text" : "Wechsel in eine andere Schulform Erlaubnis",
            "links" : [ ],
            "replace" : false,
            "code" : "02",
            "additionalInformation" : [ ],
            "filled" : true,
            "placeholder" : false,
            "xZufiCategory" : "TEXT_MODUL"
          }, {
            "@type" : "_module",
            "title" : "Leistungsbezeichnung II (Leistungsname)",
            "text" : "Schulform wechseln",
            "links" : [ ],
            "replace" : false,
            "code" : "03",
            "additionalInformation" : [ ],
            "filled" : true,
            "placeholder" : false,
            "xZufiCategory" : "TEXT_MODUL"
          }, {
            "@type" : "_module",
            "title" : "Verfahrensablauf",
            "text" : "<ul><li>Die Schülerinnen und Schüler bzw. die Erziehungsberechtigten können die Anmeldung über das Internetportal Schüler Online (www.schueleranmeldung.de) abgeben.</li><li>Die jeweilige Schule entscheidet über die Anmeldung und teilt die Entscheidung den Beteiligten über das Internetportal und schriftlich mit.</li><li>Bitte beachten Sie, dass auch bei einer Online-Anmeldung ein persönlicher Termin in der Schule für die Entscheidung der Schulleiterin oder des Schulleiters über eine Aufnahme Ihres Kindes notwendig ist</li></ul>",
            "links" : [ ],
            "replace" : false,
            "code" : "11",
            "additionalInformation" : [ ],
            "filled" : true,
            "placeholder" : false,
            "xZufiCategory" : "TEXT_MODUL"
          }, {
            "@type" : "_module",
            "title" : "Teaser",
            "text" : "Sie wünschen für Ihr Kind einen Wechsel der Schulform? Dann können Sie einen Wechsel der Schulform bis zum Ende der Klasse 8 bei der Schule beantragen.",
            "links" : [ ],
            "replace" : false,
            "code" : "24",
            "additionalInformation" : [ ],
            "filled" : true,
            "placeholder" : false,
            "xZufiCategory" : "TEXT_MODUL"
          }, {
            "@type" : "_moduleDetail",
            "title" : "Bearbeitungsdauer",
            "text" : "Genauere Informationen zu den Anmeldeterminen und zum zeitlichen Ablauf erhalten Sie von der Kommune der gewünschten Schule oder von der jeweiligen Schule unmittelbar.",
            "links" : [ ],
            "replace" : false,
            "code" : "95",
            "details" : [ ],
            "filled" : true,
            "placeholder" : false,
            "xZufiCategory" : "BEARBEITUNGSDAUER"
          } ],
          "typing" : [ {
            "code" : "4",
            "listURI" : "urn:de:fim:leika:typisierung",
            "listVersionID" : "20201204"
          } ],
          "onlineServiceLinks" : [ {
            "uri" : "https://serviceportal.aachen.de:443/suche/-/vr-bis-detail/dienstleistung/5740/show",
            "title" : "https://serviceportal.aachen.de:443/suche/-/vr-bis-detail/dienstleistung/5740/show",
            "replace" : false,
            "dynamicParameters" : [ ],
            "id" : "L100002.OD.c84aec1bd98b8773fad0d48c749dd1b3",
            "validFrom" : "1970-01-01",
            "validTo" : "2999-12-31",
            "validityPeriods" : [ {
              "validFrom" : "1970-01-01",
              "validTo" : "2999-12-31"
            } ],
            "executionLanguages" : [ ],
            "executionNationalities" : [ ],
            "levelOfConfidence" : "00",
            "identificationMethods" : [ ],
            "paymentMethods" : [ ],
            "helpLinks" : [ ]
          } ],
          "personalMatters" : [ {
            "code" : "1000000",
            "name" : "Bürger",
            "children" : [ {
              "code" : "1020000",
              "name" : "Partnerschaft und Familie",
              "children" : [ {
                "code" : "1020200",
                "name" : "Kinderbetreuung",
                "children" : [ ]
              } ]
            }, {
              "code" : "1030000",
              "name" : "Schule, Ausbildung und Studium",
              "children" : [ {
                "code" : "1030100",
                "name" : "Schule",
                "children" : [ ]
              } ]
            } ]
          } ],
          "forms" : [ {
            "id" : "L100002.FO.c84aec1bd98b8773fad0d48c749dd1b3",
            "name" : "Schulwechsel-Formular",
            "description" : "Formular zum Beantragen des Schulwechsels",
            "mimeCode" : "text/html",
            "uri" : "https://beispiel.de/formulare/antrag-schulwechsel.pdf"
          } ],
          "suggest" : [ "Wechsel in eine andere Schulform Erlaubnis", "erlaubnis", "gymnasium", "weiterleitungsdienst", "wechsel", "sekundarschule", "wechseln", "Schulform wechseln", "sekundarstufeI", "ursprungsportal", "hauptschule", "Deep-Link", "schulform", "förderschule", "realschule", "gesamtschule", "schulberatung" ]
        },
        "properties" : {
          "name" : {
            "type" : "string",
            "description" : "leikaTextModul mit Code 03, wenn vorhanden, sonst 02"
          },
          "description" : {
            "type" : "string",
            "description" : "leikaTextModul mit Code 06"
          },
          "leikakeys" : {
            "type" : "array",
            "description" : "referenzLeiKa, xzufi:Code.LeiKaLeistung",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "sdgInformation" : {
            "type" : "array",
            "description" : "informationsbereichSDG, xzufi:Code.SDGInformationsbereich",
            "items" : {
              "$ref" : "#/components/schemas/CodelistEntry_Detail"
            },
            "uniqueItems" : true
          },
          "id" : {
            "type" : "string",
            "description" : "id, xzufi:Identifikator"
          },
          "languageCode" : {
            "type" : "string",
            "description" : "Der Sprachcode aus sprachversion.languageCode"
          },
          "timestamp" : {
            "type" : "string",
            "format" : "date-time",
            "description" : "Zeitpunkt, an dem der Datensatz im Suchdienst erstellt wurde"
          },
          "ars" : {
            "type" : "array",
            "description" : "gueltigkeitGebietID, xzufi:Identifikator",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "sourcePortals" : {
            "type" : "array",
            "description" : "modulUrsprungsportal, xzufi:UrsprungsportalModul",
            "items" : {
              "$ref" : "#/components/schemas/SourcePortal_Detail"
            }
          },
          "languageComplete" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "boolean"
            },
            "description" : "Vollständigkeit der Felder zu einer Sprache"
          },
          "availableLanguages" : {
            "type" : "array",
            "description" : "Verfügbare Sprachen aus \"sprachversion\"",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "organisationIds" : {
            "type" : "array",
            "description" : "IDs der für diese Leistung zuständigen Organisationseinheiten",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "lastUpdate" : {
            "type" : "string",
            "format" : "date-time",
            "description" : "Zeitpunkt, an dem der Datensatz im Suchdienst empfangen wurde"
          },
          "externalLastUpdate" : {
            "type" : "string",
            "format" : "date-time",
            "description" : "versionsinformation, xzufi:Versionsinformation"
          },
          "addressees" : {
            "type" : "array",
            "description" : "leistungsadressat, xzufi:Code.Leistungsadressat",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "arsFederalstate" : {
            "type" : "array",
            "description" : "ARS der zugehörigen Bundesländer",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "validFrom" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "Da es mehr als ein Gültigkeitsdatum geben kann, ist dieses Feld deprecated"
          },
          "validTo" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "Da es mehr als ein Gültigkeitsdatum geben kann, ist dieses Feld deprecated"
          },
          "validityPeriods" : {
            "type" : "array",
            "description" : "gueltigkeit, xzufi:Zeitraum",
            "items" : {
              "$ref" : "#/components/schemas/ValidityPeriodOutModel_Detail"
            }
          },
          "synonyms" : {
            "type" : "array",
            "description" : "Titel aus modulUrsprungsportal, Inhalt für Code 02 und 03 aus modulText, Begriff aus modulBegriffImKontext, zusätzlich gefüllt mit denselben Feldern aus der Spezialisierung",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "details" : {
            "type" : "array",
            "description" : "[modulText, xzufi:Textmodul ; modulKosten, xzufi:Kostenmodul ; modulFrist, xzufi:Fristmodul ; modulDokument, xzufi:Dokumentmodul ; modulTextIndividuell, xzufi:TextmodulIndividuell]",
            "items" : {
              "oneOf" : [ {
                "$ref" : "#/components/schemas/SeDeBlockModuleDetail_Detail"
              }, {
                "$ref" : "#/components/schemas/SeDeBlockModule_Detail"
              } ]
            }
          },
          "typing" : {
            "type" : "array",
            "description" : "typisierung, xzufi:Code.LeiKaTypisierung",
            "items" : {
              "$ref" : "#/components/schemas/LeikaTyping_Detail"
            }
          },
          "onlineServiceLinks" : {
            "type" : "array",
            "description" : "Zugehörige Onlinedienste",
            "items" : {
              "$ref" : "#/components/schemas/OdOutModelV4_Detail"
            }
          },
          "personalMatters" : {
            "type" : "array",
            "description" : "Enthält Lebenslagen",
            "items" : {
              "$ref" : "#/components/schemas/LifeSituationOutModel_Detail"
            }
          },
          "forms" : {
            "type" : "array",
            "description" : "Zugehörige Formulare",
            "items" : {
              "$ref" : "#/components/schemas/FoOutModel_Detail"
            }
          },
          "suggest" : {
            "type" : "array",
            "description" : "Titel aus modulUrsprungsportal, Inhalt für Code 02 und 03 aus modulText, Begriff aus modulBegriffImKontext, zusätzlich gefüllt mit denselben Feldern aus der Spezialisierung",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          }
        },
        "required" : [ "id", "lastUpdate", "name" ]
      },
      "SeDeBlockModuleDetail_Detail" : {
        "allOf" : [ {
          "$ref" : "#/components/schemas/SeDeBlock_Detail"
        }, {
          "type" : "object",
          "properties" : {
            "details" : {
              "type" : "array",
              "items" : {
                "$ref" : "#/components/schemas/SeDeBlockModule_Detail"
              }
            },
            "placeholder" : {
              "type" : "boolean"
            }
          }
        } ],
        "required" : [ "@type", "code", "filled", "placeholder", "replace", "title" ]
      },
      "SeDeBlockModule_Detail" : {
        "allOf" : [ {
          "$ref" : "#/components/schemas/SeDeBlock_Detail"
        }, {
          "type" : "object",
          "properties" : {
            "additionalInformation" : {
              "type" : "array",
              "description" : "Zusatzinformationen aus Modulen",
              "items" : {
                "$ref" : "#/components/schemas/KeyValueObject_Detail"
              }
            }
          }
        } ],
        "required" : [ "@type", "code", "filled", "replace", "title" ]
      },
      "SeDeBlock_Detail" : {
        "type" : "object",
        "discriminator" : {
          "propertyName" : "@type",
          "mapping" : {
            "_module" : "#/components/schemas/SeDeBlockModule",
            "_moduleDetail" : "#/components/schemas/SeDeBlockModuleDetail"
          }
        },
        "properties" : {
          "title" : {
            "type" : "string",
            "description" : "Inhalt der Codeliste für den Code in leikaTextmodul"
          },
          "text" : {
            "type" : "string",
            "description" : "inhalt, xzufi:String.Localized"
          },
          "links" : {
            "type" : "array",
            "description" : "weiterfuehrenderLink, xzufi:HyperlinkErweitert",
            "items" : {
              "$ref" : "#/components/schemas/AdditionalLink_Detail"
            }
          },
          "replace" : {
            "type" : "boolean",
            "description" : "Zeigt an, ob ersetzende Spezialisierung",
            "example" : false
          },
          "code" : {
            "type" : "string",
            "description" : "leikaTextmodul, xzufi:Code.Leistungstextmodul"
          },
          "filled" : {
            "type" : "boolean",
            "description" : "Zeigt an, ob das Modul mindestens minimalen Inhalt aufweist"
          },
          "placeholder" : {
            "type" : "boolean",
            "description" : "Zeigt an, ob das Modul erzeugt wurde, um Anforderungen an Vollständigkeit zu genügen"
          },
          "@type" : {
            "type" : "string",
            "description" : "Discriminator zur Feststellung des spezifischen Subtyps",
            "readOnly" : true
          },
          "xZufiCategory" : {
            "$ref" : "#/components/schemas/XZufiCategory_Detail",
            "description" : "XZuFi Kategorie",
            "example" : "TEXT_MODUL"
          }
        },
        "required" : [ "@type", "code", "filled", "replace", "title" ],
        "title" : "Service Description (detail block)"
      },
      "SourcePortal_Detail" : {
        "type" : "object",
        "properties" : {
          "title" : {
            "type" : "string",
            "description" : "titel, xs:string"
          },
          "uri" : {
            "type" : "string",
            "description" : "uri, xs:anyURI"
          },
          "replace" : {
            "type" : "boolean",
            "description" : "Ersetzungs-Flag, falls das Modul aus einer Spezialisierung kommt"
          }
        },
        "required" : [ "replace", "uri" ]
      },
      "ValidityPeriodOutModel_Detail" : {
        "type" : "object",
        "properties" : {
          "validFrom" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "beginn, xs:date"
          },
          "validTo" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "ende, xs:date"
          }
        },
        "required" : [ "validFrom", "validTo" ]
      },
      "XZufiCategory_Detail" : {
        "type" : "string",
        "enum" : [ "BEARBEITUNGSDAUER", "BEGRIFF_IM_KONTEXT", "DOKUMENT", "FRIST", "KOSTEN", "TEXT_MODUL_INDIVIDUELL", "TEXT_MODUL", "FACHLICHE_FREIGABE", "URSPRUNGSPORTAL_MODUL" ]
      },
      "ErrorModel_Detail" : {
        "type" : "object",
        "description" : "Fehlerinformationen",
        "example" : {
          "timestamp" : "2022-07-19T07:56:29.263780500Z",
          "code" : "BAD_REQUEST",
          "message" : "Die übermittelten Request-Pfad-Parameter entsprechen nicht den Anforderungen.",
          "codeNumber" : 1901
        },
        "properties" : {
          "timestamp" : {
            "type" : "string",
            "format" : "date-time"
          },
          "code" : {
            "type" : "string",
            "enum" : [ "ELSE_IO_ERROR", "JSON_IO_ERROR", "ELSE_POINT_IN_TIME_ERROR", "FAILURE_RESPONSE", "XZUFI_UNEXPECTED_FORMAT", "XZUFI_IMPORT_ERROR", "IMPORT_QUEUE", "IMPORT_QUEUE_STORAGE_FULL", "SEARCH_UNEXPECTED_RESULT", "MISSING_RESOURCE", "UNKNOWN_ERROR", "BAD_REQUEST", "BAD_JSON_REQUEST", "BAD_JSON_PROP_REQUEST", "NO_MASTER", "NO_INSTANCETYPE", "NOT_FOUND", "INVALID_CSV", "MISSING_HEADER", "MESSAGE_NOT_READABLE", "CODELIST_DOWNLOAD", "FORBIDDEN", "VIRUS_DETECTED", "VIRUS_SCANNER_ERROR", "INVALID_FILE", "CLIENT_ABORT", "CSV_CREATION_ERROR", "UNAUTHORIZED", "CONFLICT", "ENDPOINT_UNAVAILABLE", "IMPORT_RUNNING", "THREAD_ERROR", "GEO_REQUEST_ERROR" ]
          },
          "message" : {
            "type" : "string"
          },
          "codeNumber" : {
            "type" : "integer",
            "format" : "int32"
          }
        }
      },
      "ErrorModel" : {
        "type" : "object",
        "description" : "Fehlerinformationen",
        "example" : {
          "timestamp" : "2022-07-19T07:56:29.263780500Z",
          "code" : "BAD_REQUEST",
          "message" : "Die übermittelten Request-Pfad-Parameter entsprechen nicht den Anforderungen.",
          "codeNumber" : 1901
        },
        "properties" : {
          "timestamp" : {
            "type" : "string",
            "format" : "date-time"
          },
          "code" : {
            "type" : "string",
            "enum" : [ "ELSE_IO_ERROR", "JSON_IO_ERROR", "ELSE_POINT_IN_TIME_ERROR", "FAILURE_RESPONSE", "XZUFI_UNEXPECTED_FORMAT", "XZUFI_IMPORT_ERROR", "IMPORT_QUEUE", "IMPORT_QUEUE_STORAGE_FULL", "SEARCH_UNEXPECTED_RESULT", "MISSING_RESOURCE", "UNKNOWN_ERROR", "BAD_REQUEST", "BAD_JSON_REQUEST", "BAD_JSON_PROP_REQUEST", "NO_MASTER", "NO_INSTANCETYPE", "NOT_FOUND", "INVALID_CSV", "MISSING_HEADER", "MESSAGE_NOT_READABLE", "CODELIST_DOWNLOAD", "FORBIDDEN", "VIRUS_DETECTED", "VIRUS_SCANNER_ERROR", "INVALID_FILE", "CLIENT_ABORT", "CSV_CREATION_ERROR", "UNAUTHORIZED", "CONFLICT", "ENDPOINT_UNAVAILABLE", "IMPORT_RUNNING", "THREAD_ERROR", "GEO_REQUEST_ERROR" ]
          },
          "message" : {
            "type" : "string"
          },
          "codeNumber" : {
            "type" : "integer",
            "format" : "int32"
          }
        }
      },
      "AdditionalInformation_Detail" : {
        "type" : "object",
        "properties" : {
          "type" : {
            "type" : "string",
            "enum" : [ "INFO_OTHER", "INFO_TIMES" ]
          },
          "title" : {
            "type" : "string"
          },
          "text" : {
            "type" : "string"
          },
          "additionalInformation" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/KeyValueObject_Detail"
            }
          }
        }
      },
      "Address_Detail" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "city" : {
            "type" : "string"
          },
          "houseNumber" : {
            "type" : "string"
          },
          "type" : {
            "type" : "string"
          },
          "zip" : {
            "type" : "string"
          },
          "street" : {
            "type" : "string"
          },
          "postbox" : {
            "type" : "string"
          },
          "geo" : {
            "$ref" : "#/components/schemas/GeoLocation_Detail"
          },
          "additional" : {
            "type" : "string"
          },
          "accessible" : {
            "type" : "string"
          },
          "oepnv" : {
            "type" : "string"
          },
          "parking" : {
            "type" : "string"
          },
          "wheelchairAccessible" : {
            "type" : "boolean"
          },
          "lift" : {
            "type" : "boolean"
          }
        }
      },
      "BankAccount_Detail" : {
        "type" : "object",
        "properties" : {
          "receiver" : {
            "type" : "string",
            "description" : "empfaenger, xoev-lx:String.Latin"
          },
          "iban" : {
            "type" : "string",
            "description" : "iban, xoev-lx:String.Latin"
          },
          "bankName" : {
            "type" : "string",
            "description" : "bankinstitut, xoev-lx:String.Latin"
          },
          "description" : {
            "type" : "string",
            "description" : "beschreibung, xzufi:String.Localized"
          },
          "bic" : {
            "type" : "string",
            "description" : "bic, xoev-lx:String.Latin"
          }
        }
      },
      "Communication_Detail" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "value" : {
            "type" : "string"
          },
          "valueAdditional" : {
            "type" : "string"
          },
          "additional" : {
            "type" : "string"
          }
        },
        "required" : [ "name" ]
      },
      "ContactOutModelV4_Detail" : {
        "type" : "object",
        "properties" : {
          "title" : {
            "type" : "string",
            "description" : "titel, xzufi:String.Localized"
          },
          "salutation" : {
            "type" : "string",
            "description" : "anrede, xzufi:String.Localized"
          },
          "name" : {
            "type" : "string",
            "description" : "vorname, xoev-lc:String.Latin"
          },
          "lastname" : {
            "type" : "string",
            "description" : "familienname, xoev-lc:String.Latin"
          },
          "room" : {
            "type" : "string",
            "description" : "raum, xoev-lc:String.Latin"
          },
          "position" : {
            "type" : "string",
            "description" : "position, xzufi:String.Localized"
          },
          "speakingTimes" : {
            "type" : "string",
            "description" : "sprechzeiten, xzufi:String.Localized"
          },
          "location" : {
            "$ref" : "#/components/schemas/Location_Detail",
            "description" : "Enthält Daten aus XZuFi 2.2.0 \"anschrift\" und \"erreichbarkeit\""
          },
          "relations" : {
            "type" : "array",
            "description" : "zustaendigkeit, xzufi:ZustaendigkeitPerson",
            "items" : {
              "$ref" : "#/components/schemas/ZustaendigkeitEntity_Detail"
            },
            "uniqueItems" : true
          },
          "additionalLinks" : {
            "type" : "array",
            "description" : "internetadresse, xzufi:HyperlinkErweitert",
            "items" : {
              "$ref" : "#/components/schemas/AdditionalLink_Detail"
            }
          },
          "publisher" : {
            "$ref" : "#/components/schemas/Publisher_Detail",
            "description" : "herausgeber, xzufi:Herausgeber"
          }
        },
        "required" : [ "location" ]
      },
      "DetailOeOutModelV5_Detail" : {
        "type" : "object",
        "description" : "Organisationseinheit",
        "example" : {
          "id" : "L100042.OE.868",
          "languages" : [ "de" ],
          "lastUpdate" : "2022-10-10T09:12:27.031512400Z",
          "languageComplete" : { },
          "title" : "Landgericht München I",
          "internetAddresses" : [ {
            "uri" : "https://example.com/index.html",
            "title" : "Landgericht München I",
            "description" : "Website des Landgerichts München"
          } ],
          "nestedForms" : [ {
            "id" : "L100002.FO.12345",
            "name" : "Einreichung Antrag",
            "description" : "Einreichung eines Antrags ",
            "uri" : "https://example.com/formulare/antrag.pdf"
          } ],
          "employees" : [ ],
          "additionalInformation" : [ ],
          "bankAccounts" : [ ],
          "location" : {
            "urls" : [ ],
            "information" : [ ],
            "addresses" : [ {
              "code" : "001",
              "city" : "München",
              "type" : "Hausanschrift",
              "zip" : "80335",
              "street" : "Prielmayerstr. 7",
              "geo" : {
                "longitude" : "11.564538874129338",
                "latitude" : "48.14029082463299",
                "system" : "EPSG:4326"
              }
            }, {
              "code" : "003",
              "city" : "München",
              "type" : "Postfach",
              "zip" : "80316",
              "postbox" : "1234567"
            } ],
            "communications" : [ {
              "code" : "02",
              "name" : "Telefon Festnetz",
              "value" : "+49 89 5597-03",
              "additional" : ""
            }, {
              "code" : "01",
              "name" : "E-Mail",
              "value" : "Poststelle@lg-m1.bayern.de",
              "additional" : ""
            }, {
              "code" : "04",
              "name" : "Fax",
              "value" : "+49 89 5597-2991",
              "additional" : ""
            } ]
          },
          "communicationSystems" : [ ],
          "role" : {
            "name" : "Code 01 konnte nicht aufgelöst werden.",
            "code" : "01"
          }
        },
        "properties" : {
          "id" : {
            "type" : "string",
            "description" : "id, xzufi:Identifikator"
          },
          "languages" : {
            "type" : "array",
            "description" : "sprachversion, xzufi:Sprachversion",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "lastUpdate" : {
            "type" : "string",
            "format" : "date-time",
            "description" : "Zeitpunkt, an dem der Datensatz im Suchdienst empfangen wurde"
          },
          "languageComplete" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "boolean"
            },
            "description" : "Vollständigkeit der Felder zu einer Sprache"
          },
          "description" : {
            "type" : "string",
            "description" : "beschreibung, xzufi:String.Localized"
          },
          "shortDescription" : {
            "type" : "string",
            "description" : "kurzbeschreibung, xzufi:String.Localized"
          },
          "additionalInformation" : {
            "type" : "array",
            "description" : "Enthält Daten aus XZuFi 2.2.0 \"infoOeffnungszeitenText\" und \"infoOeffnungszeitenStrukturiert\"",
            "items" : {
              "$ref" : "#/components/schemas/AdditionalInformation_Detail"
            }
          },
          "bankAccounts" : {
            "type" : "array",
            "description" : "bankverbindung, xzufi:Bankverbindung",
            "items" : {
              "$ref" : "#/components/schemas/BankAccount_Detail"
            }
          },
          "location" : {
            "$ref" : "#/components/schemas/Location_Detail",
            "description" : "Enthält Daten aus XZuFi 2.2.0 \"anschrift\" und \"erreichbarkeit\""
          },
          "communicationSystems" : {
            "type" : "array",
            "description" : "Enthält Daten aus XZuFi 2.2.0 \"kommunikationssystem\"",
            "items" : {
              "$ref" : "#/components/schemas/Communication_Detail"
            },
            "uniqueItems" : true
          },
          "role" : {
            "$ref" : "#/components/schemas/ResponsibilityRole_Detail",
            "description" : "Kommt aus XZuFi 2.2.0 \"ZustaendigkeitOrganisationseinheit:rolle\""
          },
          "employees" : {
            "type" : "array",
            "description" : "kontaktperson, xzufi:Kontaktperson",
            "items" : {
              "$ref" : "#/components/schemas/ContactOutModelV4_Detail"
            }
          },
          "publisher" : {
            "$ref" : "#/components/schemas/Publisher_Detail",
            "description" : "herausgeber, xzufi:Herausgeber"
          },
          "nestedForms" : {
            "type" : "array",
            "description" : "Zugehörige Formulare, xzufi:formular",
            "items" : {
              "$ref" : "#/components/schemas/FoOutModel_Detail"
            }
          },
          "internetAddresses" : {
            "type" : "array",
            "description" : "Internet-Links, xzufi:internetAdresse",
            "items" : {
              "$ref" : "#/components/schemas/HyperLink_Detail"
            }
          },
          "title" : {
            "type" : "string",
            "description" : "name, xzufi:NameOrganisation"
          }
        },
        "required" : [ "id", "lastUpdate", "location", "role" ]
      },
      "GeoLocation_Detail" : {
        "type" : "object",
        "properties" : {
          "longitude" : {
            "type" : "string",
            "description" : "Geographische Länge"
          },
          "latitude" : {
            "type" : "string",
            "description" : "Geographische Breite"
          },
          "system" : {
            "type" : "string"
          }
        },
        "required" : [ "latitude", "longitude" ]
      },
      "HyperLink_Detail" : {
        "type" : "object",
        "properties" : {
          "uri" : {
            "type" : "string",
            "description" : "uri, xs:anyURI"
          },
          "title" : {
            "type" : "string",
            "description" : "titel, xs:string"
          },
          "description" : {
            "type" : "string",
            "description" : "beschreibung, xs:string"
          }
        },
        "required" : [ "uri" ]
      },
      "Information_Detail" : {
        "type" : "object",
        "properties" : {
          "title" : {
            "type" : "string"
          },
          "text" : {
            "type" : "string"
          },
          "informationContents" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Information_Detail"
            }
          }
        }
      },
      "Location_Detail" : {
        "type" : "object",
        "properties" : {
          "urls" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/AdditionalLink_Detail"
            }
          },
          "information" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Information_Detail"
            }
          },
          "addresses" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Address_Detail"
            }
          },
          "communications" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Communication_Detail"
            }
          }
        }
      },
      "Publisher_Detail" : {
        "type" : "object",
        "properties" : {
          "name" : {
            "type" : "array",
            "description" : "bezeichnung, xoev-lc:String.Latin",
            "items" : {
              "type" : "string"
            }
          },
          "shortName" : {
            "type" : "array",
            "description" : "kurzbezeichnung, xoev-lc:String.Latin",
            "items" : {
              "type" : "string"
            }
          },
          "description" : {
            "type" : "string",
            "description" : "beschreibung, xzufi:String.Localized"
          }
        }
      },
      "ResponsibilityRole_Detail" : {
        "type" : "object",
        "properties" : {
          "name" : {
            "type" : "string"
          },
          "code" : {
            "type" : "string",
            "description" : "Code aus einer Codeliste"
          }
        },
        "required" : [ "code" ]
      },
      "ValidityPeriod_Detail" : {
        "type" : "object",
        "properties" : {
          "gte" : {
            "type" : "string",
            "format" : "date",
            "description" : "beginn, xs:date"
          },
          "lte" : {
            "type" : "string",
            "format" : "date",
            "description" : "ende, xs:date"
          }
        }
      },
      "ZustaendigkeitEntity_Detail" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "lbId" : {
            "type" : "string"
          },
          "ars" : {
            "type" : "string"
          },
          "lastUpdate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "parentId" : {
            "type" : "string"
          },
          "responsibility" : {
            "$ref" : "#/components/schemas/ResponsibilityRole_Detail"
          },
          "typ" : {
            "type" : "string",
            "enum" : [ "ORGANISATION", "ONLINESERVICE", "FORM", "UNKOWN" ]
          },
          "arsFederalState" : {
            "type" : "string"
          },
          "validityPeriods" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/ValidityPeriod_Detail"
            }
          }
        }
      },
      "CodeListValue" : {
        "type" : "object",
        "properties" : {
          "key" : {
            "type" : "string"
          },
          "value" : {
            "type" : "string"
          },
          "locale" : {
            "type" : "string"
          }
        }
      },
      "CodelistEntry" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "uri" : {
            "type" : "string"
          },
          "version" : {
            "type" : "string"
          },
          "code" : {
            "type" : "string"
          },
          "key" : {
            "$ref" : "#/components/schemas/CodelistKey"
          },
          "texts" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "string"
            }
          },
          "comments" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "string"
            }
          },
          "values" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/CodeListValue"
            }
          }
        }
      },
      "CodelistKey" : {
        "type" : "object",
        "properties" : {
          "uri" : {
            "type" : "string"
          },
          "version" : {
            "type" : "string"
          },
          "code" : {
            "type" : "string"
          }
        }
      },
      "LeikaTyping" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string"
          },
          "listVersionID" : {
            "type" : "string"
          }
        }
      },
      "NationalityCode" : {
        "type" : "object",
        "properties" : {
          "destatisCode" : {
            "type" : "string"
          },
          "iso2Code" : {
            "type" : "string"
          }
        }
      },
      "OdOutModel" : {
        "type" : "object",
        "properties" : {
          "uri" : {
            "type" : "string",
            "description" : "uri, xs:anyURI"
          },
          "title" : {
            "type" : "string",
            "description" : "titel, xs:string"
          },
          "description" : {
            "type" : "string",
            "description" : "beschreibung, xs:string"
          },
          "replace" : {
            "type" : "boolean",
            "description" : "Ersetzungs-Flag, falls das Objekt aus einer Spezialisierung kommt"
          },
          "dynamicParameters" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/OnlinedienstDynamischerParameter"
            }
          },
          "id" : {
            "type" : "string",
            "description" : "id, xzufi:Identifikator"
          },
          "validFrom" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "Da es mehr als ein Gültigkeitsdatum geben kann, ist dieses Feld deprecated"
          },
          "validTo" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "Da es mehr als ein Gültigkeitsdatum geben kann, ist dieses Feld deprecated"
          },
          "validityPeriods" : {
            "type" : "array",
            "description" : "gueltigkeit, xzufi:Zeitraum",
            "items" : {
              "$ref" : "#/components/schemas/ValidityPeriodOutModel"
            }
          },
          "executionLanguages" : {
            "type" : "array",
            "items" : {
              "type" : "string",
              "uniqueItems" : true
            },
            "uniqueItems" : true
          },
          "executionNationalities" : {
            "type" : "array",
            "description" : "durchfuehrungStaatsangehoerigkeit, xzufi:Code.StaatsangehoerigkeitDestatis",
            "items" : {
              "$ref" : "#/components/schemas/NationalityCode"
            },
            "uniqueItems" : true
          },
          "levelOfConfidence" : {
            "type" : "string",
            "description" : "vertrauensniveau, xzufi:Code.Vertrauensniveau",
            "example" : "00"
          }
        },
        "required" : [ "uri" ]
      },
      "ResultPagePageable" : {
        "type" : "object",
        "properties" : {
          "unpaged" : {
            "type" : "boolean"
          },
          "pageNumber" : {
            "type" : "integer",
            "format" : "int64"
          },
          "paged" : {
            "type" : "boolean"
          },
          "pageSize" : {
            "type" : "integer",
            "format" : "int64"
          },
          "offset" : {
            "type" : "integer",
            "format" : "int64"
          },
          "sort" : {
            "$ref" : "#/components/schemas/ResultPagePageableSort"
          }
        }
      },
      "ResultPagePageableSort" : {
        "type" : "object",
        "properties" : {
          "sorted" : {
            "type" : "boolean"
          },
          "unsorted" : {
            "type" : "boolean"
          },
          "empty" : {
            "type" : "boolean"
          }
        }
      },
      "ResultPageSdOutModelV7" : {
        "type" : "object",
        "properties" : {
          "content" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/SdOutModelV7"
            }
          },
          "empty" : {
            "type" : "boolean"
          },
          "totalPages" : {
            "type" : "integer",
            "format" : "int32"
          },
          "numberOfElements" : {
            "type" : "integer",
            "format" : "int32"
          },
          "totalElements" : {
            "type" : "integer",
            "format" : "int64"
          },
          "first" : {
            "type" : "boolean"
          },
          "last" : {
            "type" : "boolean"
          },
          "pageable" : {
            "$ref" : "#/components/schemas/ResultPagePageable"
          }
        }
      },
      "SdOutModelV7" : {
        "type" : "object",
        "description" : "Dienstbeschreibung-Ausgabe",
        "example" : {
          "name" : "Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung",
          "description" : "<p>Die Berufsbezeichnung &#34;Ingenieurin&#34; oder &#34;Ingenieur&#34; ist nach dem Ingenieurgesetz Schleswig-Holstein (IngG) gesetzlich geschützt. Diesen Titel - allein oder in einer Wortverbindung - darf führen,</p> <ol><li>wer ein Studium einer technischen oder technisch-naturwissenschaftlichen Fachrichtung mit einer Regelstudienzeit von mindestens sechs Semestern in Vollzeit oder während einer entsprechenden Gesamtdauer in Teilzeit an einer deutschen, staatlichen oder staatlich anerkannten Universität, Fachhochschule oder Berufsakademie mit Erfolg abgeschlossen hat, wobei dieser Studiengang überwiegend von den Bereichen Mathematik, Informatik, Naturwissenschaften und Technik geprägt sein muss; für die Bezeichnung &#34;Wirtschaftsingenieurin&#34; oder &#34;Wirtschaftsingenieur&#34; muss der Studiengang von diesen Fächern zumindest geprägt sein,</li><li>wer von der zuständigen Stelle die Genehmigung hierzu erhalten hat,</li><li>wer nach dem Recht eines anderen Landes der Bundesrepublik Deutschland zur Führung dieser Berufsbezeichnung berechtigt ist oder</li><li>wer bis zum Inkrafttreten dieses Gesetzes bereits berechtigt war, die Berufsbezeichnung zu führen.</li></ol> <p>Bezeichnungen, die auf wirtschaftlich tätige Zusammenschlüsse (&#34;Ingenieurbüro&#34; o.ä.) hinweisen, dürfen in Verbindung mit der Berufsbezeichnung nach Absatz 1 oder ähnlichen Bezeichnungen nur geführt werden, wenn mindestens die Hälfte der Mitglieder des Vorstands, der Geschäftsführung oder der Personen, die mindestens über die Hälfte der Stimmrechte verfügen, zur Führung der Berufsbezeichnung berechtigt sind.</p> <p>Eine Genehmigung können Personen aus einem Mitgliedstaat der Europäischen Union, einem Vertragsstaat des Abkommens über den Europäischen Wirtschaftsraum oder einem sonstigen durch Abkommen gleichgestellten Staat (Mitglieds- oder Vertragsstaat) beantragen, wenn sie in Schleswig-Holstein ihre Hauptwohnung, ihre Hauptniederlassung oder ihre überwiegende berufliche Beschäftigung haben.</p> <p>Die für eine Genehmigung erforderlichen Befähigungs- oder Ausbildungsnachweise und/oder Berufserfahrungen hängen davon ab, ob der Beruf im Herkunftsland reglementiert ist oder nicht.</p> <p>Die zuständige Stelle (s.u.) kann bei wesentlichen Qualifikationsunterschieden Ausgleichsmaßnahmen in Form von Anpassungslehrgängen oder Eignungsprüfungen verlangen.</p> <p>Rechtfertigen Tatsachen die Annahme, dass die erforderliche fachliche Kenntnis fehlt oder Leben und Gesundheit von Menschen erheblich gefährdet sind, dann kann das Führen der Berufsbezeichnung durch die zuständige Behörde untersagt werden.</p> <p>Eine Genehmigung können Personen aus einem Mitgliedstaat der Europäischen Union, einem Vertragsstaat des Abkommens über den Europäischen Wirtschaftsraum oder einem sonstigen Abkommen gleichgestellten</p> <p>Rechtfertigen Tatsachen die Annahme, dass die erforderliche fachliche Kenntnis fehlt oder Leben und Gesundheit von Menschen erheblich gefährdet sind, dann kann das Führen der Berufsbezeichnung durch die zuständige Behörde untersagt werden.</p>",
          "leikakeys" : [ "99147006067000" ],
          "sdgInformation" : [ ],
          "id" : "L100012.LB.9413106",
          "languageCode" : "de",
          "timestamp" : "2022-07-14T15:13:24.045997200Z",
          "ars" : [ "010000000000" ],
          "sourcePortals" : [ ],
          "languageComplete" : { },
          "availableLanguages" : [ "de" ],
          "organisationIds" : [ ],
          "lastUpdate" : "2022-07-14T15:13:24.045997200Z",
          "externalLastUpdate" : "2021-03-11T11:47:51Z",
          "addressees" : [ ],
          "arsFederalstate" : [ "01" ],
          "validFrom" : "1970-01-01",
          "validTo" : "2999-12-31",
          "validityPeriods" : [ {
            "validFrom" : "1970-01-01",
            "validTo" : "2999-12-31"
          } ],
          "synonyms" : [ "the", "take", "berufsbezeichnung", "erlaubnis", "Ingenieur  Ingenieurin Erlaubnis zum Führen der Berufsbezeichnung", "führen", "ingenieur", "permission", "title", "engineer", "professional" ],
          "typing" : [ {
            "code" : "4",
            "name" : "Regelungskompetenz auf Landesebene",
            "listURI" : "urn:de:fim:leika:typisierung",
            "listVersionID" : "20201204"
          } ],
          "onlineServiceLinks" : [ ],
          "teaser" : "Teaser",
          "suggest" : [ "the", "take", "berufsbezeichnung", "erlaubnis", "Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung", "führen", "ingenieur", "permission", "title", "engineer", "professional" ]
        },
        "properties" : {
          "name" : {
            "type" : "string",
            "description" : "leikaTextModul mit Code 03, wenn vorhanden, sonst 02"
          },
          "description" : {
            "type" : "string",
            "description" : "leikaTextModul mit Code 06"
          },
          "leikakeys" : {
            "type" : "array",
            "description" : "referenzLeiKa, xzufi:Code.LeiKaLeistung",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "sdgInformation" : {
            "type" : "array",
            "description" : "informationsbereichSDG, xzufi:Code.SDGInformationsbereich",
            "items" : {
              "$ref" : "#/components/schemas/CodelistEntry"
            },
            "uniqueItems" : true
          },
          "id" : {
            "type" : "string",
            "description" : "id, xzufi:Identifikator"
          },
          "languageCode" : {
            "type" : "string",
            "description" : "Der Sprachcode aus sprachversion.languageCode"
          },
          "timestamp" : {
            "type" : "string",
            "format" : "date-time",
            "description" : "Zeitpunkt, an dem der Datensatz im Suchdienst erstellt wurde"
          },
          "ars" : {
            "type" : "array",
            "description" : "gueltigkeitGebietID, xzufi:Identifikator",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "sourcePortals" : {
            "type" : "array",
            "description" : "modulUrsprungsportal, xzufi:UrsprungsportalModul",
            "items" : {
              "$ref" : "#/components/schemas/SourcePortal"
            }
          },
          "languageComplete" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "boolean"
            },
            "description" : "Vollständigkeit der Felder zu einer Sprache"
          },
          "availableLanguages" : {
            "type" : "array",
            "description" : "Verfügbare Sprachen aus \"sprachversion\"",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "organisationIds" : {
            "type" : "array",
            "description" : "IDs der für diese Leistung zuständigen Organisationseinheiten",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "lastUpdate" : {
            "type" : "string",
            "format" : "date-time",
            "description" : "Zeitpunkt, an dem der Datensatz im Suchdienst empfangen wurde"
          },
          "externalLastUpdate" : {
            "type" : "string",
            "format" : "date-time",
            "description" : "versionsinformation, xzufi:Versionsinformation"
          },
          "addressees" : {
            "type" : "array",
            "description" : "leistungsadressat, xzufi:Code.Leistungsadressat",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "arsFederalstate" : {
            "type" : "array",
            "description" : "ARS der zugehörigen Bundesländer",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "validFrom" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "Da es mehr als ein Gültigkeitsdatum geben kann, ist dieses Feld deprecated"
          },
          "validTo" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "Da es mehr als ein Gültigkeitsdatum geben kann, ist dieses Feld deprecated"
          },
          "validityPeriods" : {
            "type" : "array",
            "description" : "gueltigkeit, xzufi:Zeitraum",
            "items" : {
              "$ref" : "#/components/schemas/ValidityPeriodOutModel"
            }
          },
          "synonyms" : {
            "type" : "array",
            "description" : "Titel aus modulUrsprungsportal, Inhalt für Code 02 und 03 aus modulText, Begriff aus modulBegriffImKontext, zusätzlich gefüllt mit denselben Feldern aus der Spezialisierung",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "details" : {
            "type" : "array",
            "description" : "[modulText, xzufi:Textmodul ; modulKosten, xzufi:Kostenmodul ; modulFrist, xzufi:Fristmodul ; modulDokument, xzufi:Dokumentmodul ; modulTextIndividuell, xzufi:TextmodulIndividuell]",
            "items" : {
              "oneOf" : [ {
                "$ref" : "#/components/schemas/SeDeBlockModule"
              }, {
                "$ref" : "#/components/schemas/SeDeBlockModuleDetail"
              } ]
            }
          },
          "typing" : {
            "type" : "array",
            "description" : "typisierung, xzufi:Code.LeiKaTypisierung",
            "items" : {
              "$ref" : "#/components/schemas/LeikaTyping"
            }
          },
          "onlineServiceLinks" : {
            "type" : "array",
            "description" : "Zugehörige Onlinedienste",
            "items" : {
              "$ref" : "#/components/schemas/OdOutModel"
            }
          },
          "teaser" : {
            "type" : "string",
            "description" : "Inhalt aus modulText mit Code 24"
          },
          "suggest" : {
            "type" : "array",
            "description" : "Titel aus modulUrsprungsportal, Inhalt für Code 02 und 03 aus modulText, Begriff aus modulBegriffImKontext, zusätzlich gefüllt mit denselben Feldern aus der Spezialisierung",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          }
        },
        "required" : [ "id", "lastUpdate", "name" ]
      },
      "SeDeBlock" : {
        "type" : "object",
        "discriminator" : {
          "propertyName" : "@type",
          "mapping" : {
            "_module" : "#/components/schemas/SeDeBlockModule",
            "_moduleDetail" : "#/components/schemas/SeDeBlockModuleDetail"
          }
        },
        "properties" : {
          "title" : {
            "type" : "string",
            "description" : "Inhalt der Codeliste für den Code in leikaTextmodul"
          },
          "text" : {
            "type" : "string",
            "description" : "inhalt, xzufi:String.Localized"
          },
          "links" : {
            "type" : "array",
            "description" : "weiterfuehrenderLink, xzufi:HyperlinkErweitert",
            "items" : {
              "$ref" : "#/components/schemas/AdditionalLink"
            }
          },
          "replace" : {
            "type" : "boolean",
            "description" : "Zeigt an, ob ersetzende Spezialisierung",
            "example" : false
          },
          "code" : {
            "type" : "string",
            "description" : "leikaTextmodul, xzufi:Code.Leistungstextmodul"
          },
          "validityPeriods" : {
            "type" : "array",
            "description" : "gueltigkeit, xzufi:Zeitraum",
            "items" : {
              "$ref" : "#/components/schemas/ValidityPeriod"
            }
          },
          "filled" : {
            "type" : "boolean",
            "description" : "Zeigt an, ob das Modul mindestens minimalen Inhalt aufweist"
          },
          "placeholder" : {
            "type" : "boolean",
            "description" : "Zeigt an, ob das Modul erzeugt wurde, um Anforderungen an Vollständigkeit zu genügen"
          },
          "@type" : {
            "type" : "string",
            "description" : "Discriminator zur Feststellung des spezifischen Subtyps",
            "readOnly" : true
          },
          "xZufiCategory" : {
            "$ref" : "#/components/schemas/XZufiCategory",
            "description" : "XZuFi Kategorie",
            "example" : "TEXT_MODUL"
          }
        },
        "required" : [ "@type", "code", "filled", "replace", "title" ],
        "title" : "Service Description (detail block)"
      },
      "SourcePortal" : {
        "type" : "object",
        "properties" : {
          "title" : {
            "type" : "string",
            "description" : "titel, xs:string"
          },
          "uri" : {
            "type" : "string",
            "description" : "uri, xs:anyURI"
          },
          "replace" : {
            "type" : "boolean",
            "description" : "Ersetzungs-Flag, falls das Modul aus einer Spezialisierung kommt"
          }
        },
        "required" : [ "replace", "uri" ]
      },
      "ValidityPeriodOutModel" : {
        "type" : "object",
        "properties" : {
          "validFrom" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "beginn, xs:date"
          },
          "validTo" : {
            "type" : "string",
            "format" : "date",
            "deprecated" : true,
            "description" : "ende, xs:date"
          }
        },
        "required" : [ "validFrom", "validTo" ]
      },
      "Amount" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "number"
          },
          "currencyCode" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "Auskunftshinweismodul" : {
        "type" : "object",
        "properties" : {
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "inhalt" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "Bearbeitungsdauermodul" : {
        "type" : "object",
        "properties" : {
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bearbeitungsdauer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/FristOhneTyp"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "BegriffImKontext" : {
        "type" : "object",
        "properties" : {
          "begriff" : {
            "$ref" : "#/components/schemas/StringLocalized",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "typ" : {
            "$ref" : "#/components/schemas/CodeBegriffImKontextTyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "begriff" ]
      },
      "BegriffImKontextModul" : {
        "type" : "object",
        "properties" : {
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "begriffImKontext" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/BegriffImKontext"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "begriffImKontext" ]
      },
      "Bis" : {
        "type" : "object",
        "properties" : {
          "datum" : {
            "type" : "string",
            "description" : "Representation des Typ 'xs:date' als Zeichenkette gemäss ISO8601.",
            "example" : "1699-12-31+01:00",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "monatTag" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "tag" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "Code" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeBegriffImKontextTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeBezirkDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeBundeslandDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeDokumentTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeGemeindeschluesselDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeGemeindeteilschluessel" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeKlassifizierungBenutzerdefiniert" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeKostentyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeKreisDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeLeiKaLeistung" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeLeiKaTypisierung" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeLeistungsadressat" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeLeistungstextmodul" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeRechtsform" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeRegionalschluesselDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeSDGInformationsbereich" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeSignatur" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeStaatDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeStaatsangehoerigkeitDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeTextmodultypIndividuell" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeVertrauensniveau" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeWirtschaftszweig2008Destatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeZeiteinheit" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "Dokument" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/DokumentTypErweiterbar",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "referenzFormularID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "angabeSignatur" : {
            "$ref" : "#/components/schemas/CodeSignatur",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "bezeichnung", "typ" ]
      },
      "DokumentTypErweiterbar" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "$ref" : "#/components/schemas/CodeDokumentTyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "nichtGelisteterWert" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "Dokumentmodul" : {
        "type" : "object",
        "properties" : {
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "dokumentEingehend" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Dokument"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "dokumentAusgehend" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Dokument"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "FachlicheFreigabeModul" : {
        "type" : "object",
        "properties" : {
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "fachlichFreigegebenAm" : {
            "type" : "string",
            "description" : "Representation des Typ 'xs:date' als Zeichenkette gemäss ISO8601.",
            "example" : "1699-12-31+01:00",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "fachlichFreigegebenDurch" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "FristAuswahl" : {
        "type" : "object",
        "properties" : {
          "fristDauer" : {
            "$ref" : "#/components/schemas/FristDauer",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "fristStichtag" : {
            "$ref" : "#/components/schemas/FristStichtag",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "FristDauer" : {
        "type" : "object",
        "properties" : {
          "dauer" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "einheit" : {
            "$ref" : "#/components/schemas/CodeZeiteinheit",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "dauerBis" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "einheitBis" : {
            "$ref" : "#/components/schemas/CodeZeiteinheit",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "einheit" ]
      },
      "FristMitTyp" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/FristtypErweiterbar",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "fristauswahl" : {
            "$ref" : "#/components/schemas/FristAuswahl",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "fristauswahl", "typ" ]
      },
      "FristOhneTyp" : {
        "type" : "object",
        "properties" : {
          "fristauswahl" : {
            "$ref" : "#/components/schemas/FristAuswahl",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "fristauswahl" ]
      },
      "FristStichtag" : {
        "type" : "object",
        "properties" : {
          "von" : {
            "$ref" : "#/components/schemas/Von",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bis" : {
            "$ref" : "#/components/schemas/Bis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "Fristmodul" : {
        "type" : "object",
        "properties" : {
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "frist" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/FristMitTyp"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "FristtypErweiterbar" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "$ref" : "#/components/schemas/Code",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "nichtGelisteterWert" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "Gebiet" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "typ" : {
            "$ref" : "#/components/schemas/Gebietstyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "uebergeordnetesGebietID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "untergeordnetesGebietID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "verwaltungspolitischeKodierung" : {
            "$ref" : "#/components/schemas/VerwaltungspolitischeKodierung",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kurzbezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "versionsinformation" : {
            "$ref" : "#/components/schemas/Versionsinformation",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "bezeichnung", "id", "typ" ]
      },
      "Gebietsklasse" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "version" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kurzbezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "bezeichnung", "id" ]
      },
      "Gebietstyp" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "klasse" : {
            "$ref" : "#/components/schemas/Gebietsklasse",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kurzbezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "bezeichnung", "id", "klasse" ]
      },
      "Herausgeber" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kurzbezeichnung" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "standardZustaendigkeitsgebiet" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Gebiet"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "bezeichnung", "id" ]
      },
      "HyperlinkErweitert" : {
        "type" : "object",
        "properties" : {
          "uri" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "titel" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "languageCode" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "uri" ]
      },
      "Identifikator" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "string"
          },
          "schemeAgencyID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "schemeAgencyName" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "schemeDataURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "schemeID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "schemeName" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "schemeURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "schemeVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "Kosten" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/KostenTypErweiterbar",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kostenauswahl" : {
            "$ref" : "#/components/schemas/Kostenauswahl",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "vorkasse" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "linkKostenbildung" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "kostenauswahl", "typ" ]
      },
      "KostenFix" : {
        "type" : "object",
        "properties" : {
          "betrag" : {
            "$ref" : "#/components/schemas/Amount",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "betrag" ]
      },
      "KostenFrei" : {
        "type" : "object",
        "properties" : {
          "beschreibungKostenfreiheit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "KostenTypErweiterbar" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "$ref" : "#/components/schemas/CodeKostentyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "nichtGelisteterWert" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "KostenVariabel" : {
        "type" : "object",
        "properties" : {
          "betragUntergrenze" : {
            "$ref" : "#/components/schemas/Amount",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "betragObergrenze" : {
            "$ref" : "#/components/schemas/Amount",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibungVariabilitaet" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "Kostenauswahl" : {
        "type" : "object",
        "properties" : {
          "kostenFix" : {
            "$ref" : "#/components/schemas/KostenFix",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kostenFrei" : {
            "$ref" : "#/components/schemas/KostenFrei",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kostenVariabel" : {
            "$ref" : "#/components/schemas/KostenVariabel",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "Kostenmodul" : {
        "type" : "object",
        "properties" : {
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kosten" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Kosten"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "Leistung" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "struktur" : {
            "$ref" : "#/components/schemas/Leistungsstruktur",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "referenzLeiKa" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/CodeLeiKaLeistung"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "modulText" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Textmodul"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "modulTextIndividuell" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/TextmodulIndividuell"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "modulFrist" : {
            "$ref" : "#/components/schemas/Fristmodul",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "modulKosten" : {
            "$ref" : "#/components/schemas/Kostenmodul",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "modulBearbeitungsdauer" : {
            "$ref" : "#/components/schemas/Bearbeitungsdauermodul",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "modulBegriffImKontext" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/BegriffImKontextModul"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "modulFachlicheFreigabe" : {
            "$ref" : "#/components/schemas/FachlicheFreigabeModul",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "modulAuskunftshinweis" : {
            "$ref" : "#/components/schemas/Auskunftshinweismodul",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "modulDokument" : {
            "$ref" : "#/components/schemas/Dokumentmodul",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "modulUrsprungsportal" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/UrsprungsportalModul"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "typisierung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/CodeLeiKaTypisierung"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "vertrauensniveau" : {
            "$ref" : "#/components/schemas/CodeVertrauensniveau",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "leistungsadressat" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/CodeLeistungsadressat"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kennzeichenSchriftformerfordernis" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kategorie" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Leistungskategorie"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "klassifizierung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/CodeKlassifizierungBenutzerdefiniert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "informationsbereichSDG" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/CodeSDGInformationsbereich"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idLeistungImKontext" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idProzess" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeitGebietID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kennzeichenEA" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "relevantFuerWirtschaftszweig" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/WirtschaftszweigSpezifizierbar"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "relevantFuerRechtsform" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/CodeRechtsform"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "relevantFuerStaatsangehoerigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/CodeStaatsangehoerigkeitDestatis"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "versionsinformation" : {
            "$ref" : "#/components/schemas/Versionsinformation",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "sprachversion" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Sprachversion"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "id", "sprachversion" ]
      },
      "Leistungskategorie" : {
        "type" : "object",
        "properties" : {
          "klasse" : {
            "$ref" : "#/components/schemas/LeistungskategorieKlasse",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "uebergeordneteKategorieID" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "untergeordneteKategorieID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "bezeichnung", "id", "klasse" ]
      },
      "LeistungskategorieKlasse" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "version" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "bezeichnung", "id" ]
      },
      "Leistungsstruktur" : {
        "type" : "object"
      },
      "Sprachversion" : {
        "type" : "object",
        "properties" : {
          "languageCode" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "sprachbezeichnungDeutsch" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "sprachbezeichnungNativ" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "erstelltDatumZeit" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "erstelltDurch" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "geaendertDatumZeit" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "geaendertDurch" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "version" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "languageCode" ]
      },
      "StringLocalized" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "string"
          },
          "languageCode" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "Textmodul" : {
        "type" : "object",
        "properties" : {
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "inhalt" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "leikaTextmodul" : {
            "$ref" : "#/components/schemas/CodeLeistungstextmodul",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "leikaTextModulAbweichendeBezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "leikaTextmodul" ]
      },
      "TextmodulIndividuell" : {
        "type" : "object",
        "properties" : {
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "inhalt" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "individuellesTextmodultyp" : {
            "$ref" : "#/components/schemas/CodeTextmodultypIndividuell",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "individuellesTextmodultyp" ]
      },
      "UrsprungsportalModul" : {
        "type" : "object",
        "properties" : {
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "uri" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "titel" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "languageCode" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "uri" ]
      },
      "Versionsinformation" : {
        "type" : "object",
        "properties" : {
          "erstelltDatumZeit" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "erstelltDurch" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "geaendertDatumZeit" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "geaendertDurch" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "version" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "VerwaltungspolitischeKodierung" : {
        "type" : "object",
        "properties" : {
          "kreis" : {
            "$ref" : "#/components/schemas/CodeKreisDestatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bezirk" : {
            "$ref" : "#/components/schemas/CodeBezirkDestatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bundesland" : {
            "$ref" : "#/components/schemas/CodeBundeslandDestatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gemeindeschluessel" : {
            "$ref" : "#/components/schemas/CodeGemeindeschluesselDestatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "regionalschluessel" : {
            "$ref" : "#/components/schemas/CodeRegionalschluesselDestatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gemeindeteilschluessel" : {
            "$ref" : "#/components/schemas/CodeGemeindeteilschluessel",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "staat" : {
            "$ref" : "#/components/schemas/CodeStaatDestatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "Von" : {
        "type" : "object",
        "properties" : {
          "datum" : {
            "type" : "string",
            "description" : "Representation des Typ 'xs:date' als Zeichenkette gemäss ISO8601.",
            "example" : "1699-12-31+01:00",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "monatTag" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "tag" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "WirtschaftszweigSpezifizierbar" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "$ref" : "#/components/schemas/CodeWirtschaftszweig2008Destatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "spezifischeID" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "Zeitraum" : {
        "type" : "object",
        "properties" : {
          "beginn" : {
            "type" : "string",
            "description" : "Representation des Typ 'xs:date' als Zeichenkette gemäss ISO8601.",
            "example" : "1699-12-31+01:00",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "ende" : {
            "type" : "string",
            "description" : "Representation des Typ 'xs:date' als Zeichenkette gemäss ISO8601.",
            "example" : "1699-12-31+01:00",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "zusatz" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Amount" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "number"
          },
          "currencyCode" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Auskunftshinweismodul" : {
        "type" : "object",
        "properties" : {
          "zugangskanal" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZugangskanal",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "inhalt" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "zugangskanal" ]
      },
      "de.xoev.xzufi.v2_3_1.Bearbeitungsdauermodul" : {
        "type" : "object",
        "properties" : {
          "zugangskanal" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZugangskanal",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bearbeitungsdauer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.FristOhneTyp"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "zugangskanal" ]
      },
      "de.xoev.xzufi.v2_3_1.BegriffImKontext" : {
        "type" : "object",
        "properties" : {
          "begriff" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "typ" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeBegriffImKontextTyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "begriff" ]
      },
      "de.xoev.xzufi.v2_3_1.BegriffImKontextModul" : {
        "type" : "object",
        "properties" : {
          "zugangskanal" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZugangskanal",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "begriffImKontext" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.BegriffImKontext"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "begriffImKontext", "zugangskanal" ]
      },
      "de.xoev.xzufi.v2_3_1.Bild" : {
        "type" : "object",
        "properties" : {
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "alternativeBeschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "dateiReferenz" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.BilddateiReferenz",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "copyright" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Copyright",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "dateiReferenz" ]
      },
      "de.xoev.xzufi.v2_3_1.BilddateiReferenz" : {
        "type" : "object",
        "properties" : {
          "dateiID" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "dateiURL" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.CodeBegriffImKontextTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeBezirkDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeBundeslandDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeDetaillierungsstufe" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeDokumentart" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeDokumentpflichtangabeGrundKontextabhaengigkeit" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeDokumentpflichtangabetyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeDynamischerParameterTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeEinheitlicheStelleTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeFristtyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeGemeindeschluesselDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeGemeindeteilschluessel" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeKategorieklassetyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeKlassifizierungBenutzerdefiniert" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeKostentyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeKreisDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeLeiKaTypisierung" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeLeistungsadressat" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeLeistungsbezugsortTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeLeistungstextmodul" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeRechtsform" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeRegionalschluesselDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeSDGInformationsbereich" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeSDGInformationsbereich2" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeSignatur" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeStaatDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeStaatengruppen" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeStaatsangehoerigkeitDestatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeStatus" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeTextmodultypIndividuell" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeVertrauensniveau" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeWirtschaftszweig2008Destatis" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeZeiteinheit" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeZugangskanal" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.Copyright" : {
        "type" : "object",
        "properties" : {
          "copyrightHinweis" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "copyrightURL" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Dokument" : {
        "type" : "object",
        "properties" : {
          "art" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.DokumentartErweiterbar",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "formularReferenz" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.FormularReferenz"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "angabeSignatur" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeSignatur",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "art", "bezeichnung" ]
      },
      "de.xoev.xzufi.v2_3_1.DokumentEingehend" : {
        "type" : "object",
        "properties" : {
          "pflichtangabetyp" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeDokumentpflichtangabetyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "pflichtangabeGrundKontextabhaengigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeDokumentpflichtangabeGrundKontextabhaengigkeit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenAusloeser" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "dokument" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Dokument",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "dokument" ]
      },
      "de.xoev.xzufi.v2_3_1.DokumentartErweiterbar" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeDokumentart",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "nichtGelisteterWert" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Dokumentmodul" : {
        "type" : "object",
        "properties" : {
          "zugangskanal" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZugangskanal",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "dokumentEingehend" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.DokumentEingehend"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "dokumentAusgehend" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Dokument"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibungEingehend" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibungAusgehend" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "zugangskanal" ]
      },
      "de.xoev.xzufi.v2_3_1.DynamischerURLParameter" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeDynamischerParameterTyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "parameterName" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "parameterName", "typ" ]
      },
      "de.xoev.xzufi.v2_3_1.FachlicheFreigabeModul" : {
        "type" : "object",
        "properties" : {
          "zugangskanal" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZugangskanal",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "fachlichFreigegebenAm" : {
            "type" : "string",
            "description" : "Representation des Typ 'xs:date' als Zeichenkette gemäss ISO8601.",
            "example" : "1699-12-31+01:00",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "fachlichFreigegebenDurch" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "zugangskanal" ]
      },
      "de.xoev.xzufi.v2_3_1.FormularReferenz" : {
        "type" : "object",
        "properties" : {
          "formularID" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "dokumentsteckbriefID" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.FristAuswahl" : {
        "type" : "object",
        "properties" : {
          "fristDauer" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.FristDauer",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "fristStichtag" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.FristStichtag",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.FristDauer" : {
        "type" : "object",
        "properties" : {
          "dauer" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "einheit" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZeiteinheit",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "dauerBis" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "einheitBis" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZeiteinheit",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "einheit" ]
      },
      "de.xoev.xzufi.v2_3_1.FristMitTyp" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.FristtypErweiterbar",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "fristauswahl" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.FristAuswahl",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "fristauswahl", "typ" ]
      },
      "de.xoev.xzufi.v2_3_1.FristOhneTyp" : {
        "type" : "object",
        "properties" : {
          "fristauswahl" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.FristAuswahl",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "fristauswahl" ]
      },
      "de.xoev.xzufi.v2_3_1.FristStichtag" : {
        "type" : "object",
        "properties" : {
          "von" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.FristStichtag.Von",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bis" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.FristStichtag.Bis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.FristStichtag.Bis" : {
        "type" : "object",
        "properties" : {
          "datum" : {
            "type" : "string",
            "description" : "Representation des Typ 'xs:date' als Zeichenkette gemäss ISO8601.",
            "example" : "1699-12-31+01:00",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "monatTag" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "tag" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.FristStichtag.Von" : {
        "type" : "object",
        "properties" : {
          "datum" : {
            "type" : "string",
            "description" : "Representation des Typ 'xs:date' als Zeichenkette gemäss ISO8601.",
            "example" : "1699-12-31+01:00",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "monatTag" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "tag" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Fristmodul" : {
        "type" : "object",
        "properties" : {
          "zugangskanal" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZugangskanal",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "frist" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.FristMitTyp"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "zugangskanal" ]
      },
      "de.xoev.xzufi.v2_3_1.FristtypErweiterbar" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeFristtyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "nichtGelisteterWert" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Gebiet" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "typ" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Gebietstyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "uebergeordnetesGebietID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "untergeordnetesGebietID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "verwaltungspolitischeKodierung" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.VerwaltungspolitischeKodierung",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kurzbezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "versionsinformation" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Versionsinformation",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "bezeichnung", "id", "typ" ]
      },
      "de.xoev.xzufi.v2_3_1.Gebietsklasse" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "typ" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeKategorieklassetyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "version" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kurzbezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "bezeichnung", "id", "typ" ]
      },
      "de.xoev.xzufi.v2_3_1.Gebietstyp" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "klasse" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Gebietsklasse",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kurzbezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "bezeichnung", "id", "klasse" ]
      },
      "de.xoev.xzufi.v2_3_1.Herausgeber" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kurzbezeichnung" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "standardZustaendigkeitsgebiet" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Gebiet"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "bezeichnung", "id" ]
      },
      "de.xoev.xzufi.v2_3_1.HyperlinkErweitert" : {
        "type" : "object",
        "properties" : {
          "uri" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "titel" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "languageCode" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "uri" ]
      },
      "de.xoev.xzufi.v2_3_1.Identifikator" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "string"
          },
          "schemeAgencyID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "schemeAgencyName" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "schemeDataURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "schemeID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "schemeName" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "schemeURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "schemeVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.InformationsbereichSDG" : {
        "type" : "object",
        "properties" : {
          "informationsbereichSDG1" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeSDGInformationsbereich"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "informationsbereichSDG2" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeSDGInformationsbereich2"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "informationsbereichSDG1" ]
      },
      "de.xoev.xzufi.v2_3_1.Kategorie" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "uebergeordneteKategorieID" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "untergeordneteKategorieID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "klasse" : {
            "allOf" : [ {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Kategorieklasse"
            } ],
            "title" : "Kategorieklasse",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "piktogrammID" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Bild",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "bezeichnung", "id", "klasse" ]
      },
      "de.xoev.xzufi.v2_3_1.Kategorieklasse" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "typ" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeKategorieklassetyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "version" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "bezeichnung", "id", "typ" ]
      },
      "de.xoev.xzufi.v2_3_1.Kosten" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.KostenTypErweiterbar",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kostenauswahl" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Kostenauswahl",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "vorkasse" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "linkKostenbildung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "kostenauswahl", "typ" ]
      },
      "de.xoev.xzufi.v2_3_1.KostenFix" : {
        "type" : "object",
        "properties" : {
          "betrag" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Amount",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "betrag" ]
      },
      "de.xoev.xzufi.v2_3_1.KostenFrei" : {
        "type" : "object",
        "properties" : {
          "beschreibungKostenfreiheit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.KostenTypErweiterbar" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeKostentyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "nichtGelisteterWert" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.KostenVariabel" : {
        "type" : "object",
        "properties" : {
          "betragUntergrenze" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Amount",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "betragObergrenze" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Amount",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibungVariabilitaet" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Kostenauswahl" : {
        "type" : "object",
        "properties" : {
          "kostenFix" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.KostenFix",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kostenFrei" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.KostenFrei",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kostenVariabel" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.KostenVariabel",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Kostenmodul" : {
        "type" : "object",
        "properties" : {
          "zugangskanal" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZugangskanal",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kosten" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Kosten"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "zugangskanal" ]
      },
      "de.xoev.xzufi.v2_3_1.Leistung" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "struktur" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Leistungsstruktur",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "statusKatalog" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeStatus",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "statusBibliothek" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeStatus",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "detailstufe" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeDetaillierungsstufe",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "referenzLeistungsschluessel" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "leistungsadressat" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeLeistungsadressat"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bezugsortTyp" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.LeistungsbezugsortTyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "modulText" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Textmodul"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "modulTextIndividuell" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.TextmodulIndividuell"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "modulFrist" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Fristmodul"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "modulBearbeitungsdauer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Bearbeitungsdauermodul"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "modulKosten" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Kostenmodul"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "modulDokument" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Dokumentmodul"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "modulBegriffImKontext" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.BegriffImKontextModul"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "modulFachlicheFreigabe" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.FachlicheFreigabeModul"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "modulAuskunftshinweis" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Auskunftshinweismodul"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "modulUrsprungsportal" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.UrsprungsportalModul"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "typisierung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeLeiKaTypisierung"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "vertrauensniveau" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeVertrauensniveau",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenFormularSchriftformerfordernis" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenFormularPersoenlich" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenFormularFormlos" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kategorie" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Kategorie"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "klassifizierung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeKlassifizierungBenutzerdefiniert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "informationsbereicheSDG" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.InformationsbereichSDG",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "leistungImKontextID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "prozessID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeitGebietID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "durchfuehrbarEinheitlicheStelle" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeEinheitlicheStelleTyp"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "relevantFuerWirtschaftszweig" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.WirtschaftszweigSpezifizierbar"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "relevantFuerRechtsform" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeRechtsform"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "relevantFuerStaatsangehoerigkeit" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Staatsangaben",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "versionsinformation" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Versionsinformation",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "sprachversion" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Sprachversion"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "id", "sprachversion" ]
      },
      "de.xoev.xzufi.v2_3_1.LeistungsbezugsortTyp" : {
        "type" : "object",
        "properties" : {
          "leistungsbezugsortTyp" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeLeistungsbezugsortTyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "nichtGelisteterWert" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Leistungsstruktur" : {
        "type" : "object"
      },
      "de.xoev.xzufi.v2_3_1.MaschinelleUebersetzung" : {
        "type" : "object",
        "properties" : {
          "originalSprache" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "originalID" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "uebersetztDurch" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "originalSprache" ]
      },
      "de.xoev.xzufi.v2_3_1.Sprachversion" : {
        "type" : "object",
        "properties" : {
          "languageCode" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "sprachbezeichnungDeutsch" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "sprachbezeichnungNativ" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenMaschinelleUebersetzung" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "maschinelleUebersetzung" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.MaschinelleUebersetzung",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "erstelltDatumZeit" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "erstelltDurch" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "geaendertDatumZeit" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "geaendertDurch" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "version" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "languageCode" ]
      },
      "de.xoev.xzufi.v2_3_1.Staatsangaben" : {
        "type" : "object",
        "properties" : {
          "staatsangehoerigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeStaatsangehoerigkeitDestatis"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "staatengruppe" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeStaatengruppen"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.StringLocalized" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "string"
          },
          "languageCode" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.StringLocalizedHTML" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "string"
          },
          "html" : {
            "type" : "boolean",
            "xml" : {
              "attribute" : true
            }
          },
          "languageCode" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Textmodul" : {
        "type" : "object",
        "properties" : {
          "zugangskanal" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZugangskanal",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "inhalt" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "leikaTextmodul" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeLeistungstextmodul",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "leikaTextModulAbweichendeBezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "leikaTextmodul", "zugangskanal" ]
      },
      "de.xoev.xzufi.v2_3_1.TextmodulIndividuell" : {
        "type" : "object",
        "properties" : {
          "zugangskanal" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZugangskanal",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "inhalt" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "individuellesTextmodultyp" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeTextmodultypIndividuell",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "weiterfuehrenderLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "individuellesTextmodultyp", "zugangskanal" ]
      },
      "de.xoev.xzufi.v2_3_1.UrsprungsportalModul" : {
        "type" : "object",
        "properties" : {
          "zugangskanal" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZugangskanal",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "uri" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "titel" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "dynamischeParameter" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.DynamischerURLParameter"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "languageCode" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "uri", "zugangskanal" ]
      },
      "de.xoev.xzufi.v2_3_1.Versionsinformation" : {
        "type" : "object",
        "properties" : {
          "erstelltDatumZeit" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "erstelltDurch" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "geaendertDatumZeit" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "geaendertDurch" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "version" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.VerwaltungspolitischeKodierung" : {
        "type" : "object",
        "properties" : {
          "staat" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeStaatDestatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bundesland" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeBundeslandDestatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bezirk" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeBezirkDestatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kreis" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeKreisDestatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gemeindeschluessel" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeGemeindeschluesselDestatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gemeindeteilschluessel" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeGemeindeteilschluessel",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "regionalschluessel" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeRegionalschluesselDestatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.WirtschaftszweigSpezifizierbar" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeWirtschaftszweig2008Destatis",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "spezifischeID" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Zeitraum" : {
        "type" : "object",
        "properties" : {
          "beginn" : {
            "type" : "string",
            "description" : "Representation des Typ 'xs:date' als Zeichenkette gemäss ISO8601.",
            "example" : "1699-12-31+01:00",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "ende" : {
            "type" : "string",
            "description" : "Representation des Typ 'xs:date' als Zeichenkette gemäss ISO8601.",
            "example" : "1699-12-31+01:00",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "zusatz" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "PageMetadata" : {
        "type" : "object",
        "properties" : {
          "size" : {
            "type" : "integer",
            "format" : "int64"
          },
          "number" : {
            "type" : "integer",
            "format" : "int64"
          },
          "totalElements" : {
            "type" : "integer",
            "format" : "int64"
          },
          "totalPages" : {
            "type" : "integer",
            "format" : "int64"
          }
        }
      },
      "RelationPage22" : {
        "type" : "object",
        "properties" : {
          "content" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/ZustaendigkeitTransferObjekt"
            }
          },
          "page" : {
            "$ref" : "#/components/schemas/PageMetadata"
          }
        }
      },
      "Zustaendigkeit" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "leistungID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gebietID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "weitereInformation" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "leistungID" ]
      },
      "ZustaendigkeitTransferObjekt" : {
        "type" : "object",
        "properties" : {
          "uebergeordnetesObjektID" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "zustaendigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zustaendigkeit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "zustaendigkeit" ]
      },
      "RelationPage23" : {
        "type" : "object",
        "properties" : {
          "content" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.ZustaendigkeitTransferObjekt"
            }
          },
          "page" : {
            "$ref" : "#/components/schemas/PageMetadata"
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.CodeKommunikationssystemTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeTransferZustaendigkeitTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.Kommunikationssystem" : {
        "type" : "object",
        "properties" : {
          "kanal" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeKommunikationssystemTyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennung" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennungzusatz" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenOeffentlichAnzeigen" : {
            "type" : "boolean",
            "default" : false,
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "kanal", "kennung" ]
      },
      "de.xoev.xzufi.v2_3_1.Zustaendigkeit" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "leistungID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gebietID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kommunikationssystem" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Kommunikationssystem"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "weitereInformation" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "gebietID", "leistungID" ]
      },
      "de.xoev.xzufi.v2_3_1.ZustaendigkeitTransferObjekt" : {
        "type" : "object",
        "properties" : {
          "uebergeordnetesObjektID" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "uebergeordnetesObjektKlasse" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeTransferZustaendigkeitTyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "zustaendigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zustaendigkeit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "zustaendigkeit" ]
      },
      "GeoArsOutModelV3" : {
        "type" : "object",
        "properties" : {
          "ars" : {
            "type" : "string"
          },
          "arsFederalstate" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "gemeinde" : {
            "type" : "string"
          },
          "plz" : {
            "type" : "string"
          },
          "strasse" : {
            "type" : "string"
          },
          "hausnummer" : {
            "type" : "string"
          },
          "koordinaten" : {
            "type" : "array",
            "description" : "Koordinaten [Längengrad, Breitengrad]",
            "items" : {
              "type" : "string"
            }
          }
        },
        "required" : [ "ars", "arsFederalstate", "name" ]
      },
      "GeoSuggestionOutModel" : {
        "type" : "object",
        "example" : {
          "name" : "Berlingerode",
          "weight" : 1.8060234
        },
        "properties" : {
          "name" : {
            "type" : "string"
          },
          "weight" : {
            "type" : "number",
            "format" : "float"
          }
        }
      },
      "LeikaMeta" : {
        "type" : "object",
        "properties" : {
          "exact" : {
            "type" : "boolean"
          }
        }
      },
      "ResultPageWithMetaSdOutModelV7LeikaMeta" : {
        "type" : "object",
        "properties" : {
          "content" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/SdOutModelV7"
            }
          },
          "meta" : {
            "$ref" : "#/components/schemas/LeikaMeta"
          },
          "empty" : {
            "type" : "boolean"
          },
          "totalPages" : {
            "type" : "integer",
            "format" : "int32"
          },
          "numberOfElements" : {
            "type" : "integer",
            "format" : "int32"
          },
          "totalElements" : {
            "type" : "integer",
            "format" : "int64"
          },
          "first" : {
            "type" : "boolean"
          },
          "last" : {
            "type" : "boolean"
          },
          "pageable" : {
            "$ref" : "#/components/schemas/ResultPagePageable"
          }
        }
      },
      "RelationMeta" : {
        "type" : "object"
      },
      "RelationPage" : {
        "type" : "object",
        "properties" : {
          "content" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/ZustaendigkeitTransferObjekt"
            }
          },
          "meta" : {
            "$ref" : "#/components/schemas/RelationMeta"
          },
          "empty" : {
            "type" : "boolean"
          },
          "totalPages" : {
            "type" : "integer",
            "format" : "int32"
          },
          "numberOfElements" : {
            "type" : "integer",
            "format" : "int32"
          },
          "totalElements" : {
            "type" : "integer",
            "format" : "int64"
          },
          "first" : {
            "type" : "boolean"
          },
          "last" : {
            "type" : "boolean"
          },
          "pageable" : {
            "$ref" : "#/components/schemas/ResultPagePageable"
          }
        }
      },
      "OeInfoOutModel" : {
        "type" : "object",
        "description" : "Organisationseinheit Rolle und Zuständigkeit",
        "example" : {
          "id" : "L100042.OE.868",
          "title" : "Landgericht München I",
          "role" : {
            "name" : "Zuständige Stelle und Ansprechpunkt",
            "code" : "01"
          },
          "criteria" : [ {
            "name" : "Kriterium",
            "code" : "01",
            "auspraegungen" : [ "A", "B", "C" ]
          } ]
        },
        "properties" : {
          "id" : {
            "type" : "string",
            "description" : "id, xzufi:Identifikator"
          },
          "title" : {
            "type" : "string",
            "description" : "name, xzufi:NameOrganisation"
          },
          "role" : {
            "$ref" : "#/components/schemas/ResponsibilityRole",
            "description" : "Kommt aus XZuFi 2.2.0 \"ZustaendigkeitOrganisationseinheit:rolle\""
          },
          "criteria" : {
            "type" : "array",
            "description" : "Kommt aus XZuFi 2.2.0 \"ZustaendigkeitOrganisationseinheit:kriterium\"",
            "items" : {
              "$ref" : "#/components/schemas/ResponsibilityCriterionOutModel"
            }
          }
        },
        "required" : [ "id" ]
      },
      "ResponsibilityCriterionOutModel" : {
        "type" : "object",
        "properties" : {
          "name" : {
            "type" : "string"
          },
          "code" : {
            "type" : "string"
          },
          "auspraegungen" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          }
        }
      },
      "ResponsibilityRole" : {
        "type" : "object",
        "properties" : {
          "name" : {
            "type" : "string"
          },
          "code" : {
            "type" : "string",
            "description" : "Code aus einer Codeliste"
          }
        },
        "required" : [ "code" ]
      },
      "AbstractMetaDataType" : {
        "type" : "object",
        "properties" : {
          "content" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          },
          "id" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2",
              "attribute" : true
            }
          }
        }
      },
      "AlternativeOrganisationshierarchie" : {
        "type" : "object",
        "properties" : {
          "zielID" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "hierarchieTyp" : {
            "$ref" : "#/components/schemas/CodeHierarchietyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "fachlicherTyp" : {
            "$ref" : "#/components/schemas/CodeOrganisationshierarchieTyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "hierarchieTyp", "zielID" ]
      },
      "Anschrift" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/CodeAnschrifttyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "strasse" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "hausnummer" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "postfach" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "postleitzahl" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "ort" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "ortID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "verwaltungspolitischeKodierung" : {
            "$ref" : "#/components/schemas/VerwaltungspolitischeKodierung",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "zusatz" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "geokodierung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Geokodierung"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "ort", "postleitzahl" ]
      },
      "AnschriftOrganisationseinheit" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/CodeAnschrifttyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "strasse" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "hausnummer" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "postfach" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "postleitzahl" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "ort" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "ortID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "verwaltungspolitischeKodierung" : {
            "$ref" : "#/components/schemas/VerwaltungspolitischeKodierung",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "zusatz" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "geokodierung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Geokodierung"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "anfahrturl" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "infoParkplatz" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "infoOEPNV" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "infoBarrierefreiheit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kennzeichenAufzug" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kennzeichenRollstuhlgerecht" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "ort", "postleitzahl" ]
      },
      "Bankverbindung" : {
        "type" : "object",
        "properties" : {
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "empfaenger" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "iban" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bic" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bankinstitut" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "verwendungszweckHinweis" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "empfaenger", "iban" ]
      },
      "CodeAnschrifttyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeErreichbarkeitskanal" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeHierarchietyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeKommunikationssystemTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeOrganisationshierarchieTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeTagesposition" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeTagestyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeType" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "string"
          },
          "codeSpace" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "CodeWithAuthorityType" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "string"
          },
          "codeSpace" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "CodeZahlungsweise" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeZeitserientyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeZustaendigkeitskriterium" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CodeZustaendigkeitsrolle" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "CoordinatesType" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "string"
          },
          "decimal" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "cs" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "ts" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "DirectPositionType" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "array",
            "items" : {
              "type" : "number",
              "format" : "double"
            }
          },
          "srsName" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "srsDimension" : {
            "type" : "integer",
            "xml" : {
              "attribute" : true
            }
          },
          "axisLabels" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          },
          "uomLabels" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "Erreichbarkeit" : {
        "type" : "object",
        "properties" : {
          "kanal" : {
            "$ref" : "#/components/schemas/CodeErreichbarkeitskanal",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kennung" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kennungzusatz" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "zusatz" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "kanal", "kennung" ]
      },
      "Formular" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kurzbezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "hinweis" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "datei" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Formulardatei"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "zustaendigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zustaendigkeit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "angabeSignatur" : {
            "$ref" : "#/components/schemas/CodeSignatur",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "referenzFIMFormularID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "versionsinformation" : {
            "$ref" : "#/components/schemas/Versionsinformation",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "sprachversion" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Sprachversion"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "bezeichnung", "datei", "id", "sprachversion" ]
      },
      "Formulardatei" : {
        "type" : "object",
        "properties" : {
          "formulardokumentTypZusatz" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "Geokodierung" : {
        "type" : "object",
        "properties" : {
          "point" : {
            "$ref" : "#/components/schemas/PointType",
            "xml" : {
              "name" : "Point",
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          }
        },
        "required" : [ "point" ]
      },
      "Kommunikationssystem" : {
        "type" : "object",
        "properties" : {
          "kanal" : {
            "$ref" : "#/components/schemas/CodeKommunikationssystemTyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kennung" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kennungzusatz" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "kanal", "kennung" ]
      },
      "Kontaktperson" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "anrede" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "titel" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "vorname" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "familienname" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "position" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "sprechzeiten" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "raum" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "anschrift" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Anschrift"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "erreichbarkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Erreichbarkeit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "internetadresse" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "zustaendigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/ZustaendigkeitPerson"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "id" ]
      },
      "MetaDataPropertyType" : {
        "type" : "object",
        "properties" : {
          "abstractMetaData" : {
            "$ref" : "#/components/schemas/AbstractMetaDataType",
            "xml" : {
              "name" : "AbstractMetaData",
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "about" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "nilReason" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          },
          "remoteSchema" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2",
              "attribute" : true
            }
          },
          "type" : {
            "type" : "string",
            "enum" : [ "SIMPLE", "EXTENDED", "TITLE", "RESOURCE", "LOCATOR", "ARC" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "href" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "role" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "arcrole" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "title" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "show" : {
            "type" : "string",
            "enum" : [ "NEW", "REPLACE", "EMBED", "OTHER", "NONE" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "actuate" : {
            "type" : "string",
            "enum" : [ "ON_LOAD", "ON_REQUEST", "OTHER", "NONE" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          }
        }
      },
      "NameOrganisation" : {
        "type" : "object",
        "properties" : {
          "name" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kurzbezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "$ref" : "#/components/schemas/Zeitraum",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "name" ]
      },
      "OrganisationseinheitErweitert" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "externeOrganisationseinheitsermittlung" : {
            "type" : "boolean",
            "default" : false,
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "uebergeordneteOrganisationseinheitID" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "untergeordneteOrganisationseinheitID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "alternativeHierarchie" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/AlternativeOrganisationshierarchie"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kategorie" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Organisationseinheitskategorie"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "name" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/NameOrganisation"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kurzbeschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "infoOeffnungszeitenText" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "infoOeffnungszeitenStrukturiert" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitserien"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "infoInternServicecenter" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "infoSonstige" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "anschrift" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/AnschriftOrganisationseinheit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "erreichbarkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Erreichbarkeit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kommunikationssystem" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Kommunikationssystem"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "internetadresse" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bankverbindung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Bankverbindung"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "glaeubigeridentifikationsnummer" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "zahlungsweisen" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/CodeZahlungsweise"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "zahlungsweisenText" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "synonym" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "versionsinformation" : {
            "$ref" : "#/components/schemas/Versionsinformation",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "sprachversion" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Sprachversion"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "zustaendigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/ZustaendigkeitOrganisationseinheit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "formular" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Formular"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kontaktperson" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Kontaktperson"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "id", "name", "sprachversion" ]
      },
      "Organisationseinheitskategorie" : {
        "type" : "object",
        "properties" : {
          "klasse" : {
            "$ref" : "#/components/schemas/OrganisationseinheitskategorieKlasse",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "uebergeordneteKategorieID" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "untergeordneteKategorieID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "bezeichnung", "id" ]
      },
      "OrganisationseinheitskategorieKlasse" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "version" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "bezeichnung", "id" ]
      },
      "PointType" : {
        "type" : "object",
        "properties" : {
          "metaDataProperty" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/MetaDataPropertyType"
            },
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "description" : {
            "$ref" : "#/components/schemas/StringOrRefType",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "descriptionReference" : {
            "$ref" : "#/components/schemas/ReferenceType",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "identifier" : {
            "$ref" : "#/components/schemas/CodeWithAuthorityType",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "name" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/CodeType"
            },
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "id" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2",
              "attribute" : true
            }
          },
          "srsName" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "srsDimension" : {
            "type" : "integer",
            "xml" : {
              "attribute" : true
            }
          },
          "axisLabels" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          },
          "uomLabels" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          },
          "pos" : {
            "$ref" : "#/components/schemas/DirectPositionType",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "coordinates" : {
            "$ref" : "#/components/schemas/CoordinatesType",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          }
        }
      },
      "ReferenceType" : {
        "type" : "object",
        "properties" : {
          "nilReason" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          },
          "remoteSchema" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2",
              "attribute" : true
            }
          },
          "type" : {
            "type" : "string",
            "enum" : [ "SIMPLE", "EXTENDED", "TITLE", "RESOURCE", "LOCATOR", "ARC" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "href" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "role" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "arcrole" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "title" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "show" : {
            "type" : "string",
            "enum" : [ "NEW", "REPLACE", "EMBED", "OTHER", "NONE" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "actuate" : {
            "type" : "string",
            "enum" : [ "ON_LOAD", "ON_REQUEST", "OTHER", "NONE" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "owns" : {
            "type" : "boolean",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "StringOrRefType" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "string"
          },
          "nilReason" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          },
          "remoteSchema" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2",
              "attribute" : true
            }
          },
          "type" : {
            "type" : "string",
            "enum" : [ "SIMPLE", "EXTENDED", "TITLE", "RESOURCE", "LOCATOR", "ARC" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "href" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "role" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "arcrole" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "title" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "show" : {
            "type" : "string",
            "enum" : [ "NEW", "REPLACE", "EMBED", "OTHER", "NONE" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "actuate" : {
            "type" : "string",
            "enum" : [ "ON_LOAD", "ON_REQUEST", "OTHER", "NONE" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          }
        }
      },
      "Zeitserie" : {
        "type" : "object",
        "properties" : {
          "tagesposition" : {
            "$ref" : "#/components/schemas/CodeTagesposition",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "tagestyp" : {
            "$ref" : "#/components/schemas/CodeTagestyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "beginn" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "ende" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "zusatz" : {
            "$ref" : "#/components/schemas/StringLocalized",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "beginn", "ende", "tagesposition", "tagestyp" ]
      },
      "Zeitserien" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/CodeZeitserientyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "hinweistext" : {
            "$ref" : "#/components/schemas/StringLocalized",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "regulaereZeiten" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitserie"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "abweichendeZeiten" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "ZustaendigkeitOrganisationseinheit" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "leistungID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gebietID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "weitereInformation" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "rolle" : {
            "$ref" : "#/components/schemas/CodeZustaendigkeitsrolle",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kriterium" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zustaendigkeitskriterium"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "leistungID" ]
      },
      "ZustaendigkeitPerson" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "leistungID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gebietID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "weitereInformation" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "kriterium" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/Zustaendigkeitskriterium"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "leistungID" ]
      },
      "Zustaendigkeitskriterium" : {
        "type" : "object",
        "properties" : {
          "codeKriterium" : {
            "$ref" : "#/components/schemas/ZustaendigkeitskriteriumCodeErweiterbar",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "auspraegung" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        },
        "required" : [ "auspraegung", "codeKriterium" ]
      },
      "ZustaendigkeitskriteriumCodeErweiterbar" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "$ref" : "#/components/schemas/CodeZustaendigkeitskriterium",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          },
          "nichtGelisteterWert" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_2_0"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.AbstractMetaDataType" : {
        "type" : "object",
        "properties" : {
          "content" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          },
          "id" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2",
              "attribute" : true
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.AlternativeOrganisationshierarchie" : {
        "type" : "object",
        "properties" : {
          "zielID" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "hierarchieTyp" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeHierarchietyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "fachlicherTyp" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeOrganisationshierarchieTyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "hierarchieTyp", "zielID" ]
      },
      "de.xoev.xzufi.v2_3_1.Anschrift" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeAnschrifttyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "strasse" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "hausnummer" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "postfach" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "postleitzahl" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "ort" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "ortID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "verwaltungspolitischeKodierung" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.VerwaltungspolitischeKodierung",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "zusatz" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "geokodierung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Geokodierung"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bild" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Bild"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "ort", "postleitzahl", "typ" ]
      },
      "de.xoev.xzufi.v2_3_1.AnschriftOrganisationseinheit" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeAnschrifttyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "strasse" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "hausnummer" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "postfach" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "postleitzahl" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "ort" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "ortID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "verwaltungspolitischeKodierung" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.VerwaltungspolitischeKodierung",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "zusatz" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "geokodierung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Geokodierung"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bild" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Bild"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "anfahrturl" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "infoParkplatz" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "infoOEPNV" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "infoBarrierefreiheit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenAufzug" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenRollstuhlgerecht" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "ort", "postleitzahl", "typ" ]
      },
      "de.xoev.xzufi.v2_3_1.Bankverbindung" : {
        "type" : "object",
        "properties" : {
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "empfaenger" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "iban" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bic" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bankinstitut" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "verwendungszweckHinweis" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "empfaenger", "iban" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeAnschrifttyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeEfAParameter" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeErreichbarkeitskanal" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeHierarchietyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeIdentifizierungsmittel" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeOnlinedienstLinkTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeOnlinedienstStatus" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeOnlinedienstTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeOrganisationshierarchieTyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeReifegrad" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeTagesposition" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeTagestyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeType" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "string"
          },
          "codeSpace" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.CodeWithAuthorityType" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "string"
          },
          "codeSpace" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.CodeZahlungsweise" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeZeitserientyp" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeZustaendigkeitskriterium" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CodeZustaendigkeitsrolle" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "listURI" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "listVersionID" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "code" ]
      },
      "de.xoev.xzufi.v2_3_1.CoordinatesType" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "string"
          },
          "decimal" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "cs" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "ts" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.DirectPositionType" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "array",
            "items" : {
              "type" : "number",
              "format" : "double"
            }
          },
          "srsName" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "srsDimension" : {
            "type" : "integer",
            "xml" : {
              "attribute" : true
            }
          },
          "axisLabels" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          },
          "uomLabels" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Erreichbarkeit" : {
        "type" : "object",
        "properties" : {
          "kanal" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeErreichbarkeitskanal",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennung" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennungzusatz" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "zusatz" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "kanal", "kennung" ]
      },
      "de.xoev.xzufi.v2_3_1.Formular" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bezeichnungIntern" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kurzbezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "hinweis" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "datei" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Formulardatei"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "zustaendigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zustaendigkeit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenFormularSchriftformerfordernis" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenFormularPersoenlich" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "dokumentsteckbriefID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "versionsinformation" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Versionsinformation",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "sprachversion" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Sprachversion"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "bezeichnung", "datei", "id", "sprachversion" ]
      },
      "de.xoev.xzufi.v2_3_1.Formulardatei" : {
        "type" : "object",
        "properties" : {
          "formulardokumentTypZusatz" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "sprache" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Sprache"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Geokodierung" : {
        "type" : "object",
        "properties" : {
          "point" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.PointType",
            "xml" : {
              "name" : "Point",
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          }
        },
        "required" : [ "point" ]
      },
      "de.xoev.xzufi.v2_3_1.Kontaktperson" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "anrede" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "titel" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "vorname" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "familienname" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "position" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "sprechzeiten" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "raum" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "anschrift" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Anschrift"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "erreichbarkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Erreichbarkeit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "internetadresse" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bild" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Bild",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "zustaendigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.ZustaendigkeitPerson"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenOeffentlichAnzeigen" : {
            "type" : "boolean",
            "default" : false,
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "id" ]
      },
      "de.xoev.xzufi.v2_3_1.MetaDataPropertyType" : {
        "type" : "object",
        "properties" : {
          "abstractMetaData" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.AbstractMetaDataType",
            "xml" : {
              "name" : "AbstractMetaData",
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "about" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "nilReason" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          },
          "remoteSchema" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2",
              "attribute" : true
            }
          },
          "type" : {
            "type" : "string",
            "enum" : [ "SIMPLE", "EXTENDED", "TITLE", "RESOURCE", "LOCATOR", "ARC" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "href" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "role" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "arcrole" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "title" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "show" : {
            "type" : "string",
            "enum" : [ "NEW", "REPLACE", "EMBED", "OTHER", "NONE" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "actuate" : {
            "type" : "string",
            "enum" : [ "ON_LOAD", "ON_REQUEST", "OTHER", "NONE" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.NameOrganisation" : {
        "type" : "object",
        "properties" : {
          "name" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kurzbezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "name" ]
      },
      "de.xoev.xzufi.v2_3_1.Onlinedienst" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bezeichnung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bezeichnungIntern" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idOnlinedienstGlobal" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "status" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeOnlinedienstStatus",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "teaser" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "link" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.OnlinedienstLink"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "parameterEfA" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.OnlinedienstParameterEfA"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "parameterIndividuell" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.OnlinedienstParameterIndividuell"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kategorie" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Kategorie"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "typ" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeOnlinedienstTyp"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "reifegrad" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeReifegrad"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "identifizierungsmittel" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeIdentifizierungsmittel"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "vertrauensniveau" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeVertrauensniveau",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "zahlungsweisen" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.OnlinedienstZahlungsweise",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "hilfeLink" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "hilfeText" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "durchfuehrungStaatsangehoerigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeStaatsangehoerigkeitDestatis"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "durchfuehrungWeitereSprachen" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Sprache"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "logo" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Bild",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenOeffentlichAnzeigen" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "versionsinformation" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Versionsinformation",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "sprachversion" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Sprachversion"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "bezeichnung", "id", "sprachversion", "status", "vertrauensniveau", "zahlungsweisen" ]
      },
      "de.xoev.xzufi.v2_3_1.OnlinedienstLink" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeOnlinedienstLinkTyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "link" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "dynamischeParameter" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.DynamischerURLParameter"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "titel" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "languageCode" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          }
        },
        "required" : [ "link", "titel", "typ" ]
      },
      "de.xoev.xzufi.v2_3_1.OnlinedienstParameterEfA" : {
        "type" : "object",
        "properties" : {
          "parameterEfA" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeEfAParameter",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "parameterWert" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "languageCode" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "parameterEfA" ]
      },
      "de.xoev.xzufi.v2_3_1.OnlinedienstParameterIndividuell" : {
        "type" : "object",
        "properties" : {
          "parameterName" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "parameterWert" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "languageCode" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "parameterName" ]
      },
      "de.xoev.xzufi.v2_3_1.OnlinedienstZahlungsweise" : {
        "type" : "object",
        "properties" : {
          "zahlungsweise" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZahlungsweise"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kostenfrei" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "keineAngabe" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.OrganisationseinheitErweitert" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "externeOrganisationseinheitsermittlung" : {
            "type" : "boolean",
            "default" : false,
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "uebergeordneteOrganisationseinheitID" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "untergeordneteOrganisationseinheitID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "alternativeHierarchie" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.AlternativeOrganisationshierarchie"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kategorie" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Kategorie"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "name" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.NameOrganisation"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kurzbeschreibung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "infoOeffnungszeitenText" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "infoOeffnungszeitenStrukturiert" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitserien"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "terminvereinbarungsdienst" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Onlinedienst"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "infoInternServicecenter" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "infoSonstige" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.TextLocalizedHTMLMitGueltigkeit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "anschrift" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.AnschriftOrganisationseinheit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "erreichbarkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Erreichbarkeit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "internetadresse" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.HyperlinkErweitert"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "bankverbindung" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Bankverbindung"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "glaeubigeridentifikationsnummer" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "zahlungsweisen" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZahlungsweise"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "zahlungsweisenText" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "logo" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Bild",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "synonym" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenOeffentlichAnzeigen" : {
            "type" : "boolean",
            "default" : true,
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "versionsinformation" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Versionsinformation",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "sprachversion" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Sprachversion"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "zustaendigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.ZustaendigkeitOrganisationseinheit"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "formular" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Formular"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kontaktperson" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Kontaktperson"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "id", "name", "sprachversion" ]
      },
      "de.xoev.xzufi.v2_3_1.PointType" : {
        "type" : "object",
        "properties" : {
          "metaDataProperty" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.MetaDataPropertyType"
            },
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "description" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringOrRefType",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "descriptionReference" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.ReferenceType",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "identifier" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeWithAuthorityType",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "name" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeType"
            },
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "id" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2",
              "attribute" : true
            }
          },
          "srsName" : {
            "type" : "string",
            "xml" : {
              "attribute" : true
            }
          },
          "srsDimension" : {
            "type" : "integer",
            "xml" : {
              "attribute" : true
            }
          },
          "axisLabels" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          },
          "uomLabels" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          },
          "pos" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.DirectPositionType",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          },
          "coordinates" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CoordinatesType",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.ReferenceType" : {
        "type" : "object",
        "properties" : {
          "nilReason" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          },
          "remoteSchema" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2",
              "attribute" : true
            }
          },
          "type" : {
            "type" : "string",
            "enum" : [ "SIMPLE", "EXTENDED", "TITLE", "RESOURCE", "LOCATOR", "ARC" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "href" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "role" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "arcrole" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "title" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "show" : {
            "type" : "string",
            "enum" : [ "NEW", "REPLACE", "EMBED", "OTHER", "NONE" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "actuate" : {
            "type" : "string",
            "enum" : [ "ON_LOAD", "ON_REQUEST", "OTHER", "NONE" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "owns" : {
            "type" : "boolean",
            "xml" : {
              "attribute" : true
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.Sprache" : {
        "type" : "object",
        "properties" : {
          "languageCode" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "sprachbezeichnungDeutsch" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "sprachbezeichnungNativ" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "languageCode" ]
      },
      "de.xoev.xzufi.v2_3_1.StringOrRefType" : {
        "type" : "object",
        "properties" : {
          "value" : {
            "type" : "string"
          },
          "nilReason" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "attribute" : true
            }
          },
          "remoteSchema" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.opengis.net/gml/3.2",
              "attribute" : true
            }
          },
          "type" : {
            "type" : "string",
            "enum" : [ "SIMPLE", "EXTENDED", "TITLE", "RESOURCE", "LOCATOR", "ARC" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "href" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "role" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "arcrole" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "title" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "show" : {
            "type" : "string",
            "enum" : [ "NEW", "REPLACE", "EMBED", "OTHER", "NONE" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          },
          "actuate" : {
            "type" : "string",
            "enum" : [ "ON_LOAD", "ON_REQUEST", "OTHER", "NONE" ],
            "xml" : {
              "namespace" : "http://www.w3.org/1999/xlink",
              "attribute" : true
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.TextLocalizedHTMLMitGueltigkeit" : {
        "type" : "object",
        "properties" : {
          "inhalt" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalizedHTML",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "inhalt" ]
      },
      "de.xoev.xzufi.v2_3_1.Zeitserie" : {
        "type" : "object",
        "properties" : {
          "tagesposition" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeTagesposition",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "tagestyp" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeTagestyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "beginn" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "ende" : {
            "type" : "string",
            "format" : "date-time",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "zusatz" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "beginn", "ende", "tagesposition", "tagestyp" ]
      },
      "de.xoev.xzufi.v2_3_1.Zeitserien" : {
        "type" : "object",
        "properties" : {
          "typ" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZeitserientyp",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "hinweistext" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "regulaereZeiten" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitserie"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "abweichendeZeiten" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "de.xoev.xzufi.v2_3_1.ZustaendigkeitOrganisationseinheit" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "leistungID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gebietID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kommunikationssystem" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Kommunikationssystem"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "weitereInformation" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "rolle" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZustaendigkeitsrolle"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kriterium" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zustaendigkeitskriterium"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kennzeichenTerminvereinbarungVerpflichtend" : {
            "type" : "boolean",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "gebietID", "leistungID", "rolle" ]
      },
      "de.xoev.xzufi.v2_3_1.ZustaendigkeitPerson" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "idSekundaer" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "leistungID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gebietID" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Identifikator"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kommunikationssystem" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Kommunikationssystem"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "weitereInformation" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.StringLocalized"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "positionDarstellung" : {
            "type" : "integer",
            "format" : "int32",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "herausgeber" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Herausgeber",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "gueltigkeit" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zeitraum"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "kriterium" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.Zustaendigkeitskriterium"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "gebietID", "leistungID" ]
      },
      "de.xoev.xzufi.v2_3_1.Zustaendigkeitskriterium" : {
        "type" : "object",
        "properties" : {
          "codeKriterium" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.ZustaendigkeitskriteriumCodeErweiterbar",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "auspraegung" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        },
        "required" : [ "auspraegung", "codeKriterium" ]
      },
      "de.xoev.xzufi.v2_3_1.ZustaendigkeitskriteriumCodeErweiterbar" : {
        "type" : "object",
        "properties" : {
          "code" : {
            "$ref" : "#/components/schemas/de.xoev.xzufi.v2_3_1.CodeZustaendigkeitskriterium",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          },
          "nichtGelisteterWert" : {
            "type" : "string",
            "xml" : {
              "namespace" : "http://xoev.de/schemata/xzufi/2_3_1"
            }
          }
        }
      },
      "OdRelationOutModel" : {
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string",
            "description" : "id, xzufi:Identifikator",
            "example" : "L100042.ZSOD.LB_xzufi22DeleteZSOD_77777_0003.OD_xzufi22DeleteZSOD_77777_0001.095620000000"
          },
          "lbId" : {
            "type" : "string",
            "description" : "leistungID, xzufi:Identifikator",
            "example" : "L100042.LB.LB_xzufi22DeleteZSOD_77777_0001"
          },
          "ars" : {
            "type" : "string",
            "description" : "gebietID, xzufi:Identifikator",
            "example" : "012012012012"
          },
          "parentId" : {
            "type" : "string",
            "description" : "Onlinedienst-ID",
            "example" : "L100042.OD.OD_xzufi22DeleteZSOD_77777_0001"
          },
          "responsiblity" : {
            "$ref" : "#/components/schemas/ResponsibilityRole",
            "deprecated" : true
          },
          "validityPeriods" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/ValidityPeriod"
            }
          },
          "typ" : {
            "type" : "string",
            "enum" : [ "ORGANISATION", "ONLINESERVICE", "FORM", "UNKOWN" ],
            "example" : "ONLINESERVICE"
          }
        }
      },
      "OnlineServiceOutModelV2" : {
        "type" : "object",
        "properties" : {
          "logos" : {
            "type" : "array",
            "description" : "logo, xzufi:Identifikator",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "id" : {
            "type" : "string",
            "description" : "id, xzufi:Identifikator"
          },
          "name" : {
            "type" : "string",
            "description" : "bezeichnung, xzufi:String.Localized"
          },
          "description" : {
            "type" : "string",
            "description" : "beschreibung, xzufi:String.localized"
          },
          "helpText" : {
            "type" : "string",
            "description" : "hilfeText, xzufi:String.localized"
          },
          "helpLinks" : {
            "type" : "array",
            "description" : "hilfeLink, xzufi:HyperlinkErweitert",
            "example" : [ ],
            "items" : {
              "$ref" : "#/components/schemas/AdditionalLink"
            }
          },
          "publisher" : {
            "$ref" : "#/components/schemas/Publisher",
            "description" : "herausgeber, xzufi:Herausgeber"
          },
          "paymentMethods" : {
            "type" : "array",
            "description" : "zahlungsweise, xzufi:Code.Zahlungsweise",
            "example" : [ ],
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "identificationMethods" : {
            "type" : "array",
            "description" : "identifizierungsmittel, xzufi:Code.Identifizierungsmittel",
            "example" : [ ],
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "links" : {
            "type" : "array",
            "description" : "link, xzufi:OnlinedienstLink",
            "items" : {
              "$ref" : "#/components/schemas/AdditionalLink"
            }
          },
          "validityPeriods" : {
            "type" : "array",
            "description" : "gueltigkeit, xzufi:Zeitraum",
            "items" : {
              "$ref" : "#/components/schemas/ValidityPeriod"
            }
          },
          "lastUpdate" : {
            "type" : "string",
            "format" : "date-time",
            "description" : "Zeitpunkt, an dem der Datensatz im Suchdienst empfangen wurde"
          },
          "parameters" : {
            "type" : "array",
            "description" : "parameter, xzufi:OnlinedienstParameter",
            "items" : {
              "$ref" : "#/components/schemas/OnlinedienstParameter"
            },
            "uniqueItems" : true
          },
          "executionLanguages" : {
            "type" : "array",
            "description" : "durchfuehrungSprachen, xzufi:Sprache",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "executionNationalities" : {
            "type" : "array",
            "description" : "durchfuehrungStaatsangehoerigkeit, xzufi:Code.StaatsangehoerigkeitDestatis",
            "items" : {
              "$ref" : "#/components/schemas/NationalityCode"
            },
            "uniqueItems" : true
          },
          "levelOfConfidence" : {
            "type" : "string",
            "description" : "vertrauensniveau, xzufi:Code.Vertrauensniveau",
            "example" : "00"
          },
          "languages" : {
            "type" : "array",
            "description" : "sprachversion, xzufi:Sprachversion",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "languageComplete" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "boolean"
            },
            "description" : "Vollständigkeit der Felder zu einer Sprache"
          },
          "arsFederalstate" : {
            "type" : "array",
            "description" : "ARS der zugehörigen Bundesländer",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "relations" : {
            "type" : "array",
            "description" : "zustaendigkeit, xzufi:Zustaendigkeit",
            "items" : {
              "$ref" : "#/components/schemas/OdRelationOutModel"
            },
            "uniqueItems" : true
          }
        }
      },
      "OnlinedienstParameter" : {
        "type" : "object",
        "properties" : {
          "name" : {
            "type" : "string",
            "description" : "parameterName, xs:string"
          },
          "value" : {
            "type" : "string",
            "description" : "parameterWert, xs:string"
          }
        }
      },
      "Publisher" : {
        "type" : "object",
        "properties" : {
          "name" : {
            "type" : "array",
            "description" : "bezeichnung, xoev-lc:String.Latin",
            "items" : {
              "type" : "string"
            }
          },
          "shortName" : {
            "type" : "array",
            "description" : "kurzbezeichnung, xoev-lc:String.Latin",
            "items" : {
              "type" : "string"
            }
          },
          "description" : {
            "type" : "string",
            "description" : "beschreibung, xzufi:String.Localized"
          }
        }
      },
      "ArsObject_Detail" : {
        "type" : "object",
        "description" : "Amtlicher Regionalschlüssel (ARS) mit weiteren zugehörigen Daten",
        "example" : {
          "name" : "Neumünster, Stadt",
          "ars" : "010040000000",
          "ags" : "01004000",
          "zip" : "24534",
          "displayZip" : "24534",
          "id" : "010040000000",
          "zipCodeCount" : 1
        },
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "ars" : {
            "type" : "string"
          },
          "ags" : {
            "type" : "string"
          },
          "zip" : {
            "type" : "string",
            "deprecated" : true
          },
          "displayZip" : {
            "type" : "string",
            "description" : "Hält die Postleitzahl oder ein entsprechendes Template, wenn der ARS mehrere PLZ hat."
          },
          "zipCodeCount" : {
            "type" : "integer",
            "format" : "int32",
            "description" : "Anzahl der bekannten PLZ für diesen Ort"
          },
          "location" : {
            "$ref" : "#/components/schemas/Coordinate_Detail"
          },
          "suggest" : {
            "$ref" : "#/components/schemas/Suggestions_Detail",
            "deprecated" : true,
            "description" : "interne Datenstruktur für die Vorschlagssuche. Wird perspektivisch aus der API entfernt"
          }
        }
      },
      "Coordinate_Detail" : {
        "type" : "object",
        "properties" : {
          "lon" : {
            "type" : "number",
            "format" : "float"
          },
          "lat" : {
            "type" : "number",
            "format" : "float"
          }
        }
      },
      "Suggestions_Detail" : {
        "type" : "object",
        "properties" : {
          "input" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "uniqueItems" : true
          },
          "weight" : {
            "type" : "string"
          }
        }
      },
      "ArsObject_Search" : {
        "type" : "object",
        "description" : "Amtlicher Regionalschlüssel (ARS) mit weiteren zugehörigen Daten",
        "example" : {
          "name" : "Neumünster, Stadt",
          "ars" : "010040000000",
          "ags" : "01004000",
          "zip" : "24534",
          "displayZip" : "24534",
          "id" : "010040000000",
          "zipCodeCount" : 1
        },
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "ars" : {
            "type" : "string"
          },
          "ags" : {
            "type" : "string"
          },
          "zip" : {
            "type" : "string",
            "deprecated" : true
          },
          "displayZip" : {
            "type" : "string",
            "description" : "Hält die Postleitzahl oder ein entsprechendes Template, wenn der ARS mehrere PLZ hat."
          },
          "zipCodeCount" : {
            "type" : "integer",
            "format" : "int32",
            "description" : "Anzahl der bekannten PLZ für diesen Ort"
          },
          "location" : {
            "$ref" : "#/components/schemas/Coordinate_Search"
          }
        }
      },
      "Coordinate_Search" : {
        "type" : "object",
        "properties" : {
          "lon" : {
            "type" : "number",
            "format" : "float"
          },
          "lat" : {
            "type" : "number",
            "format" : "float"
          }
        }
      },
      "GeoArsOutModelV2_Detail" : {
        "type" : "object",
        "properties" : {
          "ars" : {
            "type" : "string"
          },
          "arsFederalstate" : {
            "type" : "string"
          },
          "municipality" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "plz" : {
            "type" : "string"
          }
        }
      },
      "FederalStateServices" : {
        "type" : "object",
        "description" : "Statistik für die Dienste nach Bundesland",
        "properties" : {
          "timestamp" : {
            "type" : "string",
            "format" : "date-time"
          },
          "stateServices" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "integer",
              "format" : "int32"
            }
          },
          "stateStatistics" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/FederalStateStatistic"
            },
            "uniqueItems" : true
          }
        }
      },
      "FederalStateStatistic" : {
        "type" : "object",
        "properties" : {
          "ars" : {
            "type" : "string"
          },
          "lbs" : {
            "$ref" : "#/components/schemas/FederalStateStatisticDetail"
          },
          "ods" : {
            "$ref" : "#/components/schemas/FederalStateStatisticDetail"
          },
          "oes" : {
            "$ref" : "#/components/schemas/FederalStateStatisticDetail"
          },
          "sps" : {
            "$ref" : "#/components/schemas/FederalStateStatisticDetail"
          }
        }
      },
      "FederalStateStatisticDetail" : {
        "type" : "object",
        "properties" : {
          "count" : {
            "type" : "integer",
            "format" : "int64"
          },
          "lastUpdate" : {
            "type" : "string",
            "format" : "date-time"
          }
        }
      },
      "ServiceDescriptionSuggestion" : {
        "type" : "object",
        "description" : "Vervollständigungen für 'Ingen'",
        "example" : {
          "suggestedText" : "Ingenieur / Ingenieurin: Erlaubnis zum Führen der Berufsbezeichnung"
        },
        "properties" : {
          "suggestedText" : {
            "type" : "string"
          }
        }
      },
      "FullLifeSituationAggOutModel_Search" : {
        "type" : "object",
        "description" : "Ein Lebenslageneintrag",
        "example" : {
          "code" : "2000000",
          "name" : "Geschäftslagen für Unternehmen",
          "count" : 2,
          "children" : [ {
            "code" : "2030000",
            "name" : "Arbeitgeber sein",
            "count" : 2,
            "children" : [ {
              "code" : "2030700",
              "name" : "Sonderregelungen der Arbeitszeit",
              "count" : 2,
              "comment" : "Neben den gewöhnlichen Arbeitszeitmodellen gibt es einige Sonderregelungen. Die Altersteilzeit oder das Wintergeld für Beschäftigte in witterungsabhängigen Branchen sind Beispiele hierfür. Informationen und Services zu diesen Regelungen haben wir hier für Sie zusammengefasst."
            } ],
            "comment" : "Sie leiten einen Betrieb mit Beschäftigten? Wie sieht es mit der Sozialversicherung aus? Wie bezahlt man die Lohnsteuer und welche Meldepflichten gibt es? Damit Sie als Arbeitgeberin oder Arbeitgeber den Überblick über Ihre Rechte und Pflichten behalten, finden Sie hier umfangreiche Informationen über arbeitsrechtliche Aspekte."
          } ],
          "comment" : "Informationen und Services für Unternehmen in allen geschäftlichen Belangen."
        },
        "properties" : {
          "code" : {
            "type" : "string",
            "description" : "Code der Lebenslage gemäß Codeliste"
          },
          "name" : {
            "type" : "string",
            "description" : "Der für den Client internationalisierte Name der Lebenslage"
          },
          "count" : {
            "type" : "integer",
            "format" : "int64",
            "description" : "Anzahl der Lebenslagen aggregiert auf die Hierarchie-Ebene"
          },
          "children" : {
            "type" : "array",
            "description" : "Die untergeordneten Lebenslagen",
            "items" : {
              "$ref" : "#/components/schemas/FullLifeSituationAggOutModel_Search"
            }
          },
          "comment" : {
            "type" : "string",
            "description" : "Der für den Client internationalisierte Kommentar der Lebenslage"
          }
        }
      }
    }
  }
}