LogoLogo
WebsiteGitHubSlack
Social Registry v1.0.0
Social Registry v1.0.0
  • Social Registry and SP-MIS Interface
    • Introduction
    • Assumptions
    • Exception Handling
    • Social Registry with SP-MIS Standards
      • Process
        • PRS.SR.01: SP-MIS queries the social registry to verify eligibility for programme enrolment
          • Example 1: Unconditional Household Cash Transfer Scheme
          • Example 2: Widow Cash Transfer Scheme
          • Example 3: Conditional Girl’s Education Cash Transfer Scheme
          • Example 4: Conditional Child Benefit Cash Transfer Scheme
        • PRS.SR.02: SP-MIS updates attributes for a batch of beneficiaries in the social registry
          • Example 1: Conditional Girl’s Education Cash Transfer Scheme
        • PRS.SR.03: Social registry updates attributes for a batch of beneficiaries in SP-MIS
          • Example 1 : Conditional Child Benefit Cash Transfer Scheme
        • PRS.SR.04: Social registry updates attributes for a batch of beneficiaries in the IBR
      • Data
        • Data Objects
          • DO.SR.01 Person
          • DO.SR.02 Group
          • DO.SR.03 Member
          • DO.SR.04 RelatedPerson
          • DO.SR.05 DisabilityInfo
        • Code Directory
          • CD.COM.01 identifier_type
          • CD.COM.02 marital_status
          • CD.COM.03 sex
          • CD.COM.07: relationship_type
          • CD.COM.10: disability_type
          • CD.COM.11: functional_limitation_type
          • CD.COM.12: functional_severity
          • CD.COM.17: education_level
          • CD.SR.02 employment_status
          • CD.SR.03 income_level
          • CD.SR.04 occupation
        • Data Types and Formats
          • DF.COM.STRING.01 date_time
          • DF.COM.STRING.02 phone_number
          • DF.COM.STRING.07 email
          • DT.COM.03 integer
          • DT.COM.02 string
          • DT.COM.04 decimal
          • DT.COM.05 array
          • Copy of DT.COM.05 array
          • DT.COM.06 boolean
      • API
        • Design Principles
        • Versioning
        • Methods
          • API.COM.01 ASY Search (Async approach)
          • API.COM.01 SYN Search (Sync approach)
          • API.COM.02 Event Subscription
          • API.COM.03 Event Notification
          • API.COM.04 ASY Status (Async approach)
          • API.COM.04 SYN Status (Sync approach)
    • Previous Versions
  • Resources
    • Interoperability in Action #6
    • Standards Committee & Acknowledgments
Powered by GitBook
On this page
  • DO.SR.05 DisabilityInfo
  • Example of JSON Data for the Disability Info Data Object

Was this helpful?

  1. Social Registry and SP-MIS Interface
  2. Social Registry with SP-MIS Standards
  3. Data
  4. Data Objects

DO.SR.05 DisabilityInfo

Last updated 1 month ago

Was this helpful?

DO.SR.05 DisabilityInfo

This data object contains information about functional limitations identified in individuals through social protection related data collection, for instance, a social registry related survey. Such surveys increasingly use the Washington Group Short Set on Functioning (WG-SS) as a reference, sometimes with adaptation.

Such data collection will provide elements that would indicate that one or several individual(s) in household surveyed may be a person with a disability. However, considering the restricted number of questions used, the fact that enumerators are not trained to assess disability and may obtain the information from one household member on behalf of other, this information is only indicative and cannot be considered as reliable as information coming from a disability registry (DR) for which individual disability assessment has been carried out. Information from the DR about a particular individual will normally supersede the disability related information collected directly during social protection data collection.

When a country does not have a digitised DR, or when interoperability between a DR and social protection system is not operational, a set of information related to disability assessment and certification could be recorded within the social protection system (refer to data object, which contains comprehensive disability details of persons with disabilities).

Attribute
Type
Cardinality
Description

functional_type

CD.COM.10: functional_limitation _type

0...*

The specific type(s) of functional limitation the person has, for example, vision

functional_severity

CD.COM.11: functional_limitations_level

0...1

Indicates the severity level of the functional limitation

Example of JSON Data for the Disability Info Data Object

{
  "@context": {
    "spdci": "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": "spdci:DisabilityInfoExample1",
  "@type": "spdci:DisabilityInfo",
  "rdfs:label": "Example Disability Information",
   "spdci:disability_type": 
    "Visual Impairment",
  "spdci:functional_severity": 
    "Moderate"
  
  
}
 

DO.DR.02 DisabilityDetails
https://github.com/spdci/schemas/blob/main/extensions/social/v1/DisabilityInfo.jsonld
{
    "@context": {
      "spdci": "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": "spdci:DisabilityInfo",
    "@type": "rdfs:Class",
    "rdfs:comment": "This data object contains the information on disabilities a member is suffering from.",
    "rdfs:label": "DisabilityInfo",
    "rdfs:subClassOf": [
      {
        "@type": "rdfs:Class",
        "rdfs:label": "Structured Entity"
      }
    ],
    "rdfs:property": [
          {
            "@id": "spdci:disability_type",
            "@type": "rdfs:Datatype",
            "rdfs:domain": "spdci:DisabilityInfo",
            "rdfs:range":  {
              "@type": "common:DisabilityTypeEnum"
            },
            "rdfs:comment": "Describes the type of functional limitation experienced by the individual."
          },
          {
            "@id": "spdci:disability_limitation_type",
            "@type": "rdfs:Datatype",
            "rdfs:domain": "spdci:DisabilityInfo",
            "rdfs:range":  {
              "@type": "common:FunctionalLimitationType"
      
            },
            "rdfs:comment": "Describes the type of functional limitation experienced by the individual."
          },
          {
            "@id": "spdci:functional_severity",
            "@type": "rdfs:Datatype",
            "rdfs:domain": "spdci:DisabilityInfo",
            "rdfs:range": {
             "@type": "common:FunctionalSeverityEnum"
            },
            "rdfs:comment": "Indicates the severity level of the functional limitation."
          }
    ]
    }