id.sifa.profile.education

sifa.id

Documentation

Record representing a single education credential.

main record

Record representing a single education credential.

Record Key tid Timestamp-based ID

Properties

activities string Optional

Activities, societies, and extracurriculars.

maxLength: 10000 bytesmaxGraphemes: 1000 graphemes
createdAt string datetime Required

Client-declared timestamp when this record was originally created.

degree string Optional

Degree name (e.g., 'Bachelor of Science', 'Master of Arts').

maxLength: 2560 bytesmaxGraphemes: 256 graphemes
description string Optional

Additional description or notes about the education.

maxLength: 50000 bytesmaxGraphemes: 5000 graphemes
endedAt string Optional

End date (graduation or expected graduation) in YYYY-MM or YYYY-MM-DD format. Omit if currently enrolled.

entityRef string uri Optional

Portable, app-neutral identifier for the educational institution the user selected from a resolver dropdown: a Wikidata Q-ID URI (http://www.wikidata.org/entity/Q...), a ROR URI, or an LEI URI. Enables deterministic resolution to a canonical entity even before the institution claims an ATproto account. Absent for free-text entries.

fieldOfStudy string Optional

Field of study or major.

maxLength: 2560 bytesmaxGraphemes: 256 graphemes
grade string Optional

Grade, GPA, or classification achieved.

maxLength: 500 bytesmaxGraphemes: 50 graphemes
institution string Required

Name of the educational institution.

maxLength: 2560 bytesminLength: 1 bytesmaxGraphemes: 256 graphemes
institutionDid string did Optional

DID of the institution's ATproto account, if one exists.

startedAt string Optional

Start date in YYYY-MM or YYYY-MM-DD format.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "institution",
      "createdAt"
    ],
    "properties": {
      "grade": {
        "type": "string",
        "maxLength": 500,
        "description": "Grade, GPA, or classification achieved.",
        "maxGraphemes": 50
      },
      "degree": {
        "type": "string",
        "maxLength": 2560,
        "description": "Degree name (e.g., 'Bachelor of Science', 'Master of Arts').",
        "maxGraphemes": 256,
        "x-skos:closeMatch": [
          "schema:hasCredential",
          "bibo:degree"
        ]
      },
      "labels": {
        "refs": [
          "com.atproto.label.defs#selfLabels"
        ],
        "type": "union",
        "description": "Self-label values for this education record."
      },
      "endedAt": {
        "type": "string",
        "description": "End date (graduation or expected graduation) in YYYY-MM or YYYY-MM-DD format. Omit if currently enrolled."
      },
      "location": {
        "ref": "community.lexicon.location.address",
        "type": "ref",
        "description": "Institution location. Sifa enforces ISO 3166-1 alpha-2 country codes at the app layer."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Client-declared timestamp when this record was originally created."
      },
      "entityRef": {
        "type": "string",
        "format": "uri",
        "description": "Portable, app-neutral identifier for the educational institution the user selected from a resolver dropdown: a Wikidata Q-ID URI (http://www.wikidata.org/entity/Q...), a ROR URI, or an LEI URI. Enables deterministic resolution to a canonical entity even before the institution claims an ATproto account. Absent for free-text entries."
      },
      "startedAt": {
        "type": "string",
        "description": "Start date in YYYY-MM or YYYY-MM-DD format."
      },
      "activities": {
        "type": "string",
        "maxLength": 10000,
        "description": "Activities, societies, and extracurriculars.",
        "maxGraphemes": 1000
      },
      "description": {
        "type": "string",
        "maxLength": 50000,
        "description": "Additional description or notes about the education.",
        "maxGraphemes": 5000
      },
      "institution": {
        "type": "string",
        "maxLength": 2560,
        "minLength": 1,
        "description": "Name of the educational institution.",
        "maxGraphemes": 256,
        "x-skos:exactMatch": [
          "schema:alumniOf"
        ]
      },
      "fieldOfStudy": {
        "type": "string",
        "maxLength": 2560,
        "description": "Field of study or major.",
        "x-skos:note": "ISCED-F is the value anchor.",
        "maxGraphemes": 256,
        "x-skos:closeMatch": [
          "schema:educationalCredentialAwarded"
        ]
      },
      "institutionDid": {
        "type": "string",
        "format": "did",
        "description": "DID of the institution's ATproto account, if one exists."
      }
    }
  },
  "description": "Record representing a single education credential.",
  "x-skos:note": "One record maps to two schema.org assertions: alumniOf for the institution and hasCredential for the degree.",
  "x-skos:closeMatch": [
    "schema:EducationalOccupationalCredential"
  ]
}

Lexicon Garden

@