Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| name | string | |
| effectiveDate | string | |
| endDate | string | |
| accountStatusId | string | |
| createdDate | string | |
| modifiedDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AccountModel",
"title": "AccountModel",
"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"
}
}
}