Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of company being connected. |
| description | string | Additional information about the company. This can be used to store foreign IDs, references, etc. |
| tags | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CompanyRequestBody",
"title": "Create company request",
"x-internal": true,
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of company being connected.",
"pattern": "^[A-Za-z0-9\\s\\-',&@.,?!\\s]+$",
"minLength": 1,
"example": "Bank of Dave"
},
"description": {
"type": "string",
"example": "Requested early access to the new financing scheme.",
"description": "Additional information about the company. This can be used to store foreign IDs, references, etc."
},
"tags": {
"$ref": "#/components/schemas/Company/definitions/companyDetails/properties/tags"
}
},
"required": [
"name"
]
}