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

การเรียนรู้และพัฒนาตนเอง (Microcredential)

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

Info
สำคัญ: กรุณาตรวจสอบให้แน่ใจว่าไฟล์เอกสารที่แนบมา (ถ้ามี) อยู่ในรูปแบบ PDF, PNG, JPG หรือ OpenCert
{
  "id": { "type": "string" }, // (Required) Unique identifier for the data
  "credential_type": { "type": "string" }, // (Required) Must be "microcredential"
  "document_type": { "type": "string" }, // (Required) Must be one of "pdf", "png", "jpg", "open_cert", or "none"
  "data": { // { "type": "object" }, (Required)
    "credential": { // { "type": "object" }, (Required)
      "full_name": { "type": "string" }, // (Required)
      "issuer_name": { "type": "string" }, // (Required)
      "microcredential_name": { "type": "string" }, // (Required)
      "issue_date": { "type": "string" }, // (Required) Date format: "YYYY-MM-DD"
      "expiry_date": { "type": "string" }, // (Optional) Date format: "YYYY-MM-DD"
      "assessment_result": { "type": ["string", null] }, // (Optional) Text description
      "partner_chain": { "type": ["array", "null"] } // (Optional unless otherwise specified) Array of objects to specifiy partner institutions, e.g. [{ "name": "Partner Organization" }]
    },
    "document": { "type": "string" }, // (Optional) Depending on the supplied document_type, either a URL pointing to a PDF/JPG/PNG document, the content of an OpenCert document, or null if not applicable.
  }
}

การใช้ประโยชน์จากฟิลด์ Learning and Development

ชื่อ Microcredential

ระบุชื่อ microcredential ที่อธิบายชื่อคุณวุฒิได้อย่างชัดเจน ซึ่งจะช่วยให้ผู้ประกอบการเข้าใจความสำเร็จเมื่อแสดงบนโปรไฟล์ของผู้ใช้
อย่าใช้ประเภทใบรับรองทั่วไปเป็นชื่อ microcredential (เช่น *Certificate of Participation* หรือ *Certificate of Completion*) เพราะไม่เหมาะสำหรับการยืนยัน

ชื่อผู้ออกเอกสาร

ฟิลด์ issuing party ต้องแสดงแหล่งที่มาของคุณวุฒิอย่างชัดเจน และควรอธิบายได้เพียงพอเพื่อให้เป็นประโยชน์ต่อผู้ประกอบการเมื่อแสดงบนโปรไฟล์ของผู้ใช้

ตัวอย่าง

ไม่เหมาะสมClear
เหมาะสมTick
{ `issuer_name`: "LearningProvider" `microcredential_name`: "*Certificate of Completion*" }
{ `issuer_name`: "LearningProvider" `microcredential_name`: "Microsoft Excel Skills" }
{ `issuer_name`: "Management" `microcredential_name`: "Management skills" }
{ `issuer_name`: "ABC Management Academy" `microcredential_name`: "Management skills" }

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

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

ตัวอย่าง payload

พร้อมเอกสาร PDF

{
  "id": "fa651300-b91a-49cb-8ee7-cac68b3fdf74",
  "credential_type": "microcredential",
  "document_type": "pdf",
  "data": {
    "document": "https://example.com/certificate.pdf",
    "credential": {
      "full_name": "John Doe",
      "issuer_name": "ExampleProvider",
      "microcredential_name": "Skill Test #1",
      "issue_date": "2024-08-31",
      "expiry_date": "2026-08-31",
      "assessment_result": "85%"
    }
  }
}

พร้อมเอกสาร OpenCert

{
  "id": "fa651300-b91a-49cb-8ee7-cac68b3fdf74",
  "credential_type": "microcredential",
  "document_type": "open_cert",
  "data": {
    "document": "{\"version\":\"https://schema.openattestation.com/2.0/schema.json\",\"schema\":\"https://raw.githubusercontent.com/OpenCerts/open-certificate/master/schema/transcripts/2.0/schema.json\"}",
    "credential": {
      "full_name": "John Doe",
      "issuer_name": "ExampleProvider",
      "microcredential_name": "Skill Test #2",
      "issue_date": "2024-08-31",
      "expiry_date": "2026-08-31",
      "assessment_result": "Pass"
    }
  }
}

ไม่มีเอกสาร

{
  "id": "fa651300-b91a-49cb-8ee7-cac68b3fdf74",
  "credential_type": "microcredential",
  "document_type": "none",
  "data": {
    "document": null,
    "credential": {
      "full_name": "John Doe",
      "issuer_name": "ExampleProvider",
      "microcredential_name": "Skill Test #3",
      "issue_date": "2024-08-31",
      "expiry_date": "2026-08-31"
    }
  }
}

พร้อม partner_chain

{
  "id": "fa651300-b91a-49cb-8ee7-cac68b3fdf74",
  "credential_type": "microcredential",
  "document_type": "pdf",
  "data": {
    "document": "https://example.com/certificate.pdf",
    "credential": {
      "full_name": "John Doe",
      "issuer_name": "ExampleProvider",
      "microcredential_name": "Skill Test #1",
      "issue_date": "2024-08-31",
      "expiry_date": "2026-08-31",
      "assessment_result": "85%",
      "partner_chain": [{ "name": "Partner Organization" }]
    }
  }
}