DO.DR.01 PersonwithDisability(PWD)

DO.DR.01 PersonwithDisability(PWD)

The PWD data object is designed to provide essential information about persons with disabilities that may be requested by SP systems from DR systems. This data object includes:

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

  • Disability support requirements: Information about the support required by the individual to overcome their functional difficulties and the barriers they face in daily life and participating in society.

  • Specific disability information: Details regarding the disability status of the person, as well as as type and level of impairment/functional limitations, depending on the information that is recorded in the disability registry

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

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

Attribute
Type
Cardinality
Description

personal_details

0...1

Basic identifying information of the individual

disability_status

0...1

Disability status from a disability assessment

disability_status_level

0...1

Disability category assigned after an assessment categorising 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

Type of transport/mobility required by the PWD

housing_type

0...1

Place where the person is living

programs_enrolments

0...*

Details of other programmes the person with a disability is benefiting from

registration_date

0...1

Date the disabled person was registered in the DR

last_updated

0...1

Date the person record was last updated

Example of JSON Data Structure for a PWD

  {
    "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

Was this helpful?