CD.IBR.02 enrolment_status
Beneficiary's status with a specific programme:
1
Active
The beneficiary is currently receiving benefits.
2
Deceased
The beneficiary is deceased.
3
Graduated
The beneficiary has met the criteria to graduate from the programme.
4
Suspended
The beneficiary has been suspended from the programme.
5
Inactive
The beneficiary is temporarily not receiving benefits, but has not been formally suspended or exited the programme. This could be due to administrative issues, temporary ineligibility, or the beneficiary's personal request.
6
Reinstated
The beneficiary was previously suspended or exited, but has been reinstated in the programme, typically after meeting certain conditions or upon resolution of the issues that led to their suspension or exit.
7
Awaiting Renewal
The beneficiary's enrolment period is nearing its end, and they are in the process of renewal, subject to reassessment and continued eligibility.
JSON-LD File on GitHub
{
"@context": {
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"@vocab": "https://schema.spdci.org/extensions/ibr/v1/"
},
"@graph": [
{
"@id": "benefit:EnrollmentStatusEnum",
"@type": "rdfs:Class",
"rdfs:subClassOf": "rdfs:Resource",
"rdfs:label": "Beneficiary Status Enum",
"rdfs:comment": "Enumeration for the status of beneficiaries with a specific program.",
"owl:oneOf": [
"benefit:1",
"benefit:2",
"benefit:3",
"benefit:4"
]
},
{
"@id": "benefit:1",
"@type": "benefit:EnrollmentStatusEnum",
"rdfs:label": "Active",
"rdfs:comment": "Standardized code for an active beneficiary."
},
{
"@id": "benefit:2",
"@type": "benefit:EnrollmentStatusEnum",
"rdfs:label": "Deceased",
"rdfs:comment": "Standardized code for a deceased beneficiary."
},
{
"@id": "benefit:3",
"@type": "benefit:EnrollmentStatusEnum",
"rdfs:label": "Graduated",
"rdfs:comment": "Standardized code for a graduated beneficiary."
},
{
"@id": "benefit:4",
"@type": "benefit:EnrollmentStatusEnum",
"rdfs:label": "Suspended",
"rdfs:comment": "Standardized code for a suspended beneficiary."
}
]
}
Last updated
Was this helpful?