generated from CommonGateway/PetStoreBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes for file parts and other fixes
- Loading branch information
1 parent
865bf55
commit ea382e1
Showing
6 changed files
with
199 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
Installation/Schema/zrc/zrc.terreinGebouwdObjectAdres.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"$id": "https://vng.opencatalogi.nl/schemas/zrc.terreinGebouwdObjectAdres.schema.json", | ||
"$schema": "https://docs.commongateway.nl/schemas/Entity.schema.json", | ||
"title": "TerreinGebouwdObjectAdres", | ||
"version": "0.1", | ||
"type": "object", | ||
"properties": { | ||
"numIdentificatie": { | ||
"type": "string", | ||
"title": "num identificatie", | ||
"maxLength": 100 | ||
}, | ||
"oaoIdentificatie": { | ||
"type": "string", | ||
"description": "De unieke identificatie van het OBJECT", | ||
"title": "identificatie", | ||
"maxLength": 100 | ||
}, | ||
"wplWoonplaatsNaam": { | ||
"type": "string", | ||
"title": "wpl woonplaats naam", | ||
"maxLength": 80 | ||
}, | ||
"gorOpenbareRuimteNaam": { | ||
"type": "string", | ||
"description": "Een door het bevoegde gemeentelijke orgaan aan een OPENBARE RUIMTE toegekende benaming", | ||
"title": "gor openbare ruimte naam", | ||
"maxLength": 80 | ||
}, | ||
"aoaPostcode": { | ||
"type": "string", | ||
"title": "postcode", | ||
"maxLength": 7 | ||
}, | ||
"aoaHuisnummer": { | ||
"type": "integer", | ||
"maximum": 99999, | ||
"minimum": 0, | ||
"title": "huisnummer" | ||
}, | ||
"aoaHuisletter": { | ||
"type": "string", | ||
"title": "huisletter", | ||
"maxLength": 1 | ||
}, | ||
"aoaHuisnummertoevoeging": { | ||
"type": "string", | ||
"title": "huisnummertoevoeging", | ||
"maxLength": 4 | ||
}, | ||
"ogoLocatieAanduiding": { | ||
"type": "string", | ||
"title": "locatie aanduiding", | ||
"maxLength": 100 | ||
} | ||
}, | ||
"required": [ | ||
"aoaHuisnummer", | ||
"gorOpenbareRuimteNaam", | ||
"oaoIdentificatie", | ||
"wplWoonplaatsNaam" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters