-
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.
- Loading branch information
1 parent
4a8fda9
commit a157895
Showing
2 changed files
with
148 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,146 @@ | ||
{ | ||
"id": "natuurlijkpersoon", | ||
"type": "table", | ||
"version": "1.2.0", | ||
"shortname": "Nps", | ||
"schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"identifier": [ | ||
"identificatie" | ||
], | ||
"required": [ | ||
"schema", | ||
"identificatie" | ||
], | ||
"display": "identificatie", | ||
"properties": { | ||
"schema": { | ||
"$ref": "https://schemas.data.amsterdam.nl/[email protected]#/definitions/schema" | ||
}, | ||
"identificatie": { | ||
"type": "string", | ||
"description": "identificatie" | ||
}, | ||
"bsnNummer": { | ||
"type": "string", | ||
"description": "BSN-nummer" | ||
}, | ||
"datumActueelTot": { | ||
"type": "string", | ||
"format": "date-time", | ||
"description": "einddatum van de cyclus, eventueel in combinatie met het kenmerk Status" | ||
}, | ||
"geslachtsnaam": { | ||
"type": "string", | ||
"description": "geslachtsnaam van de NP" | ||
}, | ||
"voorvoegselGeslachtsnaam": { | ||
"type": "string", | ||
"description": "eventuele voorvoegsels van de naam van de NP" | ||
}, | ||
"voornamen": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"voornaam": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"description": "voornaam of voornamen van de NP" | ||
}, | ||
"geslachtsaanduiding": { | ||
"type": "string", | ||
"description": "geslachtsaanduiding van de NP conform de GBA" | ||
}, | ||
"volledigeNaam": { | ||
"type": "string", | ||
"description": "volledige naam van de Persoon (PRS)" | ||
}, | ||
"geboortedatum": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "geboortedatum van de NP" | ||
}, | ||
"geboorteplaats": { | ||
"type": "string", | ||
"description": "plaats waar de betreffende NP is geboren" | ||
}, | ||
"geboorteland": { | ||
"type": "string", | ||
"description": "land waar de NP geboren is" | ||
}, | ||
"overlijdensdatum": { | ||
"type": "string", | ||
"format": "date", | ||
"description": "overlijdensdatum van de NP" | ||
}, | ||
"schuldsanering": { | ||
"type": "string", | ||
"description": "(SSN)" | ||
}, | ||
"surceanceVanBetaling": { | ||
"type": "boolean", | ||
"description": "(SUR)" | ||
}, | ||
"status": { | ||
"type": "string", | ||
"description": "status waarin de surseance verkeert, dit kan voorlopig of definitief zijn" | ||
}, | ||
"duur": { | ||
"type": "integer", | ||
"description": "duur van de periode (in maanden) waarvoor surseance van betaling geldt" | ||
}, | ||
"faillisement": { | ||
"type": "string", | ||
"description": "(FAL)" | ||
}, | ||
"persoonRechtsvorm": { | ||
"type": "string", | ||
"description": "type persoon (NP) of (NNP, Samenwerkingsverband, Rechtspersoon" | ||
}, | ||
"uitgebreideRechtsvorm": { | ||
"type": "string", | ||
"description": "Rechtsvorm van inschrijving aangevuld met informatie over structuur, rechtbevoegdehid etc." | ||
}, | ||
"typePersoon": { | ||
"type": "string", | ||
"description": "type persoon" | ||
}, | ||
"rol": { | ||
"type": "string" | ||
}, | ||
"toegangscode": { | ||
"type": "string", | ||
"description": "toegangscode telefoonnummer" | ||
}, | ||
"nummer": { | ||
"type": "integer", | ||
"description": "telefoonnummer" | ||
}, | ||
"heeftFunctieVervulling": { | ||
"type": "object", | ||
"properties": { | ||
"identificatie": { | ||
"type": "string" | ||
} | ||
}, | ||
"relation": "handelsregister:functievervulling", | ||
"description": "Een Natuurlijk Persoon (NP) heeft een Functievervulling (FVV)" | ||
}, | ||
"isFunctieVervulling": { | ||
"type": "object", | ||
"properties": { | ||
"identificatie": { | ||
"type": "string" | ||
} | ||
}, | ||
"relation": "handelsregister:functievervulling", | ||
"description": "Een Natuurlijk Persoon (NP) is een Functievervulling (FVV)" | ||
} | ||
} | ||
} | ||
} |