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

eID-org-acting-person.json aufgelöst und in eID-natural-person.json integriert.

parent 37b55e83
No related branches found
No related tags found
1 merge request!9Version 0.5
...@@ -39,6 +39,9 @@ Wo möglich wurde `"additionalProperties": false` gesetzt um weitere Properties ...@@ -39,6 +39,9 @@ Wo möglich wurde `"additionalProperties": false` gesetzt um weitere Properties
### Destination ### Destination
models/destination-no-id.json models/destination-no-id.json
### eID
- eID-org-acting-person.json aufgelöst und in eID-natural-person.json integriert.
### Postfachadresse ### Postfachadresse
models/common/address-national.json models/common/address-national.json
models/common/address-postbox.json models/common/address-postbox.json
......
{ {
"title": "Identity Information with Address", "title": "Identity Information with Address",
"description": "", "description": "",
"allOf": [ "type": "object",
{ "properties": {
"$ref": "./eID-org-acting-person.json" "placeOfBirth": {
}, "type": "string",
{ "description": "Geburtsort"
"type": "object", },
"properties": { "dateOfBirth": {
"placeOfResidence": { "type": "string",
"$ref": "./address-national.json" "format": "date",
} "description": "Geburtsdatum"
} },
"gender": {
"type": "string",
"enum": [
"m",
"w",
"x",
"d"
],
"description": "Geschlecht (m=männlich, w=weiblich, x=keine Angabe, d=divers)"
},
"nationality": {
"type": "string",
"description": "Nationalität"
},
"artisticName": {
"type": "string",
"description": "Künstler- oder Ordensname"
},
"doctoralDegrees": {
"type": "string",
"description": "Akademischer Titel, z.B. \"Dr.\" oder \"Prof.\""
},
"birthName": {
"type": "string",
"description": "Geburtsname"
},
"givenName": {
"type": "string",
"description": "Vorname(n)"
},
"familyName": {
"type": "string",
"description": "Familienname"
},
"placeOfResidence": {
"$ref": "./address-national.json"
} }
] }
} }
\ No newline at end of file
{
"type": "object",
"title": "Identity Information without Address",
"additionalProperties": false,
"properties": {
"placeOfBirth": {
"type": "string",
"description": "Geburtsort"
},
"dateOfBirth": {
"type": "string",
"format": "date",
"description": "Geburtsdatum"
},
"gender": {
"type": "string",
"enum": [
"m",
"w",
"x",
"d"
],
"description": "Geschlecht (m=männlich, w=weiblich, x=keine Angabe, d=divers)"
},
"nationality": {
"type": "string",
"description": "Nationalität"
},
"artisticName": {
"type": "string",
"description": "Künstler- oder Ordensname"
},
"doctoralDegrees": {
"type": "string",
"description": "Akademischer Titel, z.B. \"Dr.\" oder \"Prof.\""
},
"birthName": {
"type": "string",
"description": "Geburtsname"
},
"givenName": {
"type": "string",
"description": "Vorname(n)"
},
"familyName": {
"type": "string",
"description": "Familienname"
}
}
}
\ No newline at end of file
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