-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update benkagg hr to v3 * faillisement string type
- Loading branch information
1 parent
a2aaeb2
commit 4bb26f8
Showing
2 changed files
with
122 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
{ | ||
"id": "handelsregister", | ||
"type": "table", | ||
"version": "3.0.0", | ||
"crs": "EPSG:28992", | ||
"auth": [ | ||
"FP/MDW", | ||
"HR/R" | ||
], | ||
"reasonsNonPublic": [ | ||
"5.1 2b: Zwaarwegende economische of financiële belangen van publiekrechtelijke lichamen (bevat geen mileu-informatie)" | ||
], | ||
"schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"mainGeometry": "geometrieRd", | ||
"identifier": "vestigingsnummer", | ||
"required": [ | ||
"schema", | ||
"vestigingsnummer" | ||
], | ||
"display": "vestigingsnummer", | ||
"properties": { | ||
"schema": { | ||
"$ref": "https://schemas.data.amsterdam.nl/schema@v2#/definitions/schema" | ||
}, | ||
"vestigingsnummer": { | ||
"type": "string", | ||
"description": "Betreft het identificerende gegeven voor de vestiging" | ||
}, | ||
"datumAanvangVestiging": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "De datum van aanvang van de vestiging" | ||
}, | ||
"eersteHandelsnaam": { | ||
"type": "string", | ||
"description": "De {Handelsnaam} van de vestiging waaronder gehandeld wordt" | ||
}, | ||
"kvknummer": { | ||
"type": "string", | ||
"description": "Betreft het identificerende gegeven voor de maatschappelijke activititeit, het KvK-nummer" | ||
}, | ||
"datumAanvangMaatschappelijkeInschrijving": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "De datum van aanvang van de maatschappelijke activititeit" | ||
}, | ||
"indicatieNonmailing": { | ||
"type": "string", | ||
"description": "Indicator die aangeeft of de inschrijving haar adresgegevens beschikbaar stelt voor mailingdoeleinden" | ||
}, | ||
"hoofdVestiging": { | ||
"type": "string", | ||
"description": "Indicatie of de vestiging de hoofdvestiging betreft" | ||
}, | ||
"typeVestiging": { | ||
"type": "string", | ||
"description": "Vestiging is van het type commercieel of niet commercieel (afgeleid gegeven)" | ||
}, | ||
"bezoekadresVestiging": { | ||
"type": "string", | ||
"description": "Bezoekadres van de vestiging" | ||
}, | ||
"postadresVestiging": { | ||
"type": "string", | ||
"description": "Postadres van de vestiging" | ||
}, | ||
"werkzamePersonenVestiging": { | ||
"type": "integer", | ||
"description": "Het totaal aantal werkzame personen bij de vestiging. Som van fulltime en parttime" | ||
}, | ||
"activiteiten": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
}, | ||
"description": "Activiteiten die bij een vestiging horen" | ||
}, | ||
"typeEigenaar": { | ||
"type": "string", | ||
"description": "De eigenaar is een natuurlijk persoon of een niet-natuurlijk persoon (afgeleid gegeven)" | ||
}, | ||
"volledigeNaam": { | ||
"type": "string", | ||
"description": "Volledige naam van de natuurlijk persoon of niet-natuurlijk persoon" | ||
}, | ||
"faillisement": { | ||
"type": "string", | ||
"description": "Faillisement" | ||
}, | ||
"uitgebreideRechtsvorm": { | ||
"type": "string", | ||
"description": "Rechtsvorm van de natuurlijk of niet-natuurlijke persoon" | ||
}, | ||
"rol": { | ||
"type": "string", | ||
"description": "Natuurlijk persoon is EIGENAAR en een niet-natuurlijk persoon is VERANTWOORDELIJKE " | ||
}, | ||
"adresseerbaarObjectIdentificatie": { | ||
"type": "string", | ||
"description": "Unieke identificatiecode van het object" | ||
}, | ||
"nummeraanduidingIdentificatie": { | ||
"type": "string", | ||
"description": "Unieke identificatiecode van het object" | ||
}, | ||
"geometrieRd": { | ||
"$ref": "https://geojson.org/schema/Point.json", | ||
"description": "Puntgeometrie van het adresseerbare object in het stelsel van de Rijksdriehoeksmeting (RD)" | ||
}, | ||
"geometrieWgs84": { | ||
"crs": "EPSG:4326", | ||
"$ref": "https://geojson.org/schema/Point.json", | ||
"description": "Puntgeometrie van het adresseerbare object in WGS84 formaat (WGS84)" | ||
} | ||
} | ||
} | ||
} |