CD.COM.04 vital_event
Standardised codes/values represent vital events in an individual's life.
Reference: Vital Events Statistics
Code
Values
live_birth
Live birth
death
Death
fetal_death
Fetal death
marriage
Marriage
divorce
Divorce
adoption
Adoption
JSON-LD File on GitHub
https://github.com/spdci/schemas/blob/main/common/v1/VitalEventTypeEnum.jsonld
{
"@context": {
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"spdci": "https://schema.spdci.org/common/v1/",
"@vocab": "http://schema.spdci.org/common/v1",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"schema": "http://schema.org/",
},
"@graph": [
{
"@id": "event:VitalEventTypeEnum",
"@type": "rdfs:Class",
"rdfs:subClassOf": "rdfs:Resource",
"rdfs:label": "Vital Event Type Enum",
"rdfs:comment": "Enumeration for types of vital events.",
"owl:oneOf": [
"event:live_birth",
"event:death",
"event:fetal_death",
"event:marriage",
"event:divorce",
"event:adoption"
]
},
{
"@id": "event:live_birth",
"@type": "event:VitalEventTypeEnum",
"rdfs:label": "Live Birth"
},
{
"@id": "event:death",
"@type": "event:VitalEventTypeEnum",
"rdfs:label": "Death"
},
{
"@id": "event:fetal_death",
"@type": "event:VitalEventTypeEnum",
"rdfs:label": "Fetal death"
},
{
"@id": "event:marriage",
"@type": "event:VitalEventTypeEnum",
"rdfs:label": "Marriage"
},
{
"@id": "event:divorce",
"@type": "event:VitalEventTypeEnum",
"rdfs:label": "Divorce"
},
{
"@id": "event:adoption",
"@type": "event:VitalEventTypeEnum",
"rdfs:label": "Adoption"
}
]
}
Last updated
Was this helpful?