{"openapi":"3.1.0","info":{"title":"POST /api/v1/fixed-assets/post-scheduled-depreciation","version":"1.0.0","description":"Post due scheduled depreciation"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/fixed-assets/post-scheduled-depreciation":{"post":{"tags":["fixed-assets"],"summary":"Post due scheduled depreciation","description":"Post every queued depreciation entry whose date has arrived.\n\nIdempotent: each entry is locked `FOR UPDATE` on its `pending` status\nbefore its journal entry is written, so a retry cannot double-post.","operationId":"post_scheduled_depreciation_api_v1_fixed_assets_post_scheduled_depreciation_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}},{"name":"x-business-id","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Business-Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PostScheduledDepreciationRequest"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessEnvelope_PostScheduledDepreciationResponse_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"PostScheduledDepreciationRequest":{"properties":{"as_of":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"title":"As Of","description":"Post entries dated on or before this date (default: today)"}},"type":"object","title":"PostScheduledDepreciationRequest","description":"Request to drain queued depreciation entries that are due."},"PostScheduledDepreciationResponse":{"properties":{"as_of_date":{"type":"string","format":"date","title":"As Of Date","description":"Cut-off date used"},"entries_due":{"type":"integer","title":"Entries Due","description":"Queued entries whose date had arrived"},"entries_posted":{"type":"integer","title":"Entries Posted","description":"Entries actually posted"},"entries_skipped":{"type":"integer","title":"Entries Skipped","description":"Entries skipped (already posted, disposed, or no basis left)"},"total_depreciation":{"type":"integer","title":"Total Depreciation","description":"Depreciation posted, in cents"},"errors":{"items":{"type":"string"},"type":"array","title":"Errors","description":"Per-entry errors encountered"}},"type":"object","required":["as_of_date","entries_due","entries_posted","entries_skipped","total_depreciation"],"title":"PostScheduledDepreciationResponse","description":"Result of draining queued depreciation entries."},"SuccessEnvelope_PostScheduledDepreciationResponse_":{"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/PostScheduledDepreciationResponse"},{"type":"null"}]}},"additionalProperties":true,"type":"object","title":"SuccessEnvelope[PostScheduledDepreciationResponse]"},"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":[]}]}