Getting started
Core resources
Other

Right to Work

Field descriptions

{
  "id": { "type": "string" }, // (Required) Unique identifier for the data
  "document_type": { "type": "string" }, // (Required) Must be "none"
  "credential_type": { "type": "string" }, // (Required) Must be "right_to_work"
  "data": { // { "type": "object" }, (Required)
    "credential": { // { "type": "object" }, (Required)
      "full_name": { "type": "string" }, // (Required)
      "country": { "type": "string" },  // (Required) 2 character ISO Code for the country
      "singapore_work_rights": { "type": "string" }, // (Optional) Required when country is "SG",
      "partner_chain": { "type": ["array", "null"] } // (Optional unless otherwise specified) Array of objects to specifiy partner institutions, e.g. [{ "name": "Partner Organization" }]
    },
  }
}

Sample payload

{
  "id": "fa651300-b91a-49cb-8ee7-cac68b3fdf74",
  "document_type": "none",
  "credential_type": "right_to_work",
  "data": {
    "credential": {
      "full_name": "John Doe",
      "country": "SG",
      "singapore_work_rights": "resident"
    }
  }
}