{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/avatax-rest-account-model-schema.json", "title": "AccountModel", "description": "AccountModel schema from Avalara API", "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "effectiveDate": { "type": "string", "format": "date" }, "endDate": { "type": "string", "format": "date" }, "accountStatusId": { "type": "string", "enum": [ "Inactive", "Active", "Test", "New" ] }, "createdDate": { "type": "string", "format": "date-time" }, "modifiedDate": { "type": "string", "format": "date-time" } } }