CD.COM.02 marital_status
Marital status reference database: Standardised codes/values representing different marital status categories.
Reference: FHIR Marital Status
Code
Values
Description
S
Never Married
No marriage contract ever entered into
M
Married
Current marriage contract is active
W
Widow
Spouse has died
A
Annulled
Marriage contract declared null and not to have existed
D
Divorced
Marriage contract declared dissolved and inactive
L
Legally Separated
Legally separated
U
Unmarried
Not presently married, marital history is not known or stated
Marital_status can also be encoded as an data type.
JSON-LD File on GitHub
https://github.com/spdci/schemas/blob/main/common/v1/MaritalStatusEnum.jsonld
{
"@context": {
"spdci": "https://schema.spdci.org/common/v1/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"schema": "http://schema.org/",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"owl": "http://www.w3.org/2002/07/owl#"
},
"@graph": [
{
"@id": "category:MaritalStatusEnum",
"@type": "rdfs:Class",
"rdfs:subClassOf": "rdfs:Resource",
"rdfs:label": "Marital Status Type Enum",
"rdfs:comment": "Enumeration for types of marital status category.",
"owl:oneOf": [
"category:S",
"category:M",
"category:W",
"category:A",
"category:D",
"category:L",
"category:U"
]
},
{
"@id": "category:S",
"@type": "category:MaritalStatusEnum",
"rdfs:label": "Never Married",
"rdfs:comment": "No marriage contract has ever been entered."
},
{
"@id": "category:M",
"@type": "category:MaritalStatusEnum",
"rdfs:label": "Married",
"rdfs:comment": "A current marriage contract is active."
},
{
"@id": "category:W",
"@type": "category:MaritalStatusEnum",
"rdfs:label": "Widow",
"rdfs:comment": "The spouse has died."
},
{
"@id": "category:A",
"@type": "category:MaritalStatusEnum",
"rdfs:label": "Annulled",
"rdfs:comment": "Marriage contract has been declared null and to not have existed."
},
{
"@id": "category:D",
"@type": "category:MaritalStatusEnum",
"rdfs:label": "Divorced",
"rdfs:comment": "Marriage contract has been declared dissolved and inactive."
},
{
"@id": "category:L",
"@type": "category:MaritalStatusEnum",
"rdfs:label": "Legally Separated",
"rdfs:comment": "Legally Separated."
},
{
"@id": "category:U",
"@type": "category:MaritalStatusEnum",
"rdfs:label": "Unmarried",
"rdfs:comment": "The person is not presently married. The marital history is not known or stated."
}
]
}
Last updated
Was this helpful?