@apihawk/billia-sdk
Version:
The ApiHawk Billia SDK
46 lines (45 loc) • 873 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Edit Customer Profile Company",
"$id": "#customer/edit-customer-profile-company",
"properties": {
"accountable_person": {
"type": "string"
},
"address": {
"type": "string"
},
"billing_type": {
"enum": ["company", "personal"],
"type": "string"
},
"city": {
"type": "string",
"minLength": 1
},
"country_code": {
"type": "string",
"minLength": 2,
"maxLength": 3
},
"customer_profile_id": {
"type": "number"
},
"organization": {
"type": "string",
"minLength": 2
},
"tax_number": {
"type": "string",
"minLength": 1
},
"vat": {
"type": "string"
},
"zip_code": {
"type": "string",
"minLength": 1
}
},
"type": "object"
}