Properties
| Name | Type | Description |
|---|---|---|
| companyId | string | |
| companyName | string | |
| companyCode | string | |
| taxPayerId | string | Tax identification number |
| address | object | |
| phoneNumber | string | |
| string | ||
| isActive | boolean | |
| createdDate | string | |
| modifiedDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SharedCompany",
"title": "SharedCompany",
"type": "object",
"properties": {
"companyId": {
"type": "string"
},
"companyName": {
"type": "string"
},
"companyCode": {
"type": "string"
},
"taxPayerId": {
"type": "string",
"description": "Tax identification number"
},
"address": {
"type": "object",
"properties": {
"line1": {
"type": "string"
},
"line2": {
"type": "string"
},
"city": {
"type": "string"
},
"region": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"country": {
"type": "string"
}
}
},
"phoneNumber": {
"type": "string"
},
"email": {
"type": "string",
"format": "email"
},
"isActive": {
"type": "boolean"
},
"createdDate": {
"type": "string",
"format": "date-time"
},
"modifiedDate": {
"type": "string",
"format": "date-time"
}
}
}