Record representing a single language proficiency.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this record was originally created.
name
string
Required
Language name (e.g., 'English', 'Nederlands', 'Deutsch').
maxLength: 640 bytesminLength: 1 bytesmaxGraphemes: 64 graphemesproficiency
string
Optional
Proficiency level. Uses LinkedIn-compatible five-level scale.
Known values:
id.sifa.defs#elementary, id.sifa.defs#limitedWorking, id.sifa.defs#professionalWorking, id.sifa.defs#fullProfessional, id.sifa.defs#nativeView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"minLength": 1,
"description": "Language name (e.g., 'English', 'Nederlands', 'Deutsch').",
"maxGraphemes": 64
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this record was originally created."
},
"proficiency": {
"type": "string",
"description": "Proficiency level. Uses LinkedIn-compatible five-level scale.",
"knownValues": [
"id.sifa.defs#elementary",
"id.sifa.defs#limitedWorking",
"id.sifa.defs#professionalWorking",
"id.sifa.defs#fullProfessional",
"id.sifa.defs#native"
]
}
}
},
"description": "Record representing a single language proficiency."
}