{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FilingStatus", "title": "FilingStatus", "type": "object", "properties": { "filingId": { "type": "string" }, "status": { "type": "string", "enum": [ "Processing", "Accepted", "AcceptedWithErrors", "Rejected" ] }, "acceptedCount": { "type": "integer" }, "rejectedCount": { "type": "integer" }, "errors": { "type": "array", "items": { "type": "object", "properties": { "formId": { "type": "string" }, "errorCode": { "type": "string" }, "message": { "type": "string" } } } } } }