Skip to content
Snippets Groups Projects
Commit cb5c5887 authored by Andreas Huber's avatar Andreas Huber
Browse files

Abgleich mit Labor Wohngeld

parent fdf885ad
No related branches found
No related tags found
1 merge request!6Version 0.3
{
"title": "International Address",
"type": "object",
"title": "International Address",
"description": "Eine internationale Adresse, bestehend aus ein bis fünf Adresszeilen.",
"x-examples": {
"example-1": {
"lines": [
"760 United Nations Plaza",
"Manhattan, New York City, New York 10017"
]
},
"example-2": {
"lines": [
"Threadneedle Street",
"London EC2R 8AH"
]
}
},
"additionalProperties": false,
"properties": {
"lines": {
"type": "array",
......@@ -29,7 +16,14 @@
},
"country": {
"type": "string",
"description": "Staat"
"description": "Staat gemäß Codeliste [https://www.xrepository.de/details/urn:de:bund:destatis:bevoelkerungsstatistik:schluessel:staat](Codeliste Staat aus der Staats- und Gebietssystematik des Statistischen Bundesamtes)",
"minLength": 3,
"maxLength": 3,
"pattern": "^[0-9]{3}$"
}
}
},
"required": [
"lines",
"country"
]
}
\ No newline at end of file
......@@ -11,6 +11,7 @@
},
"oneOf": [
{
"additionalProperties": false,
"properties": {
"street": {
"type": "string",
......@@ -24,6 +25,7 @@
],
"description": "Hausnummer",
"maxLength": 9,
"pattern": "^[1-9][0-9]{0,3}(-[1-9][0-9]{0,3})?$",
"minimum": 1
},
"house-number-suffix": {
......@@ -48,9 +50,15 @@
"type": "string",
"description": "Adresszusatz"
}
}
},
"required": [
"street",
"postal-code",
"city"
]
},
{
"additionalProperties": false,
"properties": {
"post-office-box": {
"type": "string",
......@@ -68,7 +76,11 @@
"description": "Ort",
"maxLength": 50
}
}
},
"required": [
"postal-code",
"city"
]
}
],
"type": "object"
......
......@@ -7,7 +7,7 @@
"number": {
"type": "string",
"title": "Phone Number",
"description": "Telefonnummer im internationalen Format, z.B. \"+49 89 32168-42\". Muss mit einem Plus beginnen und darf danach außer Ziffern nur Leerzeichen ( ) und Bindestriche (-) enthalten.",
"description": "Telefonnummer gemäß ITU E.123. Es soll das internationalen Format, z.B. \"+49 89 32168-42\" verwendet werden.",
"example": "+49 89 32168-42",
"maxLength": 23
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment