DO.IBR.01 Beneficiary
DO.IBR.01: Beneficiary
This data object contains information conveyed from the SP-MIS to the IBR regarding beneficiaries, who could be individuals, families or households, and the benefits received. For families and households, information about the head or nominated beneficiary is provided. The data object also includes details on the most recently provided benefit and current enrolment status in the programme. Some personal data available in the SP-MIS, but not required in the IBR, is excluded for data protection purposes.
Attribute
Type
Cardinality
Description
programme_identifier
0...*
Programme in which the beneficiary is/was enrolled and accompanying information
status_change_date
0...*
Date the beneficiary's enrolment status changed in the programme
Example of JSON Data Structure for a Family Assistance Unit Beneficiary
{
"@context": {
"spdci": "https://schema.spdci.org/extensions/ibr/v1/",
"social": "https://schema.spdci.org/extensions/social/v1/",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"owl": "http://www.w3.org/2002/07/owl#",
"common": "https://schema.spdci.org/common/v1/"
},
"@type": "spdci:Beneficiary",
"assistance_unit": "family",
"group": {
"@type": "Group",
"group_identifier": [
{
"@type": "Identifier",
"identifier_type": "UIN",
"identifier_value": "847951632"
}
],
"group_type": "family",
"place_address":0,
"address": {
"@type": "Address",
"street_address": "123 Main St",
"city": "Anytown",
"postal_code": "12345",
"country": "CountryName"
}
},
"programme_identifier": [
{
"programme_name": "Health Support Program",
"programme_code": "HSP001"
},
{
"programme_name": "Education Aid",
"programme_code": "EDU001"
}
],
"enrollment_date": "2023-01-01T08:00:00Z",
"enrollment_status": "active",
"status_change_date": ["2023-01-01T08:00:00Z"],
"benefits": [
{
"@type": "Benefit",
"benefit_name": "Healthcare Coverage",
"benefit_amount": "1000",
"currency": "USD",
"date_received": "2023-01-01T08:00:00Z"
},
{
"@type": "Benefit",
"benefit_name": "Educational Grant",
"benefit_amount": "500",
"currency": "USD",
"date_received": "2023-01-01T08:00:00Z"
}
]
}
Example of JSON Data Structure for a Person/Group Member Assistance Unit Beneficiary
{
"@context": {
"spdci": "https://schema.spdci.org/extensions/ibr/v1/",
"social": "https://schema.spdci.org/extensions/social/v1/",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"owl": "http://www.w3.org/2002/07/owl#",
"common": "https://schema.spdci.org/common/v1/"
},
"@type": "spdci:Beneficiary",
"assistance_unit": "member",
"member": {
"@type": "Member",
"member_identifier": [{
"identifier_type": "NationalID",
"identifier_value": "1234567890"
}],
"demographic_info": {
"@type": "Person",
"identifier":[ {
"@type": "Identifier",
"identifier_type": "NationalID",
"identifier_value": "1234567890"
}],
"name": {
"@type": "Name",
"surname": "Doe",
"given_name": "John",
"prefix": "Mr.",
"suffix": ""
},
"sex": "male",
"birth_date": "1980-01-01"
}
},
"programme_identifier": [
{
"programme_name": "Health Support Program",
"programme_code": "HSP001"
},
{
"programme_name": "Education Aid",
"programme_code": "EDU001"
}
],
"enrollment_date": "2023-01-01T08:00:00Z",
"enrollment_status": "active",
"status_change_date": ["2023-01-01T08:00:00Z"],
"benefits": [
{
"benefit_name": "Healthcare Coverage",
"benefit_amount": "1000",
"currency": "USD",
"date_received": "2023-01-15"
},
{
"benefit_name": "Educational Grant",
"benefit_amount": "500",
"currency": "USD",
"date_received": "2023-02-01"
}
]
}
https://github.com/spdci/schemas/blob/main/extensions/ibr/v1/Beneficiary.jsonld
Last updated
Was this helpful?