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

คุณวุฒิการศึกษา

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

Info
สำคัญ: กรุณาตรวจสอบให้แน่ใจว่าไฟล์อยู่ในรูปแบบ PDF หรือ OpenCert
{
  "id": { "type": "string" }, // (Required) Unique identifier for the data
  "document_type": { "type": "string" }, // (Required) Must be one of "pdf", "open_cert", or "none"
  "credential_type": { "type": "string" }, // (Required) Must be "education"
  "data": { // { "type": "object" }, (Required)
    "credential": { // { "type": "object" }, (Required)
      "full_name": { "type": "string" }, // (Required)
      "education_provider": { "type": "string" }, // (Required)
      "course_name": { "type": "string" }, // (Required)
      "conferral_year": { "type": ["string", "null"] }, // (Required unless awaiting_graduation) Year: YYYY or null if awaiting graduation
      "awaiting_graduation": { "type": "boolean" }, // (Optional)
      "has_majors": { "type": "boolean" }, // (Optional)
      "majors": { "type": "array", "items": { "type": "string" } }, // (Optional)
      "with_honours": { "type": "boolean" }, // (Optional)
      "transcript": { // { "type": "object" }, // (Optional)
        "overall": { // { "type": "object" }, (Required)
          "issuance_date": { "type": "string" }, // (Required) Date format: "YYYY-MM-DD"
          "score": { "type": "string" }, // (Optional)
        },
        "subjects": [ // { "type": "array" }, (Required)
          {
            "name": { "type": "string" }, // (Required)
            "code": { "type": "string" }, // (Required)
            "credit": { "type": "string" }, // (Optional)
            "score": { "type": "string" }, // (Optional)
            "grade": { "type": "string" }, // (Required), e.g. "A+ or High Distinction or Pass"
            "completion_date": { "type": "string" }, // (Required) Year or ISO date
          }
        ]
      },
      "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 document, the content of an OpenCert document, or null if not applicable.
  }
}

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

การสร้างคุณวุฒิให้ถูกต้อง

มีคู่คีย์-ค่าหลายรายการที่รวมกันเป็นฟิลด์ Qualification ฟิลด์นี้จะแสดงเป็นชื่อเอกสารรับรองบน SEEK Pass และ SEEK (เช่น บนโปรไฟล์ SEEK) ฟิลด์นี้เป็นข้อมูลที่ผู้สมัครและผู้ประกอบการที่ใช้ผลิตภัณฑ์ของเรามองเห็นเด่นชัดที่สุด ดังนั้นการกำหนดฟิลด์ให้ชัดเจนและสื่อความหมายได้ตรงจึงมีความสำคัญมาก ฟิลด์นี้ยังถูกใช้โดยทีมภายใน SEEK เพื่อแมปโครงสร้างข้อมูลภายในระบบของเรา
ฟิลด์ต่อไปนี้จำเป็นสำหรับการสร้างฟิลด์ Qualification ให้ถูกต้อง:
  • course_name
  • majors
  • with_honours
จากข้อมูลนี้ มีวิธีที่แนะนำในการนำฟิลด์เหล่านี้ไปใช้:
  1. 1.
    เขียน course_name ให้เต็ม (เช่น แนะนำให้ใช้ "Bachelor of Commerce" หรือ "Bachelor of Science" หลีกเลี่ยง "BCom" หรือ "BSc")
  2. 2.
    ใช้การสะกดที่ถูกต้องภายใน course_name (เช่น "Master of..." และไม่ใช่ "Masters of...")
  3. 3.
    ใช้คำเชื่อมมาตรฐานภายใน course_name (เช่น "Master of..." แทน "Master in")
  4. 4.
    ใช้ฟิลด์ majors เมื่อเหมาะสม อย่า ใส่วิชาเอกใน course name เพิ่มด้วย
  5. 5.
    ใช้ฟิลด์ with_honours เมื่อเหมาะสม อย่า ใส่เกียรตินิยมใน course_name เพิ่มด้วย

ตัวอย่าง 1

  • course_name: "Bachelor of Commerce"
  • majors: ["Economics", "Finance"]
  • with_honours: true
  • คุณวุฒิ: _Bachelor of Commerce (Economics and Finance) (Honours)_

ตัวอย่าง 2

  • course_name: "Bachelor of Commerce"
  • majors: ["Finance"]
  • with_honours: false
  • คุณวุฒิ: _Bachelor of Commerce (Finance)_

คุณวุฒิแบบ Awaiting graduation

คุณวุฒิการศึกษาที่เรียนจบแล้วแต่ยังไม่ได้รับการมอบวุฒิเนื่องจากกำหนดพิธีรับปริญญายังไม่เสร็จสิ้น ยังสามารถส่งได้ผ่าน Add to SEEK Pass
ข้อกำหนดของฟิลด์มีดังนี้:
  • conferral_year ตั้งค่าเป็น null
  • awaiting_graduation ตั้งค่าเป็น true
ฟิลด์ document_type สามารถตั้งค่าเป็น none ได้เช่นกัน หากไม่มีเอกสารสนับสนุนที่เกี่ยวข้องเพื่อระบุว่า Education Qualification เสร็จสิ้นแล้วแต่ยังไม่ได้รับการมอบวุฒิ

ตัวอย่าง

  • course_name: "Bachelor of Commerce"
  • majors: ["Finance"]
  • conferral_year: null
  • awaiting_graduation: true
  • คุณวุฒิ: _Bachelor of Commerce (Finance) (Awaiting Graduation)_

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

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

ตัวอย่าง payload

ตัวอย่าง OpenCerts: Bachelor of Commerce (Economics and Finance) (Honours)

{
  "id": "fa651300-b91a-49cb-8ee7-cac68b3fdf74",
  "document_type": "open_cert",
  "credential_type": "education",
  "data": {
    "credential": {
      "full_name": "John Doe",
      "education_provider": "National University of Singapore",
      "course_name": "Bachelor of Commerce",
      "conferral_year": "2024",
      "has_majors": true,
      "majors": ["Economics", "Finance"],
      "with_honours": true,
      "transcript": {
        "overall": {
          "issuance_date": "2022",
          "score": "4.5"
        },
        "subjects": [
          {
            "name": "Introductory Microeconomics",
            "code": "ECON10001",
            "credit": "4",
            "score": "4.5",
            "grade": "A+",
            "completion_date": "2020"
          },
          {
            "name": "Introductory Macroeconomics",
            "code": "ECON10002",
            "credit": "4",
            "score": "3.5",
            "grade": "A",
            "completion_date": "2021"
          }
        ]
      }
    },
    "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\"}"
  }
}

ตัวอย่างใบรับรอง PDF

{
  "id": "fa651300-b91a-49cb-8ee7-cac68b3fdf74",
  "document_type": "pdf",
  "credential_type": "education",
  "data": {
    "credential": {
      "full_name": "John Doe",
      "education_provider": "National University of Singapore",
      "course_name": "Bachelor of Commerce",
      "conferral_year": null,
      "awaiting_graduation": true,
      "has_majors": true,
      "majors": ["Economics", "Finance"]
    },
    "document": "https://example.com/certificate.pdf"
  }
}

ตัวอย่าง Awaiting graduation

{
  "id": "fa651300-b91a-49cb-8ee7-cac68b3fdf74",
  "document_type": "none",
  "credential_type": "education",
  "data": {
    "credential": {
      "full_name": "John Doe",
      "education_provider": "National University of Singapore",
      "course_name": "Bachelor of Commerce",
      "conferral_year": null,
      "awaiting_graduation": true,
      "has_majors": true,
      "majors": ["Economics", "Finance"]
    },
    "document": null
  }
}

ตัวอย่างที่มี partner_chain

{
  "id": "fa651300-b91a-49cb-8ee7-cac68b3fdf74",
  "document_type": "open_cert",
  "credential_type": "education",
  "data": {
    "credential": {
      "full_name": "John Doe",
      "education_provider": "National University of Singapore",
      "course_name": "Bachelor of Commerce",
      "conferral_year": "2024",
      "has_majors": true,
      "majors": ["Economics", "Finance"],
      "with_honours": true,
      "partner_chain": [
        { "name": "Partner University" }
      ]
    },
    "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\"}"
  }
}