{ "$schema": "https://json-structure.org/draft/2020-12/schema", "name": "Employee", "type": "object", "properties": { "id": { "type": "string" }, "code": { "type": "string" }, "first_names": { "type": "string" }, "last_name": { "type": "string" }, "full_name": { "type": "string" }, "date_of_birth": { "type": "string" }, "gender_identity": { "type": "string" }, "department": { "type": "string" }, "location": { "type": "string" }, "position": { "type": "string" }, "employment_status": { "type": "string" }, "email": { "type": "string" }, "started_at": { "type": "string" }, "finished_at": { "type": "string" }, "avatar": { "type": "string" }, "can_logon": { "type": "boolean" }, "portal_username": { "type": "string" }, "custom_data": { "type": "object" }, "tags": { "type": "array" } } }