Properties
| Name | Type | Description |
|---|---|---|
| jurisdiction | string | |
| taxType | string | |
| filingFrequency | string | |
| nextDueDate | string | |
| registrationRequired | boolean | |
| registrationUrl | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FilingObligation",
"title": "FilingObligation",
"type": "object",
"properties": {
"jurisdiction": {
"type": "string"
},
"taxType": {
"type": "string"
},
"filingFrequency": {
"type": "string",
"enum": [
"Monthly",
"Quarterly",
"Annual"
]
},
"nextDueDate": {
"type": "string",
"format": "date"
},
"registrationRequired": {
"type": "boolean"
},
"registrationUrl": {
"type": "string"
}
}
}