{"openapi":"3.1.0","info":{"title":"POST /api/v1/businesses/validate-coa","version":"1.0.0","description":"Validate a custom COA template"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/businesses/validate-coa":{"post":{"tags":["businesses"],"summary":"Validate a custom COA template","description":"Validates a custom chart of accounts template against Teal API requirements without creating anything.","operationId":"validate_coa_template_api_v1_businesses_validate_coa_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Payload"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessEnvelope_ValidateCoaTemplateResponse_"}}}},"401":{"description":"Unauthorized - Authentication required","content":{"application/json":{"example":{"detail":"Not authenticated"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"CoaValidationError":{"properties":{"ledger_index":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Ledger Index","description":"0-based index of the ledger with the error (null for template-level errors)"},"ledger_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ledger Name","description":"Name of the ledger (if available)"},"field":{"type":"string","title":"Field","description":"Field that failed validation"},"message":{"type":"string","title":"Message","description":"Human-readable error description"}},"type":"object","required":["field","message"],"title":"CoaValidationError","description":"A single validation error within a COA template."},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"SuccessEnvelope_ValidateCoaTemplateResponse_":{"properties":{"success":{"type":"boolean","title":"Success","default":true},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Code"},"data":{"anyOf":[{"$ref":"#/components/schemas/ValidateCoaTemplateResponse"},{"type":"null"}]}},"additionalProperties":true,"type":"object","title":"SuccessEnvelope[ValidateCoaTemplateResponse]"},"ValidateCoaTemplateResponse":{"properties":{"valid":{"type":"boolean","title":"Valid","description":"Whether the COA template is valid"},"errors":{"items":{"$ref":"#/components/schemas/CoaValidationError"},"type":"array","title":"Errors","description":"List of validation errors (empty when valid)"},"ledger_count":{"type":"integer","title":"Ledger Count","description":"Number of ledgers in the template","default":0}},"additionalProperties":true,"type":"object","required":["valid"],"title":"ValidateCoaTemplateResponse","description":"Envelope data for ``validate_coa_template``."},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"},"input":{"title":"Input"},"ctx":{"type":"object","title":"Context"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}},"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"API Token","description":"API token authentication. Format: `Bearer dz_...`"}}},"security":[{"BearerAuth":[]}]}