Properties
| Name | Type | Description |
|---|---|---|
| address | object | |
| created_at | string | |
| id | string | |
| legal_name | string | |
| name | string | |
| raw | object | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HrisCompany",
"title": "HrisCompany",
"properties": {
"address": {
"$ref": "#/components/schemas/property_HrisCompany_address"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"id": {
"type": "string"
},
"legal_name": {
"type": "string"
},
"name": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"updated_at": {
"format": "date-time",
"type": "string"
}
},
"type": "object"
}