DO.EMP.02 Member

This data object contains additional individual attributes required in programs participation. A member belongs to a specific group or unit, such as a family or household.

Attribute
Type
Cardinality
Description

member_identifier

0...*

Unique identifier assigned to each individual

demographic_info

0...1

Personal details of the individual

related_person

0...*

Persons related to the individual and their relationship type

self_id_disability

0...1

Self identification as person with disablities yes(1) or no(0)

disability_info

0...*

Additional attributes for people with disabilities

marital_status

0...1

Marital status of the individual

education_level

0...1

Individual's education level

occupation

0...1

Occupation of the individual

employment_status

0...1

Tthe type of explicit or implicit contract between the worker and the organization or person for whom they work

unemployment_reason

0..1

Why a person left their last job or why they are currently seeking work

employment_info

0...*

Employment history

income_level

0...1

Income level of the individual

language_code

0...*

Languages spoken by the individual

additional_attributes

0...1

Additional characteristics of the individual

registration_date

0...1

Date the household individual was registered

last_updated

0...1

Date the individual's details were last updated

Example of JSON Data for the Member Data Object

{
"@context": {
    "spdci": "https://schema.spdci.org/extensions/PES/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/"
    },
    "@id": "https://example.org/member/987654321",
    "@type": "spdci:Member",
    "member_identifier": [{
    "@type": "Identifier",
    "identifier_type": "UIN",
    "identifier_value": "42343545654"
    } ],
    "demographic_info": {
        "@type": "PES_Person",
        "identifier": [ {
            "@type": "Identifier",
            "identifier_type": "NationalID",
            "identifier_value": "9876543210"
        } ],
        "name":{
            "@type": "Name",
            "surname": "Smith",
            "given_name": "Alice",
            "prefix": "Ms.",
            "suffix": ""
        },
        "sex": "female",
        "birth_date": "1985-05-20"
        },
    "related_person": [{
        "@type": "RelatedPerson",
        "relationship_type": "spouse",
        "related_member": {
            "@type": "Member",
            "@id": "https://example.org/member/123456789",
            "member_identifier": "M123456789"
            }
        },
        {
        "@type": "RelatedPerson",
        "relationship_type": "child",
        "related_member": {
            "@type": "Member",
            "@id": "https://example.org/member/987654322",
            "spdci:member_identifier": "M987654322"
            }
    }],
    "is_disabled": false,
    "marital_status": "married",
    "employment_status": "employed",
    "occupation": "teacher",
    "income_level": "middle",
    "language_code": ["en", "es"],
    "education_level": "bachelor",
    "additional_attributes": ["extra_work": "volunteer"],
    "registration_date": "2022-01-10T08:00:00Z",
    "last_updated": "2023-06-15T10:00:00Z"}

JSON-LD File on GitHub

Last updated

Was this helpful?