Properties
| Name | Type | Description |
|---|---|---|
| company_domain | string | |
| company_id | string | |
| company_name | string | |
| end_at | string | |
| location | string | |
| start_at | string | |
| title | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EnrichPersonWorkHistory",
"title": "EnrichPersonWorkHistory",
"properties": {
"company_domain": {
"type": "string"
},
"company_id": {
"type": "string"
},
"company_name": {
"type": "string"
},
"end_at": {
"format": "date-time",
"type": "string"
},
"location": {
"type": "string"
},
"start_at": {
"format": "date-time",
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}