Files
lakehouse-personio/tap-personio/tap_personio/schemas/persons.json
2025-06-03 16:22:21 +02:00

55 lines
1.2 KiB
JSON

{
"type": "object",
"properties": {
"id": {
"type": ["string", "null"]
},
"email": {
"type": ["string", "null"]
},
"created_at": {
"type": ["string", "null"],
"format": "date-time"
},
"updated_at": {
"type": ["string", "null"],
"format": "date-time"
},
"first_name": {
"type": ["string", "null"]
},
"last_name": {
"type": ["string", "null"]
},
"preferred_name": {
"type": ["string", "null"]
},
"gender": {
"type": ["string", "null"],
"enum": ["UNSPECIFIED", "MALE", "FEMALE", "DIVERSE"]
},
"profile_picture": {
"type": "object",
"properties": {
"url": {
"type": ["string", "null"]
}
}
},
"status": {
"type": ["string", "null"],
"enum": ["ACTIVE", "INACTIVE", "UNSPECIFIED"]
},
"employments": {
"type": ["array", "null"],
"items": {
"type": "object",
"properties": {
"id": {
"type": ["string", "null"]
}
}
}
}
}
}