DO.DR.01 DisabledPerson

DO.DR.01 DisabledPerson

This data object contains information conveyed from SP-MIS to the DR regarding the disabled person. Some personal data available in SP-MIS but not required in the DR is excluded for data protection purposes.

AttributeTypeCardinalityDescription

identifier

DO.COM.01 Identifier

0...*

identifier

member

0...1

An individual belonging to a family or household

care_giver

DO.SR.01 Person

0...1

The person taking care of the disabled person

relationship_type

CD.COM.07 RelationshipType

0...1

The relationship between the disabled and care giver

disability_support

0...*

The support needed/received for the disabled person

human_assistance

0...1

the level of human assistance the disabled person might need.

registration_date

DF.COM.01 date_time

0...1

The date the disabled person was registered

last_updated

DF.COM.01 date_time

0...1

The date the individual was last updated

Example of JSON data structure for a disabled

{
  "@context": {
    "spdci": "https://schema.spdci.org/extensions/dr/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/"
  },
  "@id": "https://example.org/dr_person/123456789",
  "@type": "spdci:DR_Person",
  "identifier": [
        {
          "@type": "Identifier",
          "identifier_type": "UIN",
          "identifier_value": "847951632"
        }],
  "member": {
     "member_identifier": [
        {
          "@type": "Identifier",
          "identifier_type": "UIN",
          "identifier_value": "847951632"
        }],
    "name": {
        "@type": "Name",
        "surname": "Doe",
        "given_name": "John",
        "prefix": "Mr."
      },
    "sex": "male",
    "birth_date": "1990-04-12T10:00:00Z",
    "is_disabled": true,
    "disability_info": [
      {
        "disability_by_birth": false,
        "disabled_since": "2010-05-12T10:00:00Z",
        "disability_due_to": "Accident",
        "disability_limitation_type": "b21009",
        "functional_severity": "Moderate"
      }
    ]
  },
  "care_giver": {
    "identifier": [
      {
        "identifier_type": "NationalID",
        "identifier_value": "987654321"
      }
    ],
    "name": 
      {
        "surname": "Smith",
        "given_name": "Alice",
        "prefix": "Ms."
      }
  },
  "relationship_type": "parent",
  "registration_date": "2022-01-10T08:00:00Z",
  "last_updated": "2023-06-15T10:00:00Z"
}

JSON-LD File on GitHub

Last updated