เริ่มต้นใช้งาน
ข้อมูลหลัก
อื่นๆ

ข้อมูลประจำตัวดิจิทัล

คำอธิบายฟิลด์

{
  "id": { "type": "string" }, // (Required) Unique identifier for the data
  "document_type": { "type": "string" }, // (Required) Must be "none"
  "credential_type": { "type": "string" }, // (Required) Must be "digital_identity"
  "data": { // { "type": "object" }, (Required)
    "credential": { // { "type": "object" }, (Required)
      "full_name": { "type": "string" }, // (Required)
      "date_of_birth": { "type": ["string", "null"], "format": "date" }, // (Optional) Encouraged to be included if available. Date format: "YYYY-MM-DD"
      "identity_document_validity": { "type": "string" }, // (Required) Must be one of "manual", "government_database", "verifiable_credential"
      "identity_document_liveness": { "type": "string" }, // (Required) Must be one of "automated", "in_person",
      "identity_document_person_match": { "type": "string" }, // (Required) Must be one of "manual", "automated", "government_database"
    },
    "partner_chain": { "type": ["array", "null"] } // (Optional unless otherwise specified) Array of objects to specifiy partner institutions, e.g. [{ "name": "Partner Organization" }]
  }
}

การใช้ประโยชน์จากฟิลด์ Digital Identity

การตรวจสอบยืนยันตัวตน

Payload ของคุณต้องมีฟิลด์ที่อธิบายระดับของการตรวจสอบความถูกต้องที่เกี่ยวข้องในกระบวนการประเมินของคุณ
สิ่งนี้ช่วยให้เราเข้าใจระดับความลึกของการยืนยันที่ใช้ในการประเมินการส่งข้อมูล Digital Identity นี้
การตรวจสอบความถูกต้องฟิลด์รายละเอียด
คุณได้ยืนยันแล้วหรือไม่ว่าผู้ใช้มีเอกสารยืนยันตัวตนที่ออกโดยราชการที่ถูกต้อง?identity_document_validitymanualใช่ มนุษย์ได้ตรวจดูเอกสาร
government_databaseใช่ ผ่านการยืนยันกับฐานข้อมูลของภาครัฐ (เช่น DUKCAPIL, DVS)
verifiable_credentialใช่ ผ่านการยืนยันโดยใช้แหล่งข้อมูล/รูปแบบที่ตรวจสอบได้ด้วยการเข้ารหัส (เช่น Singpass, ISO mDL)
คุณได้ยืนยันแล้วหรือไม่ว่าเอกสารนี้ได้รับมาจากผู้ใช้ตัวจริง?identity_document_livenessautomatedใช่ ผ่านระบบยืนยันความมีชีวิตแบบอัตโนมัติ (เช่น Amazon Rekognition)
in_personใช่ เอกสารถูกส่งมาแบบพบตัว
คุณได้ยืนยันแล้วหรือไม่ว่าผู้ใช้เป็นบุคคลเดียวกับที่ปรากฏอยู่ในเอกสารยืนยันตัวตนที่ออกโดยราชการ?identity_document_person_matchmanualใช่ มนุษย์ได้เปรียบเทียบรูปถ่ายของผู้ใช้กับรูปถ่ายบนเอกสารระบุตัวตนที่ออกโดยภาครัฐ
automatedใช่ มีการใช้ระบบอัตโนมัติเพื่อเปรียบเทียบรูปถ่ายของผู้ใช้กับรูปถ่ายบนเอกสารระบุตัวตนที่ออกโดยภาครัฐ (เช่น Amazon Rekognition)
government_databaseใช่ มีการใช้ระบบอัตโนมัติเพื่อเปรียบเทียบรูปถ่ายของผู้ใช้กับรูปถ่ายที่จัดเก็บไว้ในฐานข้อมูลของภาครัฐ (เช่น FVS)
Info
หากคุณไม่สามารถตั้งชื่อการส่งข้อมูลของคุณตามคำตอบที่เราให้ไว้ โปรดติดต่อเราเพื่อขอความช่วยเหลือเพิ่มเติม

ห่วงโซ่พาร์ทเนอร์

ฟิลด์ partner_chain ใช้เก็บความสัมพันธ์ระดับกลางในลำดับชั้นพาร์ทเนอร์แบบหลายชั้นที่ไม่ได้แสดงไว้ในส่วนอื่นของการผสานรวม ซึ่งช่วยเพิ่มความละเอียดของการวิเคราะห์ที่ SEEK Pass สามารถมอบให้คุณได้คลิกที่นี่เพื่อดูรายละเอียดเพิ่มเติม

ตัวอย่าง payload

{
  "id": "fa651300-b91a-49cb-8ee7-cac68b3fdf74",
  "document_type": "none",
  "credential_type": "digital_identity",
  "data": {
    "credential": {
      "full_name": "John Doe",
      "date_of_birth": "1990-01-30", // Optional but encouraged to be included if available
      "identity_document_validity": "manual",
      "identity_document_liveness": "in_person",
      "identity_document_person_match": "government_database"
    }
  }
}