DO.DR.01 PWDPerson

DO.DR.01 PWDPerson

The Person With Disability (PWDPerson) data object is designed to provide essential information about persons with disabilities, which may be requested by social protection systems from disability systems. This data object includes:

  • Personal Details: Basic identifying information of the person, such as name, age, gender, and contact information.

  • Specific Disability Information: Details regarding the nature and extent of the person's disability, including type, and level.

  • Support Needs: Information about the assistance required by the person to facilitate their daily living and participation in society.

It is important to emphasize that the PWD data object does not encompass the complete set of details found in the disability registry. Instead, it focuses on the information pertinent to interoperability scenarios between disability and social protection systems.

This data object serves as a guideline, and the specific data requested by social protection systems may differ based on the unique requirements of each program.

AttributeTypeCardinalityDescription

personal_details

0...1

Basic identifying information of the individual

disability_status

0...1

The disability status of a disability assessment

disability_status_level

0...1

Disability category assigned after an assessment categorizing an individual's level of impairment

disability_details

0...*

Specific disability information

disability_support

0...*

Information about the assistance required by the individual to facilitate their daily living and participation in society

transport_requirement

0...1

The type of transport/mobility required by the person with disability

housing_type

0...1

The place where the person is living

programs_enrolments

0...*

Details of other programs the person living with disability is benefiting from

registration_date

0...1

The date the disabled person was registered in the DR

last_updated

0...1

The date the person record was last updated

Example of JSON data structure for a PWDperson

  {
    "personal_details": {
    "identifier": "123456",
    "name": {
      "first_name": "John",
      "last_name": "Doe"
    },
    "date_of_birth": "1990-05-15",
    "gender": "Male"
    },
    "disability_status": "Approved",
    "disability_level": "Severe",
    "disability_details": [
      {
         "impairment_type": "Physical and movement related functions",
         "impairment_level": "Severe impairment or difficulty",
         "impairment_cause": "Work Accident",
         "age_on_set": "Working age"
      }
    ],
    "disability_support": [
      {
        "human_assistance":{
            "frequency": "Permanent",
            "type": "mobility",
            "support_status": "Required"
          }  
      },
    ],
    "transport_requirement": "Adaptable vehical",
    "housing_type": "Social housing",
    "programs_enrollments":[
        {
          "programme_name" : "financial_assistance",
          "programme_identifier": "AD234"
        }
    ],
    "registration_date": "2023-01-10T00:00:00Z",
    "last_updated": "2023-09-20T00:00:00Z"

  }

JSON-LD File on GitHub

Last updated