{"openapi":"3.1.0","info":{"title":"GET /api/v1/bills/duplicate-check","version":"1.0.0","description":"Check for possible duplicate bills"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/bills/duplicate-check":{"get":{"tags":["bills"],"summary":"Check for possible duplicate bills","description":"Advisory, read-only check used during bill entry. Returns existing bills that may duplicate the one being entered (same bill number, or same vendor and amount within ~90 days). Never blocks creation — it is purely a heads-up so the user can confirm before saving.","operationId":"check_duplicate_bills_api_v1_bills_duplicate_check_get","parameters":[{"name":"bill_number","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"In-progress bill/invoice number to match (optional).","title":"Bill Number"},"description":"In-progress bill/invoice number to match (optional)."},{"name":"vendor_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"In-progress vendor UUID to match (optional).","title":"Vendor Id"},"description":"In-progress vendor UUID to match (optional)."},{"name":"amount","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"In-progress amount in cents to match (optional).","title":"Amount"},"description":"In-progress amount in cents to match (optional)."},{"name":"received_on","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date"},{"type":"null"}],"description":"Invoice date (YYYY-MM-DD); bounds the vendor+amount lookback window.","title":"Received On"},"description":"Invoice date (YYYY-MM-DD); bounds the vendor+amount lookback window."},{"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"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessEnvelope_DuplicateBillCheckResponse_"}}}},"401":{"description":"Unauthorized - Authentication required","content":{"application/json":{"example":{"detail":"Not authenticated"}}}},"403":{"description":"Forbidden - Insufficient permissions","content":{"application/json":{"example":{"detail":"Not enough permissions"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"DuplicateBillCheckResponse":{"properties":{"matches":{"items":{"$ref":"#/components/schemas/DuplicateBillMatch"},"type":"array","title":"Matches","description":"Possible duplicates, most recent first. Empty when none found."}},"type":"object","title":"DuplicateBillCheckResponse","description":"Advisory result for the pre-entry duplicate check. Never blocks submit."},"DuplicateBillMatch":{"properties":{"bill_id":{"type":"string","title":"Bill Id"},"bill_number":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Bill Number"},"vendor_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Id"},"vendor_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Name"},"amount":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Amount","description":"Bill amount in cents (falls back to expected_amount for drafts)."},"status":{"type":"string","title":"Status"},"received_on":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Received On"},"match_reason":{"type":"string","enum":["bill_number","vendor_amount"],"title":"Match Reason","description":"Why it was flagged: 'bill_number' (same number ignoring case/punctuation) or 'vendor_amount' (same vendor and amount)."},"confidence":{"type":"string","enum":["high","medium"],"title":"Confidence"}},"type":"object","required":["bill_id","status","match_reason","confidence"],"title":"DuplicateBillMatch","description":"A single existing bill flagged as a possible duplicate of a new entry."},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"SuccessEnvelope_DuplicateBillCheckResponse_":{"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/DuplicateBillCheckResponse"},{"type":"null"}]}},"additionalProperties":true,"type":"object","title":"SuccessEnvelope[DuplicateBillCheckResponse]"},"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":[]}]}