{"components":{"schemas":{"DefaultResponse":{"properties":{"errors":{"items":{"properties":{"message":{"type":"string"},"path":{"type":"string"}},"required":["message"],"type":"object"},"type":"array"}},"required":["errors"],"type":"object"}},"securitySchemes":{"www-authenticate":{"description":"Send your `app_id` and `app_key` as username and password via `Authorization: Basic` header","scheme":"basic","type":"http"}}},"info":{"description":"CourtAPI is an API for automating everything you can do on PACER.\n\n<h2>API changelog<\/h2>\n\n<h3>1.0.17<\/h3>\n- Add fields `service_message` and `service_link` to docket entry and claim `binder` objects.\n  When a document cannot be delivered because it is sealed or otherwise restricted, `documents`\n  is empty, `service_message` explains why it is unavailable, and `service_link` is a direct link\n  where it can be viewed with an account that has access.  Both fields are omitted when documents\n  are returned normally.\n\n<h3>Changes to PCL’s Find Bankruptcy by SSN\/EIN<\/h3>\n\n - Starting Dec. 8, 2024, due to changes at PACER, if either the `ssntin` or `ssn4` parameters are sent to\n   `POST \/pacer\/ncl\/bankruptcy`, then you must also send `last_name`.\n\n<h3>1.0.16<\/h3>\n- Add field `warnings` to some additional courtapi responses\n- Updated PACER docket query for appellate cases to include the `attorneys` field.\n\n<h3>1.0.15<\/h3>\n- Add field `warnings` to some courtapi responses.\n- Add field `last_amendment_entered` to claims results\n- Add field `last_amendment_filed` to claims results\n- Add field `date_entered` to cases results\n- Add field `date_filed` to cases\n- Add field `tags_sali` to dockets\n- Add field `tags_bk` to dockets\n\n<h3>1.0.14<\/h3>\n\n- Updated the docket header fields `has_asset` and `is_header_html_valid` to be booleans\n\n<h3>1.0.13<\/h3>\n\n- Add fields is_subchapter_v and is_single_asset_real_estate to petition objects.\n\n<h3>1.0.12<\/h3>\n\n- Add field `is_acms_case` to pacer case objects.\n\n<h3>1.0.11<\/h3>\n\n- CourtDrive integration enhancements:\n- Add endpoint to get the CourtDrive docket widget link\n- Add link to the CourtDrive docket widget in user cases responses and firm case webhooks\n\n<h3>1.0.10<\/h3>\n\n- When buying the trustees query for a case, if there are no trustees we return an extra field `trustees_empty`.\n- We changed the response for the case trustees query to return an empty array and an extra field\n  `trustees_empty` when there are no filers returned by PACER.  Previously we returned this:\n  ```json\n  \"trustees\": [\n    { \"empty\": \"No trustee found for case 23-12345\" }\n  ]\n  ```\n  We now return this instead:\n  ```json\n  \"trustees\": [],\n  \"trustees_empty\": \"No trustee found for case 23-12345\"\n  ```\n\n<h3>1.0.9<\/h3>\n\n- Internal release\n\n<h3>1.0.8<\/h3>\n\n- Claims Register `status` object is now correctly returned for localdb claims endpoints.\n- We added field `creditor_no` to claims register entries.\n- We added field `case_header_last_refreshed` to case objects\n\n<h3>1.0.7<\/h3>\n\n- We added field `nature_of_suit_code` to local court search case results.\n- We added field `case_header_last_refreshed` to case objects.\n\n<h3>1.0.6<\/h3>\n\n- Claim \"Related Docket\" entries are no longer inlined with the claim history entries.  They are\n  already included under `related_dockets` in the response.\n- Claim `related_dockets` entries response fixed to match model.  Specifically field `date_filed`\n  is now correctly returned instead of `docket_date`.\n- \"Associated Cases\" `GET` and `POST` endpoints response format has changed to be more consistent.\n  See endpoints response models \/ examples.\n\n<h3>1.0.5<\/h3>\n\n- We added a new field `liabilities` to case objects.\n- We added a new field `industry` to case objects.\n- We added a new field `naics_code` to case objects.\n- We always include both `csv` and `pdf` format metadata in `creditor_mailing` purchase responses.\n\n<h3>1.0.4<\/h3>\n\n- When buying the creditor mailing query for a case, if there are no creditors we return an extra field `creditors_empty`.\n- We changed the response for the case filers query to return an empty array and an extra field\n  `filers_empty` when there are no filers returned by PACER.  Previously we returned this:\n  ```json\n  \"filers\": [\n    { \"empty\": \"No parties have filed anything for this case\" }\n  ]\n  ```\n  We now return this instead:\n  ```json\n  \"filers\": [],\n  \"filers_empty\": \"No parties have filed anything for this case\"\n  ```\n\n- We changed the response for the case parties endpoint to return an empty array and an extra\n  field `parties_empty` when there are no parties returned by PACER.  Previously we returned this:\n  ```json\n  \"parties\": [\n    { \"empty\": \"There are no parties.\" }\n  ]\n  ```\n  We now return this instead:\n  ```json\n  \"parties\": [],\n  \"parties_empty\": \"There are no parties.\"\n  ```\n\n- We changed the case `status_pending` endpoints to return an empty array and an extra field\n  `status_pending_empty` when there are no results returned by PACER.  Previously we returned this:\n  ```json\n  \"status_pending\": [\n    { \"empty\": \"There Are No Pending Status Records For This Case.\" }\n  ]\n  ```\n  We now return this instead:\n  ```json\n  \"status_pending\": [],\n  \"status_pending_empty\": \"There Are No Pending Status Records For This Case.\"\n  ```\n- We added a new field `ssn4` to case parties objects.\n- We added a new field `docket_display_number` to docket entry results.\n- We added a new field `is_business_bankruptcy` to case objects.\n- We added a new field `docket_seq` to docket entry document objects.\n\n<h3>1.0.3<\/h3>\n\n- We changed the HTTP response code when a request was made with `async=true` from `200 OK` to `202 Accepted`\n\n<h3>1.0.2<\/h3>\n\n- We changed the `creditors` query responses where there were no creditors results for the case to\n  be an empty array and included an extra field `creditors_empty` with the message `There are no\n  creditors.` instead of returning a single entry with key `empty`.\n  For example, previous versions returned:\n\n  ```json\n  \"creditors\": [\n    { \"empty\": \"There are no creditors.\" }\n  ]\n  ```\n\n  We now return this instead:\n\n  ```json\n  \"creditors\": [],\n  \"creditors_empty\": \"There are no creditors.\"\n  ```\n\n<h3>1.0.1<\/h3>\n\n- We added a field `labels` to docket header parties information.  If the party is identified in\n the docket header as `PRO SE`, then the `labels` will include a value `PRO SE`.  For example:\n `\"labels\": [\"PRO SE\"]`.\n- We fixed an issue where sometimes the party role was incorrectly detected as `PRO SE` instead of\n  the real role (e.g. `Debtor`).\n","title":"CourtAPI","version":"1.0.17"},"openapi":"3.0.1","paths":{"\/_healthcheck":{"get":{"responses":{"200":{"description":"OK"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Health check","tags":["ops"],"x-mojo-name":"healthcheck","x-mojo-to":"HealthCheck#index"}},"\/alerts\/pacer\/cost":{"get":{"description":"Get All of your application's PACER spending alerts. This is a free call.\n","operationId":"getFeeAlerts","responses":{"200":{"content":{"application\/json":{"example":{"app_id":"myappid","cost_limit":"100.00","created":"2019-04-25T05:30:45.162662Z","links":{"self":{"href":"https:\/\/v1.courtapi.com\/alerts\/pacer\/cost\/weekly"}},"period":"daily","updated":"2019-04-25T05:30:45.162662Z"},"schema":{"items":{"example":{"app_id":"myappid","cost_limit":"100.00","created":"2019-04-25T05:30:45.162662Z","links":{"self":{"href":"https:\/\/v1.courtapi.com\/alerts\/pacer\/cost\/weekly"}},"period":"daily","updated":"2019-04-25T05:30:45.162662Z"},"properties":{"app_id":{"type":"string"},"cost_limit":{"type":"number"},"created":{"type":"string"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"period":{"type":"string"},"updated":{"type":"string"}},"type":"object"},"type":"array"}},"application\/xml":{"example":"<result>\n  <app_id>myappid<\/app_id>\n  <cost_limit>100.00<\/cost_limit>\n  <created>2019-04-25T05:30:45.162662Z<\/created>\n  <links>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/alerts\/pacer\/cost\/weekly<\/href>\n    <\/self>\n  <\/links>\n  <period>daily<\/period>\n  <updated>2019-04-25T05:30:45.162662Z<\/updated>\n<\/result>\n"}},"description":"Get all alerts"},"400":{"description":"Bad request or error"},"401":{"description":"Unauthorized"},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"example":{"error":{"detail":"Internal Error","status":500},"status":500},"schema":{"properties":{"error":{"properties":{"detail":{"type":"string"},"status":{"type":"integer"}},"type":"object"},"status":{"type":"string"}},"type":"object"}}},"description":"Internal Error"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get All PACER Spending Alerts","tags":["alert"],"x-courtapi-free-call":true,"x-courtapi-resource":"fee-alert","x-courtapi-source":"local","x-courtdrive-async-desc":"List PACER spending alerts","x-mojo-name":"pacer_fee_alert_get_all","x-mojo-to":"PACER::FeeAlert#get_all"},"post":{"description":"Create or update a PACER spending alert","operationId":"createFeeAlert","requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"cost_limit":{"description":"PACER spending cost limit. Notification will be sent if the amount exceeds this limit. This is a free call.\n","minimum":0,"type":"number"},"period":{"description":"The period that the spending limit covers.","enum":["daily","weekly","monthly"],"type":"string"}},"required":["cost_limit","period"],"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"app_id":"myappid","cost_limit":"100.00","created":"2019-04-25T05:30:45.162662Z","links":{"self":{"href":"https:\/\/v1.courtapi.com\/alerts\/pacer\/cost\/weekly"}},"period":"daily","updated":"2019-04-25T05:30:45.162662Z"},"schema":{"example":{"app_id":"myappid","cost_limit":"100.00","created":"2019-04-25T05:30:45.162662Z","links":{"self":{"href":"https:\/\/v1.courtapi.com\/alerts\/pacer\/cost\/weekly"}},"period":"daily","updated":"2019-04-25T05:30:45.162662Z"},"properties":{"app_id":{"type":"string"},"cost_limit":{"type":"number"},"created":{"type":"string"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"period":{"type":"string"},"updated":{"type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <app_id>myappid<\/app_id>\n  <cost_limit>100.00<\/cost_limit>\n  <created>2019-04-25T05:30:45.162662Z<\/created>\n  <links>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/alerts\/pacer\/cost\/weekly<\/href>\n    <\/self>\n  <\/links>\n  <period>daily<\/period>\n  <updated>2019-04-25T05:30:45.162662Z<\/updated>\n<\/result>\n"}},"description":"Alert created or updated"},"400":{"content":{"application\/json":{"example":{"errors":[{"message":"Is required.","path":"\/cost_limit"}],"status":400},"schema":{"properties":{"errors":{"items":{"properties":{"message":{"type":"string"},"path":{"type":"string"}},"type":"object"},"type":"array"},"status":{"description":"The status code","type":"integer"}},"type":"object"}}},"description":"Bad request or error"},"401":{"description":"Unauthorized"},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"example":{"error":{"detail":"Internal Error","status":500},"status":500},"schema":{"properties":{"error":{"properties":{"detail":{"type":"string"},"status":{"type":"integer"}},"type":"object"},"status":{"type":"string"}},"type":"object"}}},"description":"Internal Error"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Create or update a PACER spending alert","tags":["alert"],"x-courtapi-free-call":true,"x-courtapi-resource":"fee-alert","x-courtapi-source":"local","x-courtdrive-async-desc":"Create or update a PACER spending alert","x-mojo-name":"pacer_fee_alert_upsert","x-mojo-to":"PACER::FeeAlert#upsert"}},"\/alerts\/pacer\/cost\/{period}":{"delete":{"description":"Delete A PACER Spending Alert.  This is a free call","operationId":"deleteFeeAlert","responses":{"200":{"content":{"application\/json":{"example":{"app_id":"myappid","cost_limit":"100.00","created":"2019-04-25T05:30:45.162662Z","links":{"self":{"href":"https:\/\/v1.courtapi.com\/alerts\/pacer\/cost\/weekly"}},"period":"daily","updated":"2019-04-25T05:30:45.162662Z"},"schema":{"example":{"app_id":"myappid","cost_limit":"100.00","created":"2019-04-25T05:30:45.162662Z","links":{"self":{"href":"https:\/\/v1.courtapi.com\/alerts\/pacer\/cost\/weekly"}},"period":"daily","updated":"2019-04-25T05:30:45.162662Z"},"properties":{"app_id":{"type":"string"},"cost_limit":{"type":"number"},"created":{"type":"string"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"period":{"type":"string"},"updated":{"type":"string"}},"type":"object"}},"application\/xml":{"example":"<result> <app_id>myappid<\/app_id> <cost_limit>100.00<\/cost_limit> <created>2019-04-25T05:30:45.162662Z<\/created> <links> <self> <href>https:\/\/v1.courtapi.com\/alerts\/pacer\/cost\/weekly<\/href> <\/self> <\/links> <period>daily<\/period> <updated>2019-04-25T05:30:45.162662Z<\/updated> <\/result>"}},"description":"Delete alert"},"204":{"description":"Alert was already deleted, or no alert for the period exists."},"400":{"content":{"application\/json":{"example":{"errors":[{"message":"Not in enum list: daily, weekly, monthly.","path":"\/period"}],"status":400},"schema":{"properties":{"errors":{"items":{"properties":{"message":{"type":"string"},"path":{"type":"string"}},"type":"object"},"type":"array"},"status":{"description":"The status code","type":"integer"}},"type":"object"}}},"description":"Bad request or error"},"401":{"description":"Unauthorized"},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"example":{"error":{"detail":"Internal Error","status":500},"status":500},"schema":{"properties":{"error":{"properties":{"detail":{"type":"string"},"status":{"type":"integer"}},"type":"object"},"status":{"type":"string"}},"type":"object"}}},"description":"Internal Error"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Delete A PACER Spending Alert","tags":["alert"],"x-courtapi-free-call":true,"x-courtapi-resource":"fee-alert","x-courtapi-source":"local","x-courtdrive-async-desc":"Delete {{period}} PACER spending alert","x-mojo-name":"pacer_fee_alert_delete","x-mojo-to":"PACER::FeeAlert#delete"},"get":{"description":"Get A PACER Spending Alert by period.  On success returns the PACER spending alert.  If no alert exists, A 404 response is returned. This is a free call.\n","operationId":"getFeeAlert","responses":{"200":{"content":{"application\/json":{"example":{"app_id":"myappid","cost_limit":"100.00","created":"2019-04-25T05:30:45.162662Z","links":{"self":{"href":"https:\/\/v1.courtapi.com\/alerts\/pacer\/cost\/weekly"}},"period":"daily","updated":"2019-04-25T05:30:45.162662Z"},"schema":{"example":{"app_id":"myappid","cost_limit":"100.00","created":"2019-04-25T05:30:45.162662Z","links":{"self":{"href":"https:\/\/v1.courtapi.com\/alerts\/pacer\/cost\/weekly"}},"period":"daily","updated":"2019-04-25T05:30:45.162662Z"},"properties":{"app_id":{"type":"string"},"cost_limit":{"type":"number"},"created":{"type":"string"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"period":{"type":"string"},"updated":{"type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <app_id>myappid<\/app_id>\n  <cost_limit>100.00<\/cost_limit>\n  <created>2019-04-25T05:30:45.162662Z<\/created>\n  <links>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/alerts\/pacer\/cost\/weekly<\/href>\n    <\/self>\n  <\/links>\n  <period>daily<\/period>\n  <updated>2019-04-25T05:30:45.162662Z<\/updated>\n<\/result>\n"}},"description":"Get alert"},"400":{"content":{"application\/json":{"example":{"errors":[{"message":"Not in enum list: daily, weekly, monthly.","path":"\/period"}],"status":400},"schema":{"properties":{"errors":{"items":{"properties":{"message":{"type":"string"},"path":{"type":"string"}},"type":"object"},"type":"array"},"status":{"description":"The status code","type":"integer"}},"type":"object"}}},"description":"Bad request or error"},"401":{"description":"Unauthorized"},"404":{"content":{"application\/json":{"example":{"errors":[{"message":"daily fee alert not found for myapp"}],"status":404},"schema":{"properties":{"errors":{"items":{"properties":{"message":{"type":"string"},"path":{"type":"string"}},"type":"object"},"type":"array"},"status":{"description":"The status code","type":"integer"}},"type":"object"}}},"description":"No Alert exists for the requested period"},"500":{"content":{"application\/json":{"example":{"error":{"detail":"Internal Error","status":500},"status":500},"schema":{"properties":{"error":{"properties":{"detail":{"type":"string"},"status":{"type":"integer"}},"type":"object"},"status":{"type":"string"}},"type":"object"}}},"description":"Internal Error"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get A PACER Spending Alert","tags":["alert"],"x-courtapi-free-call":true,"x-courtapi-resource":"fee-alert","x-courtapi-source":"local","x-courtdrive-async-desc":"Get {{period}} PACER spending alert","x-mojo-name":"pacer_fee_alert_get","x-mojo-to":"PACER::FeeAlert#get"},"parameters":[{"description":"The period that the spending limit covers.","in":"path","name":"period","required":true,"schema":{"enum":["daily","weekly","monthly"],"type":"string"}}]},"\/async\/{task_id}\/results":{"get":{"description":"Fetch the results of an Async operation.","responses":{"200":{"description":"Response payload from original request"},"400":{"description":"Bad input parameter etc"},"401":{"description":"Unauthorized"},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get Async Request Results","tags":["async"],"x-courtapi-free-call":true,"x-courtapi-resource":"async-results","x-courtapi-source":"local","x-courtdrive-async-desc":"Get Async Request Results of {{task_id}}","x-mojo-name":"progress_async_results","x-mojo-to":"Progress#async_results"},"parameters":[{"description":"Async Task Id","in":"path","name":"task_id","required":true,"schema":{"type":"string"}}]},"\/cases\/pacer\/by-uuid\/{case_uuid}":{"get":{"description":"Get case root menu by case UUID","responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"civil","case_no":"3:92-cv-30321","case_title":"UNITED STATES v. INTERNATL FIDELITY","case_type":"cv","cause":null,"ch11_type":null,"chapter":null,"court_code":"flndce","date_closed":"04\/11\/1997","date_discharged":null,"date_filed":"08\/25\/1992","date_of_last_filing":"09\/08\/2000","date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":false,"is_ok_to_list_publicly":false,"judge_name":"LACEY A COLLIER","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2022-01-21T04:57:14.362364Z","naics_code":130,"nature_of_debt":"~","nature_of_suit_code":130,"petition_type":null,"plan_confirmed":null,"referred_to":null},"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30321","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/by-uuid\/flndce_10481"}},"menu":{}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"menu":{"properties":{"alias":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"associated_cases":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"attorneys":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"case_file_location":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"case_summary":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"claims":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"creditor_mailing":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"creditors":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"dockets":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"filers":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"history":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"judges":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"notice":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"parties":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"related_transactions":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"schedule":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"status_pending":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"trustees":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>civil<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>3:92-cv-30321<\/case_no>\n    <case_title>UNITED STATES v. INTERNATL FIDELITY<\/case_title>\n    <case_type>cv<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter\/>\n    <court_code>flndce<\/court_code>\n    <date_closed>04\/11\/1997<\/date_closed>\n    <date_discharged\/>\n    <date_filed>08\/25\/1992<\/date_filed>\n    <date_of_last_filing\/>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name\/>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2019-04-29T08:58:08.509200Z<\/modified>\n    <nature_of_suit_code>130<\/nature_of_suit_code>\n    <petition_type\/>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <links>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30321<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/by-uuid\/flndce_10481<\/href>\n    <\/self>\n  <\/links>\n  <menu\/>\n<\/result>\n"}},"description":"Case Root Menu"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Any Error, say invalid parameters, network timeouts..."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get case root menu by case UUID","tags":["case"],"x-courtapi-resource":"case-menu","x-courtapi-source":"local","x-courtdrive-async-desc":"Case menu of {{case_uuid}}","x-mojo-name":"localdb_case_root_by_uuid","x-mojo-to":"PACER::Case#case_menu_by_uuid"},"parameters":[{"description":"Case UUID","in":"path","name":"case_uuid","required":true,"schema":{"type":"string"}}]},"\/cases\/pacer\/key-documents\/schedule-{type}\/search":{"get":{"description":"Searches Key Documents Schedules. You will be charged one API call per result entry, with a minimum charge of one API call when there are no results. Be aware that a broad search could consume hundreds of API calls.\n","parameters":[{"description":"PACER Region Code","explode":true,"in":"query","name":"region","schema":{"items":{"enum":["01","02","03","04","05","06","07","08","09",10,11,"AK","AL","alm","aln","als","AR","are","arw","AZ","CA","cac","cae","CAFC","can","cas","CIT","CO","COFC","CT","DC","DE","FL","flm","fln","fls","GA","gam","gan","gas","GU","HI","IA","ian","ias","ID","IL","ilc","iln","ils","IN","inn","ins","JPML","KS","KY","kye","kyw","LA","lae","lam","law","MA","MD","ME","MI","mie","miw","MN","MO","moe","mow","MS","msn","mss","MT","NC","nce","ncm","ncw","ND","NE","NH","NJ","NM","nmi","NV","NY","nye","nyn","nys","nyw","OH","ohn","ohs","OK","oke","okn","okw","OR","PA","pae","pam","paw","PR","RI","SC","SD","TN","tne","tnm","tnw","TX","txe","txn","txs","txw","UT","VA","vae","vaw","VI","VT","WA","wae","waw","WI","wie","wiw","WV","wvn","wvs","WY"],"type":"string"},"type":"array"},"style":"form"},{"description":"Industry (NCAIS code)","explode":true,"in":"query","name":"industry","schema":{"items":{"type":"integer"},"type":"array"},"style":"form"},{"description":"Assets (in USD)","explode":true,"in":"query","name":"assets","schema":{"items":{"enum":["Unknown","$0 to $50,000","$50,001 to $100,000","$100,001 to $500,000","$500,001 to $1 million","$1,000,001 to $10 million","$10,000,001 to $50 million","$50,000,001 to $100 million","$100,000,001 to $500 million","$500,000,001 to $1 billion","More than $1 billion","$1,000,000,001 to $10 billion","$10,000,000,001 to $50 billion","More than $50 billion"],"type":"string"},"type":"array"},"style":"form"},{"description":"Chapter","explode":true,"in":"query","name":"chapter","schema":{"items":{"enum":[7,9,11,12,13,15,304],"type":"integer"},"type":"array"},"style":"form"},{"description":"Liabilities (in USD)","explode":true,"in":"query","name":"liabilities","schema":{"items":{"enum":["Unknown","$0 to $50,000","$50,001 to $100,000","$100,001 to $500,000","$500,001 to $1 million","$1,000,001 to $10 million","$10,000,001 to $50 million","$50,000,001 to $100 million","$100,000,001 to $500 million","$500,000,001 to $1 billion","More than $1 billion","$1,000,000,001 to $10 billion","$10,000,000,001 to $50 billion","More than $50 billion"],"type":"string"},"type":"array"},"style":"form"},{"description":"Fulltext keywords","in":"query","name":"keys","schema":{"type":"string"}},{"description":"Cases filed in year","explode":true,"in":"query","name":"date_filed","schema":{"items":{"type":"integer"},"type":"array"},"style":"form"},{"description":"Cases filed from (MM\/DD\/YYYY)","in":"query","name":"date_filed_from","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Cases filed through (MM\/DD\/YYYY)","in":"query","name":"date_filed_to","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Schedule data verified from (MM\/DD\/YYYY)","in":"query","name":"date_data_verified_from","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Schedule data verified to (MM\/DD\/YYYY)","in":"query","name":"date_data_verified_to","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}}],"responses":{"200":{"description":"OK"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Search Key Documents Schedules","tags":["key-documents"],"x-courtapi-plans":["Court Enterprise","Enterprise Sandbox"],"x-courtapi-resource":"case-schedules-search","x-courtapi-source":"local","x-mojo-name":"pacer_key_documents_schedule_search","x-mojo-to":"PACER::KeyDocuments#search_schedules"},"parameters":[{"in":"path","name":"type","required":true,"schema":{"enum":["d","ef","top20"],"type":"string"}}]},"\/cases\/pacer\/search-filings":{"get":{"description":"Case data fulltext search","operationId":"searchFilings","parameters":[{"description":"Court type","in":"query","name":"court_type","schema":{"enum":["","appellate","bankruptcy","civil","criminal","national"],"type":"string"}},{"description":"Fulltext keywords","in":"query","name":"keys","schema":{"type":"string"}},{"description":"Fulltext keywords to search inside PDFs only","in":"query","name":"pdfs","schema":{"type":"string"}},{"description":"Search text of PDF documents (only affects fulltext search)","in":"query","name":"search_pdfs","schema":{"enum":["include","exclude","limit"],"type":"string"}},{"description":"Partial matching on the Case Number","in":"query","name":"case_no_partial","schema":{"type":"string"}},{"description":"Partial matching on the Case Title","in":"query","name":"case_title_partial","schema":{"type":"string"}},{"description":"Limit search to own (or firm's) casefolders","in":"query","name":"my_cases","schema":{"enum":["","user","firm"],"type":"string"}},{"description":"Court code (or region)","explode":true,"in":"query","name":"court_code","schema":{"items":{"type":"string"},"type":"array"},"style":"form"},{"description":"Court identifier","explode":true,"in":"query","name":"court","schema":{"items":{"type":"string"},"type":"array"},"style":"form"},{"description":"Query","explode":true,"in":"query","name":"query","schema":{"items":{"enum":["dockets","associated_cases","attorneys","creditors","alias","related_transactions","creditor_mailing","case_summary","history","parties","notice","filers","claims","schedule","status_pending","written_opinions","docket_headers","claim_headers"],"type":"string"},"type":"array"},"style":"form"},{"description":"Chapter","explode":true,"in":"query","name":"chapter","schema":{"items":{"enum":[7,9,11,12,13,15,304],"type":"integer"},"type":"array"},"style":"form"},{"description":"Case Type","explode":true,"in":"query","name":"case_type","schema":{"items":{"enum":["bk","ap","mp"],"type":"string"},"type":"array"},"style":"form"},{"description":"Nature of Suit","explode":true,"in":"query","name":"nature_of_suit","schema":{"items":{"type":"integer"},"type":"array"},"style":"form"},{"description":"Search case titles (only affects fulltext search)","in":"query","name":"case_titles","schema":{"enum":["include","exclude","limit"],"type":"string"}},{"description":"Docket numbers – e.g.: \"1,3,5-7\"","in":"query","name":"docket_no","schema":{"pattern":"^((\\d+(-\\d+)?),)*(\\d+(-\\d+)?)$","type":"string"}},{"description":"Business cases","in":"query","name":"business_cases","schema":{"enum":["include","exclude","limit"],"type":"string"}},{"description":"Industry (NCAIS code)","explode":true,"in":"query","name":"industry","schema":{"items":{"type":"integer"},"type":"array"},"style":"form"},{"description":"Assets (in USD)","explode":true,"in":"query","name":"assets","schema":{"items":{"enum":["Unknown","$0 to $50,000","$50,001 to $100,000","$100,001 to $500,000","$500,001 to $1 million","$1,000,001 to $10 million","$10,000,001 to $50 million","$50,000,001 to $100 million","$100,000,001 to $500 million","$500,000,001 to $1 billion","More than $1 billion","$1,000,000,001 to $10 billion","$10,000,000,001 to $50 billion","More than $50 billion"],"type":"string"},"type":"array"},"style":"form"},{"description":"Liabilities (in USD)","explode":true,"in":"query","name":"liabilities","schema":{"items":{"enum":["Unknown","$0 to $50,000","$50,001 to $100,000","$100,001 to $500,000","$500,001 to $1 million","$1,000,001 to $10 million","$10,000,001 to $50 million","$50,000,001 to $100 million","$100,000,001 to $500 million","$500,000,001 to $1 billion","More than $1 billion","$1,000,000,001 to $10 billion","$10,000,000,001 to $50 billion","More than $50 billion"],"type":"string"},"type":"array"},"style":"form"},{"description":"Cases filed in year","explode":true,"in":"query","name":"date_filed","schema":{"items":{"type":"integer"},"type":"array"},"style":"form"},{"description":"Cases filed from (MM\/DD\/YYYY)","in":"query","name":"date_filed_from","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Cases filed through (MM\/DD\/YYYY)","in":"query","name":"date_filed_to","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Open cases in year","explode":true,"in":"query","name":"open_cases","schema":{"items":{"type":"integer"},"type":"array"},"style":"form"},{"description":"Open cases from","in":"query","name":"open_cases_from","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Open cases through","in":"query","name":"open_cases_to","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Cases closed in year (matches on either date closed or date terminated)","explode":true,"in":"query","name":"date_closed","schema":{"items":{"type":"integer"},"type":"array"},"style":"form"},{"description":"Cases closed from (matches on either date closed or date terminated)","in":"query","name":"date_closed_from","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Cases closed through (matches on either date closed or date terminated)","in":"query","name":"date_closed_to","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Cases dismissed in year","explode":true,"in":"query","name":"date_dismissed","schema":{"items":{"type":"integer"},"type":"array"},"style":"form"},{"description":"Cases dismissed from","in":"query","name":"date_dismissed_from","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Cases dismissed through","in":"query","name":"date_dismissed_to","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Cases discharged in year","explode":true,"in":"query","name":"date_discharged","schema":{"items":{"type":"integer"},"type":"array"},"style":"form"},{"description":"Cases discharged from","in":"query","name":"date_discharged_from","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Cases discharged through","in":"query","name":"date_discharged_to","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Cases terminated in year","explode":true,"in":"query","name":"date_terminated","schema":{"items":{"type":"integer"},"type":"array"},"style":"form"},{"description":"Cases terminated from","in":"query","name":"date_terminated_from","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Cases terminated through","in":"query","name":"date_terminated_to","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Documents filed from","in":"query","name":"date_doc_filed_from","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Documents filed through","in":"query","name":"date_doc_filed_to","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Search results template","in":"query","name":"template","schema":{"enum":["","general","extended","schedules","case_lookup","case_activity","single_docket"],"type":"string"}},{"description":"Limit search results to case","in":"query","name":"case_uuid","schema":{"type":"string"}},{"description":"Find cases with matching documents (instead of individual documents)","in":"query","name":"grouped","schema":{"type":"boolean"}},{"description":"Sort by field (availability and allowed values depend on template)","in":"query","name":"sort_field","schema":{"default":"case_title","enum":["assets","case_court","case_date_filed","case_no","case_title","case_uuid","chapter","court","date_filed","date_closed","docket_no","industry","inner_hits","liabilities"],"type":"string"}},{"description":"The direction to sort by","in":"query","name":"sort_direction","schema":{"default":"asc","enum":["asc","desc"],"type":"string"}},{"description":"Judge name","explode":true,"in":"query","name":"judge_name","schema":{"items":{"type":"string"},"type":"array"},"style":"form"},{"description":"Results page (0-based)","in":"query","name":"page","schema":{"type":"integer"}},{"description":"Items per page","in":"query","name":"page_size","schema":{"type":"integer"}},{"description":"Whether to include bookmark information for returned dockets","in":"query","name":"bookmark_info","schema":{"type":"boolean"}},{"description":"Nested Search within cases that match the main query","in":"query","name":"search_within","schema":{"type":"object"}}],"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"facets":{"additionalProperties":{"additionalProperties":{"type":"integer"},"type":"object"},"type":"object"},"num_cases":{"type":"integer"},"num_found":{"type":"integer"},"page_count":{"type":"integer"},"results":{"items":{"properties":{"appeal_case_uuid":{"type":"string"},"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_assets":{"type":"string"},"case_chapter":{"type":"string"},"case_chapter_id":{"type":"integer"},"case_court":{"type":"string"},"case_court_id":{"type":"integer"},"case_date_filed":{"type":"string"},"case_id":{"type":"number"},"case_id_external":{"type":"number"},"case_judge_name":{"type":"string"},"case_liabilities":{"type":"string"},"case_naics_code":{"type":"string"},"case_nature_of_suit_code":{"type":"number"},"case_no":{"type":"string"},"case_petition_id":{"type":"integer"},"case_title":{"type":"string"},"case_title_uuid":{"type":"string"},"case_type":{"type":"string"},"case_type_id":{"type":"integer"},"case_uuid":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"ch11_type_code":{"type":"string"},"chapter":{"type":"integer"},"court":{"type":"string"},"court_code":{"items":{"type":"string"},"type":"array"},"court_name":{"type":"string"},"created":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_plan_confirmed":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"document_type":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"inner_hits":{"type":"string"},"is_business_bankruptcy":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"lead_case_uuid":{"type":"string"},"liabilities":{"type":"string"},"modified":{"type":"string"},"naics_code":{"type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"ncl_parties":{"items":{"properties":{"name":{"type":"string"},"role":{"type":"string"}},"type":"object"},"type":"array"},"query":{"enum":["cases","dockets","docket_parts","associated_cases","attorneys","creditors","schedule","alias","related_transactions","creditor_mailing","case_summary","history","parties","notice","filers","claims","claim_parts","status_pending","written_opinions","docket_headers","claim_headers"],"type":"string"},"referred_to":{"type":"string"},"schedule_ab":{"type":"string"},"title":{"type":"string"},"type_code":{"type":"string"},"uri_id":{"type":"integer"},"website":{"type":"string"}},"type":"object"},"type":"array"},"warnings":{"items":{"type":"string"},"type":"array"}},"type":"object"}}},"description":"A list of items matching the search parameters"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"403":{"content":{"application\/json":{"schema":{"properties":{"error":{"description":"Error message","type":"string"}},"type":"object"}}},"description":"Access denied (depends on `template` parameter)"},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"properties":{"error":{"description":"Error message","type":"string"}},"type":"object"}}},"description":"Other input (or server) error"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Advanced Filings Search","tags":["search"],"x-courtapi-resource":"adv-search","x-courtapi-source":"local","x-courtdrive-async-desc":"Filings advanced search","x-mojo-name":"cases_pacer_search_es","x-mojo-to":"PACER::Case::Search#es_case_search"}},"\/cases\/pacer\/search-filings\/business-bankruptcies\/cases":{"get":{"description":"Business bankruptcies search","parameters":[{"description":"Case date filed from (YYYY-MM-DD) - default: 2 weeks ago","in":"query","name":"date_filed_from","schema":{"format":"date","type":"string"}},{"description":"Cases filed date through (YYYY-MM-DD) - default: today","in":"query","name":"date_filed_to","schema":{"format":"date","type":"string"}},{"description":"Maximum number of cases to return per page.","in":"query","name":"page_size","schema":{"default":25,"maximum":25,"minimum":1,"type":"integer"}},{"description":"The page number to fetch.","in":"query","name":"page_number","schema":{"default":1,"minimum":1,"type":"integer"}}],"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_no":"3:14-bk-00092","case_title":"SoCal Eats LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"casbke","date_closed":null,"date_discharged":null,"date_filed":"01\/08\/2014","date_of_last_filing":"05\/29\/2015","date_terminated":null,"disposition":null,"has_asset":"Yes","judge_name":"Louise DeCarl Adler","jurisdiction":null,"jury_demand":null,"links":{"self":"http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/casbke\/3:14-bk-00092"},"modified":"2017-07-09T05:13:32.653406000Z","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null}],"links":{"first":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies?date_filed_from=2014-01-08&date_filed_to=2014-01-10&page_size=25&page_number=1"},"last":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies?date_filed_from=2014-01-08&date_filed_to=2014-01-10&page_size=25&page_number=5"},"next":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies?date_filed_from=2014-01-08&date_filed_to=2014-01-10&page_size=25&page_number=3"},"prevous":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies?date_filed_from=2014-01-08&date_filed_to=2014-01-10&page_size=25&page_number=1"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies?date_filed_from=2014-01-08&date_filed_to=2014-01-10&page_size=25&page_number=2"}}},"schema":{"properties":{"cases":{"items":{"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"modified":{"format":"date-time","type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"first":{"properties":{"href":{"type":"string"}},"type":"object"},"last":{"properties":{"href":{"type":"string"}},"type":"object"},"next":{"properties":{"href":{"type":"string"}},"type":"object"},"previous":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_no>3:14-bk-00092<\/case_no>\n    <case_title>SoCal Eats LLC<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter>11<\/chapter>\n    <court_code>casbke<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>01\/08\/2014<\/date_filed>\n    <date_of_last_filing>05\/29\/2015<\/date_of_last_filing>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>Yes<\/has_asset>\n    <judge_name>Louise DeCarl Adler<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <links>\n      <self>http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/casbke\/3:14-bk-00092<\/self>\n    <\/links>\n    <modified>2017-07-09T05:13:32.653406000Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type>v<\/petition_type>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/cases>\n  <links>\n    <first>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies?date_filed_from=2014-01-08&amp;date_filed_to=2014-01-10&amp;page_size=25&amp;page_number=1<\/href>\n    <\/first>\n    <last>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies?date_filed_from=2014-01-08&amp;date_filed_to=2014-01-10&amp;page_size=25&amp;page_number=5<\/href>\n    <\/last>\n    <next>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies?date_filed_from=2014-01-08&amp;date_filed_to=2014-01-10&amp;page_size=25&amp;page_number=3<\/href>\n    <\/next>\n    <prevous>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies?date_filed_from=2014-01-08&amp;date_filed_to=2014-01-10&amp;page_size=25&amp;page_number=1<\/href>\n    <\/prevous>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies?date_filed_from=2014-01-08&amp;date_filed_to=2014-01-10&amp;page_size=25&amp;page_number=2<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"Business Bunkruptcies Response"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Business Bankruptcies","tags":["business-bankruptcies"],"x-courtapi-resource":"business-bk-cases","x-courtapi-source":"local","x-courtdrive-async-desc":"Business bankruptcies search","x-mojo-name":"cases_pacer_business_bankruptcies","x-mojo-to":"PACER::Case::Search::BusinessBankruptcies#cases"}},"\/cases\/pacer\/search-filings\/business-bankruptcies\/creditors":{"get":{"description":"Business bankruptcies creditors search","parameters":[{"description":"Case date filed from (YYYY-MM-DD) - default: 2 weeks ago","in":"query","name":"date_filed_from","schema":{"format":"date","type":"string"}},{"description":"Cases filed date through (YYYY-MM-DD) - default: today","in":"query","name":"date_filed_to","schema":{"format":"date","type":"string"}},{"description":"Only return creditors modified since this timestamp.  This timestamp must be within the range of `date_filed_from` and `date_filed_to`.\n","in":"query","name":"creditor_modified_from","schema":{"format":"date-time","type":"string"}},{"description":"Maximum number of creditors to return per page.","in":"query","name":"page_size","schema":{"default":25,"maximum":25,"minimum":1,"type":"integer"}},{"description":"The page number to fetch.","in":"query","name":"page_number","schema":{"default":1,"minimum":1,"type":"integer"}}],"responses":{"200":{"content":{"application\/json":{"example":{"creditors":[{"address":"123 No Road\nExample City, CA 12345","case_number":"1:12-bk-12859","case_title":"B456 Systems, Inc.","court_code":"debke","email":"example@example.com","fax_number":"555-555-1234","links":{"case":"https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:12-bk-12859"},"modified":"2012-11-27T02:53:18.127436Z","name":"Example Creditor","phone_number":"555-555-6789","role":"cr"}],"links":{"first":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies\/creditors?page_size=25&page_number=1"},"last":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies\/creditors?page_size=25&page_number=5"},"next":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies\/creditors?page_size=25&page_number=3"},"prevous":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies\/creditors?page_size=25&page_number=1"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies\/creditors?page_size=25&page_number=2"}}},"schema":{"properties":{"creditors":{"items":{"properties":{"address":{"type":"string"},"case_number":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"email":{"type":"string"},"fax_number":{"type":"string"},"links":{"properties":{"case":{"type":"string"}},"type":"object"},"modified":{"format":"date-time","type":"string"},"name":{"type":"string"},"phone_number":{"type":"string"},"role":{"type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"first":{"properties":{"href":{"type":"string"}},"type":"object"},"last":{"properties":{"href":{"type":"string"}},"type":"object"},"next":{"properties":{"href":{"type":"string"}},"type":"object"},"prevous":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <creditors>\n    <address>123 No Road\nExample City, CA 12345<\/address>\n    <case_number>1:12-bk-12859<\/case_number>\n    <case_title>B456 Systems, Inc.<\/case_title>\n    <court_code>debke<\/court_code>\n    <email>example@example.com<\/email>\n    <fax_number>555-555-1234<\/fax_number>\n    <links>\n      <case>https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:12-bk-12859<\/case>\n    <\/links>\n    <modified>2012-11-27T02:53:18.127436Z<\/modified>\n    <name>Example Creditor<\/name>\n    <phone_number>555-555-6789<\/phone_number>\n    <role>cr<\/role>\n  <\/creditors>\n  <links>\n    <first>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies\/creditors?page_size=25&amp;page_number=1<\/href>\n    <\/first>\n    <last>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies\/creditors?page_size=25&amp;page_number=5<\/href>\n    <\/last>\n    <next>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies\/creditors?page_size=25&amp;page_number=3<\/href>\n    <\/next>\n    <prevous>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies\/creditors?page_size=25&amp;page_number=1<\/href>\n    <\/prevous>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/business-bankruptcies\/creditors?page_size=25&amp;page_number=2<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"Business Bunkruptcies Creditors Response"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Business Bankruptcies Creditors","tags":["business-bankruptcies"],"x-courtapi-resource":"business-bk-creditors","x-courtapi-source":"local","x-courtdrive-async-desc":"Business bankruptcies creditor search","x-mojo-name":"cases_pacer_business_bankruptcies_creditors","x-mojo-to":"PACER::Case::Search::BusinessBankruptcies#creditors"}},"\/cases\/pacer\/search-filings\/header-tax-id":{"get":{"description":"Search cases by tax ids found in the docket header.  Returns list of cases that contain the given\ntax id in the docket header.\n","operationId":"searchHeaderTaxId","parameters":[{"description":"The type of the tax id.","in":"query","name":"tax_id_type","required":true,"schema":{"enum":["ssn4","itin","ein"],"type":"string"}},{"description":"The value of tax id","in":"query","name":"value","required":true,"schema":{"pattern":"^[a-zA-Z0-9-]+$","type":"string"}},{"description":"Case date filed from (YYYY-MM-DD)","in":"query","name":"date_filed_from","schema":{"format":"date","type":"string"}},{"description":"Cases filed date through (YYYY-MM-DD)","in":"query","name":"date_filed_to","schema":{"format":"date","type":"string"}},{"description":"Maximum number of cases to return per page.","in":"query","name":"page_size","schema":{"default":50,"maximum":50,"minimum":1,"type":"integer"}},{"description":"The page number to fetch.","in":"query","name":"page_number","schema":{"default":1,"minimum":1,"type":"integer"}}],"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_no":"3:14-bk-00092","case_title":"SoCal Eats LLC","case_type":"bk","cause":null,"chapter":11,"court_code":"casbke","date_closed":null,"date_discharged":null,"date_filed":"01\/08\/2014","date_of_last_filing":"05\/29\/2015","date_terminated":null,"disposition":null,"has_asset":"Yes","judge_name":"Louise DeCarl Adler","jurisdiction":null,"jury_demand":null,"links":{"self":"http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/casbke\/3:14-bk-00092"},"modified":"2017-07-09T05:13:32.653406000Z","nature_of_suit_code":null,"plan_confirmed":null,"referred_to":null}],"links":{"first":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/header-tax-id?date_filed_from=2014-01-08&date_filed_to=2014-01-10&page_size=50&page_number=1"},"last":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/header-tax-id?date_filed_from=2014-01-08&date_filed_to=2014-01-10&page_size=50&page_number=5"},"next":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/header-tax-id?date_filed_from=2014-01-08&date_filed_to=2014-01-10&page_size=50&page_number=3"},"prevous":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/header-tax-id?date_filed_from=2014-01-08&date_filed_to=2014-01-10&page_size=50&page_number=1"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/header-tax-id?date_filed_from=2014-01-08&date_filed_to=2014-01-10&page_size=50&page_number=2"}}},"schema":{"properties":{"cases":{"items":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"first":{"properties":{"href":{"type":"string"}},"type":"object"},"last":{"properties":{"href":{"type":"string"}},"type":"object"},"next":{"properties":{"href":{"type":"string"}},"type":"object"},"previous":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_no>3:14-bk-00092<\/case_no>\n    <case_title>SoCal Eats LLC<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <court_code>casbke<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>01\/08\/2014<\/date_filed>\n    <date_of_last_filing>05\/29\/2015<\/date_of_last_filing>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>Yes<\/has_asset>\n    <judge_name>Louise DeCarl Adler<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <links>\n      <self>http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/casbke\/3:14-bk-00092<\/self>\n    <\/links>\n    <modified>2017-07-09T05:13:32.653406000Z<\/modified>\n    <nature_of_suit_code\/>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/cases>\n  <links>\n    <first>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/header-tax-id?date_filed_from=2014-01-08&amp;date_filed_to=2014-01-10&amp;page_size=50&amp;page_number=1<\/href>\n    <\/first>\n    <last>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/header-tax-id?date_filed_from=2014-01-08&amp;date_filed_to=2014-01-10&amp;page_size=50&amp;page_number=5<\/href>\n    <\/last>\n    <next>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/header-tax-id?date_filed_from=2014-01-08&amp;date_filed_to=2014-01-10&amp;page_size=50&amp;page_number=3<\/href>\n    <\/next>\n    <prevous>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/header-tax-id?date_filed_from=2014-01-08&amp;date_filed_to=2014-01-10&amp;page_size=50&amp;page_number=1<\/href>\n    <\/prevous>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search-filings\/header-tax-id?date_filed_from=2014-01-08&amp;date_filed_to=2014-01-10&amp;page_size=50&amp;page_number=2<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"Header Tax Id Response"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Docket Header Tax Id Search","tags":["search"],"x-courtapi-resource":"tax-id-cases","x-courtapi-source":"local","x-courtdrive-async-desc":"Docket header tax id search","x-mojo-name":"cases_pacer_search_tax_id","x-mojo-to":"PACER::Case::Search::TaxId#case_search_tax_id"}},"\/cases\/pacer\/search\/case_no\/{case_number}":{"get":{"description":"Case Search by Case Number","operationId":"searchByCaseNumber","parameters":[{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"Page Size","in":"query","name":"page_size","schema":{"type":"integer"}},{"description":"Page Number","in":"query","name":"page_number","schema":{"type":"integer"}}],"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case":{"case_no":"3:92-cv-30199","case_title":"IMPORT CITY, INC v. DAIHATSU AMERICA INC, et al","chapter":null,"court_code":"flndce","date_closed":"06\/23\/1993","date_filed":"05\/19\/1992","disposition":null,"party_name":"SMITH, WALTER JOSEPH","party_role":"aty","timestamp":"2019-04-29T08:58:08.370800Z"},"links":{"self":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30199"}}],"pages":{"pageindex":1,"pagesize":10,"totalitems":1}},"schema":{"properties":{"cases":{"items":{"properties":{"case":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"disposition":{"type":"string"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"}},"type":"object"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"pages":{"properties":{"pageindex":{"type":"number"},"pagesize":{"type":"number"},"totalitems":{"type":"number"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case>\n      <case_no>3:92-cv-30199<\/case_no>\n      <case_title>IMPORT CITY, INC v. DAIHATSU AMERICA INC, et al<\/case_title>\n      <chapter\/>\n      <court_code>flndce<\/court_code>\n      <date_closed>06\/23\/1993<\/date_closed>\n      <date_filed>05\/19\/1992<\/date_filed>\n      <disposition\/>\n      <party_name>SMITH, WALTER JOSEPH<\/party_name>\n      <party_role>aty<\/party_role>\n      <timestamp>2019-04-29T08:58:08.370800Z<\/timestamp>\n    <\/case>\n    <links>\n      <self>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30199<\/self>\n    <\/links>\n  <\/cases>\n  <pages>\n    <pageindex>1<\/pageindex>\n    <pagesize>10<\/pagesize>\n    <totalitems>1<\/totalitems>\n  <\/pages>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Case Search by Case Number","tags":["case_lookup"],"x-courtapi-resource":"cases","x-courtapi-source":"local","x-courtdrive-async-desc":"Case search by {{case_number}}","x-mojo-name":"cases_pacer_search_case_no","x-mojo-to":"PACER::Case::Search#case_no"}},"\/cases\/pacer\/search\/party_title":{"get":{"description":"Local Database Case Search by Case Title or Party Name","operationId":"searchByPartyTitle","parameters":[{"description":"Search Terms","in":"query","name":"search_terms","required":true,"schema":{"type":"string"}},{"description":"Party name and\/or Case title","in":"query","name":"in","schema":{"default":"either","enum":["party","title","either","both"],"type":"string"}},{"description":"Case type","explode":true,"in":"query","name":"case_type","schema":{"items":{"enum":["ap","appellate","bk","cr","cv","mj","mp","mr"],"type":"string"},"type":"array"},"style":"form"},{"description":"Filed From Date (MM\/DD\/YYYY)","in":"query","name":"filed_from","schema":{"type":"string"}},{"description":"Filed To Date (MM\/DD\/YYYY)","in":"query","name":"filed_to","schema":{"type":"string"}},{"description":"Chapter","in":"query","name":"chapter","schema":{"enum":[7,9,11,12,13,15,304],"type":"integer"}},{"description":"Page Size","in":"query","name":"page_size","schema":{"default":50,"maximum":50,"minimum":1,"type":"integer"}},{"description":"Page Number","in":"query","name":"page_number","schema":{"minimum":1,"type":"integer"}},{"description":"Sort Column","in":"query","name":"sort_column","schema":{"default":"case_title","enum":["case_title","court_code","case_number","chapter","date_filed"],"type":"string"}},{"description":"Sort Order","in":"query","name":"sort_order","schema":{"default":"asc","enum":["asc","desc"],"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case":{"assets":"Unknown","assigned_to":"~","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":"~","ch11_type":"~","chapter":11,"court_code":"nysbke","date_closed":"~","date_discharged":"~","date_filed":"03\/10\/2014","date_of_last_filing":"~","date_terminated":"~","disposition":"~","has_asset":false,"judge_name":"Martin Glenn","jurisdiction":"~","jury_demand":"~","modified":"2017-07-09T05:13:32.653406Z","nature_of_suit_code":"~","parties":[{"name":"Sbarro LLC","role":"db"},{"name":"New Sbarro LLC","role":"db"},{"name":"Belmonte, Christopher Robert","role":"aty"}],"referred_to":"~"},"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557"}}}],"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/search\/party_title?search_terms=sbarro&in=either&page_size=50&sort_column=case_title&sort_order=asc&page_size=50&page_number=1"}}},"schema":{"properties":{"cases":{"items":{"properties":{"case":{"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_suit_code":{"type":"string"},"parties":{"items":{"properties":{"name":{"type":"string"},"role":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"links":{"properties":{"first":{"properties":{"href":{"type":"string"}},"type":"object"},"last":{"properties":{"href":{"type":"string"}},"type":"object"},"next":{"properties":{"href":{"type":"string"}},"type":"object"},"previous":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case>\n      <assets>Unknown<\/assets>\n      <assigned_to\/>\n      <case_no>1:14-bk-10557<\/case_no>\n      <case_title>Sbarro LLC<\/case_title>\n      <case_type>bk<\/case_type>\n      <cause\/>\n      <ch11_type\/>\n      <chapter>11<\/chapter>\n      <court_code>nysbke<\/court_code>\n      <date_closed\/>\n      <date_discharged\/>\n      <date_filed>03\/10\/2014<\/date_filed>\n      <date_of_last_filing\/>\n      <date_terminated\/>\n      <disposition\/>\n      <has_asset>0<\/has_asset>\n      <judge_name>Martin Glenn<\/judge_name>\n      <jurisdiction\/>\n      <jury_demand\/>\n      <modified>2017-07-09T05:13:32.653Z<\/modified>\n      <nature_of_suit_code\/>\n      <parties>\n        <name>Sbarro LLC<\/name>\n        <role>db<\/role>\n      <\/parties>\n      <parties>\n        <name>New Sbarro LLC<\/name>\n        <role>db<\/role>\n      <\/parties>\n      <parties>\n        <name>Belmonte, Christopher Robert<\/name>\n        <role>aty<\/role>\n      <\/parties>\n      <referred_to\/>\n    <\/case>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557<\/href>\n      <\/self>\n    <\/links>\n  <\/cases>\n  <links>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/search\/party_title?search_terms=sbarro&amp;in=either&amp;page_size=50&amp;sort_column=case_title&amp;sort_order=asc&amp;page_size=50&amp;page_number=1<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Local Database Case Search by Case Title or Party Name","tags":["case_lookup"],"x-courtapi-resource":"cases","x-courtapi-source":"local","x-courtdrive-async-desc":"Case search by party\/title","x-mojo-name":"cases_pacer_search_party_title","x-mojo-to":"PACER::Case::Search#party_title"}},"\/cases\/pacer\/{court_code}\/bulk-claims\/upload-zip":{"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}}],"post":{"requestBody":{"content":{"multipart\/form-data":{"encoding":{"zip_file":{"contentType":"application\/zip"}},"schema":{"additionalProperties":false,"properties":{"pacer_pass":{"description":"PACER Password","type":"string"},"pacer_user":{"description":"PACER UserName","type":"string"},"preflight":{"description":"If true, only pre-validation will be performed, without final submission","type":"boolean"},"zip_file":{"format":"binary","type":"string"}},"required":["zip_file","pacer_user","pacer_pass"],"type":"object"}}},"description":"ZIP file containing creditor claims","required":true},"responses":{"200":{"description":"Creditor for Claim"},"400":{"description":"Bad request, invalid request syntax, wrong input"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Bulk Claim Upload ZIP","tags":["bulk-claims"],"x-courtapi-resource":"bulk-claims","x-courtapi-source":"pacer","x-mojo-name":"pacer_court_bulk_upload_zip","x-mojo-to":"PACER::Case::BulkClaims#upload_zip"}},"\/cases\/pacer\/{court_code}\/{case_number}":{"get":{"description":"Case Root Menu","operationId":"getCaseMenu","parameters":[{"description":"If true check if menu needs updating and update it","in":"query","name":"auto_update_menu","schema":{"type":"boolean"}}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"civil","case_no":"3:92-cv-30321","case_title":"UNITED STATES v. INTERNATL FIDELITY","case_type":"cv","cause":null,"ch11_type":null,"chapter":null,"court_code":"flndce","date_closed":"04\/11\/1997","date_discharged":null,"date_filed":"08\/25\/1992","date_of_last_filing":"09\/08\/2000","date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":false,"is_ok_to_list_publicly":false,"judge_name":"LACEY A COLLIER","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2022-01-21T04:57:14.362364Z","naics_code":130,"nature_of_debt":"~","nature_of_suit_code":130,"petition_type":null,"plan_confirmed":null,"referred_to":null},"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30321","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30321"}},"menu":{}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"menu":{"properties":{"alias":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"associated_cases":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"attorneys":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"case_file_location":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"case_summary":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"claims":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"creditor_mailing":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"creditors":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"dockets":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"filers":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"history":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"judges":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"notice":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"parties":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"related_transactions":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"schedule":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"status_pending":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"trustees":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>civil<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>3:92-cv-30321<\/case_no>\n    <case_title>UNITED STATES v. INTERNATL FIDELITY<\/case_title>\n    <case_type>cv<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter\/>\n    <court_code>flndce<\/court_code>\n    <date_closed>04\/11\/1997<\/date_closed>\n    <date_discharged\/>\n    <date_filed>08\/25\/1992<\/date_filed>\n    <date_of_last_filing\/>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name\/>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2019-04-29T08:58:08.509200Z<\/modified>\n    <nature_of_suit_code>130<\/nature_of_suit_code>\n    <petition_type\/>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <links>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30321<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30321<\/href>\n    <\/self>\n  <\/links>\n  <menu\/>\n<\/result>\n"}},"description":"Case Root Menu"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Any Error, say invalid parameters, network timeouts..."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Case Root Menu","tags":["case"],"x-courtapi-resource":"case-menu","x-courtapi-source":"local","x-courtdrive-async-desc":"Case menu of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_root","x-mojo-to":"PACER::Case#case_menu"},"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"post":{"description":"PACER Query Case Menu","operationId":"updateMenu","parameters":[{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"},"refresh_header":{"description":"If true do case header refresh","type":"boolean"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_no":"3:14-bk-30029","case_title":"Henock Hagos and Adhanet Habtay Mehretab","case_type":"bk","cause":null,"ch11_type":null,"chapter":7,"court_code":"orbtrain","date_closed":null,"date_discharged":"04\/08\/2014","date_filed":"01\/06\/2014","date_of_last_filing":"04\/29\/2019","date_terminated":null,"disposition":null,"has_asset":"No","is_ok_to_list_publicly":false,"judge_name":"Trish M Brown","jurisdiction":null,"jury_demand":null,"modified":"2019-05-01T09:00:30.562570Z","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"links":{"case.alias":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/alias"},"case.associated_cases":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/associated_cases"},"case.attorneys":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/attorneys"},"case.case_summary":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/case_summary"},"case.claims":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/claims"},"case.creditor_mailing":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/creditor_mailing"},"case.creditors":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/creditors"},"case.dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/dockets"},"case.filers":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/filers"},"case.history":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/history"},"case.notice":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/notice"},"case.parties":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/parties"},"case.schedule":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/schedule"},"case.status_pending":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/status_pending"},"case.trustees":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/trustees"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029"}},"menu":{"alias":{"modified":null,"pacer_available":true},"associated_cases":{"modified":null,"pacer_available":true},"attorneys":{"modified":null,"pacer_available":true},"case_file_location":{"modified":null,"pacer_available":false},"case_summary":{"modified":null,"pacer_available":true},"claims":{"modified":null,"pacer_available":true},"creditor_mailing":{"modified":null,"pacer_available":true},"creditors":{"modified":null,"pacer_available":true},"dockets":{"modified":null,"pacer_available":true},"filers":{"modified":null,"pacer_available":true},"history":{"modified":null,"pacer_available":true},"judges":{"modified":null,"pacer_available":false},"notice":{"modified":null,"pacer_available":true},"parties":{"modified":null,"pacer_available":true},"schedule":{"modified":null,"pacer_available":true},"status_pending":{"modified":null,"pacer_available":true},"trustees":{"modified":null,"pacer_available":true}}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"menu":{"properties":{"alias":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"associated_cases":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"attorneys":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"case_file_location":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"case_summary":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"claims":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"creditor_mailing":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"creditors":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"dockets":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"filers":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"history":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"judges":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"notice":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"parties":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"related_transactions":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"schedule":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"status_pending":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"},"trustees":{"properties":{"modified":{"format":"date-time","type":"string"},"pacer_available":{"type":"boolean"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_no>3:14-bk-30029<\/case_no>\n    <case_title>Henock Hagos and Adhanet Habtay Mehretab<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter>7<\/chapter>\n    <court_code>orbtrain<\/court_code>\n    <date_closed\/>\n    <date_discharged>04\/08\/2014<\/date_discharged>\n    <date_filed>01\/06\/2014<\/date_filed>\n    <date_of_last_filing>04\/29\/2019<\/date_of_last_filing>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>No<\/has_asset>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Trish M Brown<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2019-05-01T09:00:30.562570Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type>v<\/petition_type>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <links>\n    <case.alias>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/alias<\/href>\n    <\/case.alias>\n    <case.associated_cases>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/associated_cases<\/href>\n    <\/case.associated_cases>\n    <case.attorneys>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/attorneys<\/href>\n    <\/case.attorneys>\n    <case.case_summary>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/case_summary<\/href>\n    <\/case.case_summary>\n    <case.claims>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/claims<\/href>\n    <\/case.claims>\n    <case.creditor_mailing>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/creditor_mailing<\/href>\n    <\/case.creditor_mailing>\n    <case.creditors>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/creditors<\/href>\n    <\/case.creditors>\n    <case.dockets>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/dockets<\/href>\n    <\/case.dockets>\n    <case.filers>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/filers<\/href>\n    <\/case.filers>\n    <case.history>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/history<\/href>\n    <\/case.history>\n    <case.notice>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/notice<\/href>\n    <\/case.notice>\n    <case.parties>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/parties<\/href>\n    <\/case.parties>\n    <case.schedule>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/schedule<\/href>\n    <\/case.schedule>\n    <case.status_pending>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/status_pending<\/href>\n    <\/case.status_pending>\n    <case.trustees>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029\/trustees<\/href>\n    <\/case.trustees>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029<\/href>\n    <\/self>\n  <\/links>\n  <menu>\n    <alias>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/alias>\n    <associated_cases>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/associated_cases>\n    <attorneys>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/attorneys>\n    <case_file_location>\n      <modified\/>\n      <pacer_available>0<\/pacer_available>\n    <\/case_file_location>\n    <case_summary>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/case_summary>\n    <claims>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/claims>\n    <creditor_mailing>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/creditor_mailing>\n    <creditors>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/creditors>\n    <dockets>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/dockets>\n    <filers>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/filers>\n    <history>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/history>\n    <judges>\n      <modified\/>\n      <pacer_available>0<\/pacer_available>\n    <\/judges>\n    <notice>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/notice>\n    <parties>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/parties>\n    <schedule>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/schedule>\n    <status_pending>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/status_pending>\n    <trustees>\n      <modified\/>\n      <pacer_available>1<\/pacer_available>\n    <\/trustees>\n  <\/menu>\n<\/result>\n"}},"description":"Case Root Menu"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Menu","tags":["query"],"x-courtapi-resource":"case-menu","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Case menu update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_menu","x-mojo-to":"PACER::Query#pacer_query_menu"}},"\/cases\/pacer\/{court_code}\/{case_number}\/alias":{"get":{"description":"Parties with alias for case","operationId":"getPartyAliases","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"example":{"alias":[{"party":{"address":"401 Broadhollow Road\nMelville, NY 11747","email":null,"fax":null,"name":"Sbarro LLC","phone":null,"role":"Debtor"},"party_alias":[{"modified":"2014-04-23T16:44:34.421029Z","name":"New Sbarro LLC","role":"aka"}]}],"case":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"modified":"2017-07-09T05:13:32.653410Z","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/alias","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/alias"}},"timestamp":"2014-04-23T16:44:34.421030Z"},"schema":{"properties":{"alias":{"items":{"properties":{"party":{"properties":{"address":{"type":"string"},"email":{"type":"string"},"fax":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"}},"type":"object"},"party_alias":{"items":{"properties":{"modified":{"type":"string"},"name":{"type":"string"},"role":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"},"type":"array"},"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <alias>\n    <party>\n      <address>401 Broadhollow Road\nMelville, NY 11747<\/address>\n      <email\/>\n      <fax\/>\n      <name>Sbarro LLC<\/name>\n      <phone\/>\n      <role>Debtor<\/role>\n    <\/party>\n    <party_alias>\n      <modified>2014-04-23T16:44:34.421029Z<\/modified>\n      <name>New Sbarro LLC<\/name>\n      <role>aka<\/role>\n    <\/party_alias>\n  <\/alias>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>1:14-bk-10557<\/case_no>\n    <case_title>Sbarro LLC<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter>11<\/chapter>\n    <court_code>nysbke<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>03\/10\/2014<\/date_filed>\n    <date_of_last_filing\/>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>No<\/has_asset>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Martin Glenn<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2017-07-09T05:13:32.653410Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type>v<\/petition_type>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <links>\n    <menu>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557<\/href>\n    <\/menu>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/alias<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/alias<\/href>\n    <\/self>\n  <\/links>\n  <timestamp>2014-04-23T16:44:34.421030Z<\/timestamp>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Parties with alias for case","tags":["case"],"x-courtapi-resource":"alias","x-courtapi-source":"local","x-courtdrive-async-desc":"Party aliases of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_alias","x-mojo-to":"PACER::Case#alias"},"post":{"description":"PACER Query Case Alias","operationId":"updatePartyAliases","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"alias":[{"party":{"address":"PO Box 123\nPortland, OR 97208\n, 12-3444556","ein":"12-3344556","name":"PiclepackingBusiness Picklepuss Steinfieldsmithjones, Jr.","role":"Debtor","ssn":"xxx-xx-4444"},"party_alias":[{"name":"PicklesRUs","role":"dba"},{"name":"Pickles Forever","role":"dba"},{"name":"Long Live Pickles","role":"dba"}]}],"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":null,"case_chapter_id":3,"case_court_id":221,"case_id_external":460025,"case_no":"3:17-bk-30057","case_petition_id":1,"case_title":"PiclepackingBusiness Picklepuss Steinfieldsmithjon","case_type_id":1,"cause":null,"ch11_type":null,"ch11_type_code":null,"chapter":11,"court":"orbtrain","court_name":"orbtrain","created":"2019-05-01T14:40:05.384459Z","date_closed":null,"date_discharged":null,"date_filed":"11\/22\/2017","date_of_last_filing":"03\/05\/2019","date_plan_confirmed":null,"date_terminated":null,"disabled":0,"disposition":null,"has_asset":1,"is_business_bankruptcy":null,"is_ok_to_list_publicly":false,"judge_name":"Peter C McKittrick","jurisdiction":null,"jury_demand":null,"lead_case_uuid":null,"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:17-bk-30057"}},"modified":"2019-05-01T15:06:25.664106Z","nature_of_debt":null,"nature_of_suit_code":null,"ncl_parties":[],"referred_to":null,"schedule_ab":null,"timestamp":"2019-05-01T15:06:25.664110Z","title":"PiclepackingBusiness Picklepuss Steinfieldsmithjon","uri_id":85058472},"receipts":{"client_code":"","cost":"0.10","criteria":"17-30057-pcm11","datetime":"05\/01\/2019 08:06:25","description":"Aliases","pages":"1","timestamp":"2019-05-01T15:06:24.110870Z","user_id":"irtraining"}},"schema":{"properties":{"alias":{"items":{"properties":{"party":{"properties":{"name":{"type":"string"},"role":{"type":"string"}},"type":"object"},"party_alias":{"items":{"properties":{"name":{"type":"string"},"role":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"},"type":"array"},"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <alias>\n    <party>\n      <address>PO Box 123\nPortland, OR 97208 , 12-3444556<\/address>\n      <ein>12-3344556<\/ein>\n      <name>PiclepackingBusiness Picklepuss Steinfieldsmithjones, Jr.<\/name>\n      <role>Debtor<\/role>\n      <ssn>xxx-xx-4444<\/ssn>\n    <\/party>\n    <party_alias>\n      <name>PicklesRUs<\/name>\n      <role>dba<\/role>\n    <\/party_alias>\n    <party_alias>\n      <name>Pickles Forever<\/name>\n      <role>dba<\/role>\n    <\/party_alias>\n    <party_alias>\n      <name>Long Live Pickles<\/name>\n      <role>dba<\/role>\n    <\/party_alias>\n  <\/alias>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_chapter_id>3<\/case_chapter_id>\n    <case_court_id>221<\/case_court_id>\n    <case_id_external>460025<\/case_id_external>\n    <case_no>3:17-bk-30057<\/case_no>\n    <case_petition_id>1<\/case_petition_id>\n    <case_title>PiclepackingBusiness Picklepuss Steinfieldsmithjon<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <cause\/>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter>11<\/chapter>\n    <court>orbtrain<\/court>\n    <court_name>orbtrain<\/court_name>\n    <created>2019-05-01T14:40:05.384459Z<\/created>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>11\/22\/2017<\/date_filed>\n    <date_of_last_filing>03\/05\/2019<\/date_of_last_filing>\n    <date_plan_confirmed\/>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>1<\/has_asset>\n    <is_business_bankruptcy\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Peter C McKittrick<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <lead_case_uuid\/>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:17-bk-30057<\/href>\n      <\/self>\n    <\/links>\n    <modified>2019-05-01T15:06:25.664106Z<\/modified>\n    <nature_of_debt\/>\n    <nature_of_suit_code\/>\n    <referred_to\/>\n    <schedule_ab\/>\n    <timestamp>2019-05-01T15:06:25.664110Z<\/timestamp>\n    <title>PiclepackingBusiness Picklepuss Steinfieldsmithjon<\/title>\n    <uri_id>85058472<\/uri_id>\n  <\/case>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>17-30057-pcm11<\/criteria>\n    <datetime>05\/01\/2019 08:06:25<\/datetime>\n    <description>Aliases<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T15:06:24.110870Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Alias","tags":["query"],"x-courtapi-resource":"alias","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Alias update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_alias","x-mojo-to":"PACER::Query#pacer_query_alias"}},"\/cases\/pacer\/{court_code}\/{case_number}\/associated_cases":{"get":{"description":"Cases related to the case or lead case","operationId":"getAssociatedCases","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"associated_cases":{"example":[{"associated_case":{"case_no":"1:15-ap-50238","case_title":"KiOR, Inc. v. State of Mississippi, Mississippi Development Auth","case_type":"Adversary","court_code":"debke","links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:15-ap-50238"}}},"case":{"case_no":"1:14-bk-12514","case_title":"KiOR, Inc.","court_code":"debke","date_closed":"~","links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:14-bk-12514"}}}},{"associated_case":{"case_no":"1:16-ap-51020","case_title":"Gwynne v. Carlton et al","case_type":"Adversary","court_code":"debke","links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:16-ap-51020"}}},"case":{"case_no":"1:14-bk-12514","case_title":"KiOR, Inc.","court_code":"debke","date_closed":"~","links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:14-bk-12514"}}}}],"items":{"properties":{"associated_case":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"court_code":{"type":"string"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"case":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"example":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysdce\/1:02-cv-09921"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysdce\/1:02-cv-09921\/associated_cases","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysdce\/1:02-cv-09921\/associated_cases","method":"POST"}},"properties":{"case":{"properties":{"href":{"type":"string"}},"type":"object"},"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"other_court_information":{"example":{"html":"<B>Other Court Information<\/B><P><TABLE border=1><TR><TH>Court Name<\/TH><TH>Case Number<\/TH><TH>Start Date<\/TH><TH>End Date<\/TH><\/TR><TR><TD>Johnson County District Court<\/TD><TD>16CV01866<\/TD><TD>04\/21\/2016<\/TD><TD><\/TD><\/TR><\/TABLE>"},"properties":{"html":{"type":"string"}},"type":"object"},"other_filings":{"example":[{"case":{"case_no":"2:15-bk-13693","case_title":"WATEKA I MAY","court_code":"azbke","links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/azbke\/2:15-bk-13693"}}},"debtor":{"name":"WATEKA I MAY"}},{"case":{"case_no":"2:20-bk-02864","case_title":"WATEKA I MAY","court_code":"azbke","links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/azbke\/2:20-bk-02864"}}},"debtor":{"name":"WATEKA I MAY"}}],"items":{"properties":{"case":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"debtor":{"properties":{"name":{"type":"string"}},"type":"object"}},"type":"object"},"type":"array"},"related_cases_district":{"example":[{"case_no":"1:02-cv-07312","case_title":"S.E.C. v. Kozlowski, et al","court_code":"nysdce","end_date":null,"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysdce\/1:02-cv-07312"}},"start_date":"12\/17\/2002"}],"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"end_date":{"type":"string"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"start_date":{"type":"string"}},"type":"object"},"type":"array"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <associated_cases>\n    <associated_case\/>\n    <case\/>\n    <empty>There are no associated cases.<\/empty>\n  <\/associated_cases>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>4:15-bk-42850<\/case_no>\n    <case_title>Ricky Rakesh Maharaj<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter\/>\n    <court_code>canbke<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed\/>\n    <date_of_last_filing\/>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name\/>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2019-04-29T09:00:56.133110Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type\/>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <links>\n    <menu>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/canbke\/4:15-bk-42850<\/href>\n    <\/menu>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/canbke\/4:15-bk-42850\/associated_cases<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/canbke\/4:15-bk-42850\/associated_cases<\/href>\n    <\/self>\n  <\/links>\n  <other_filings>\n    <empty>There are no associated case filings.<\/empty>\n  <\/other_filings>\n  <timestamp\/>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Cases related to the case or lead case","tags":["case"],"x-courtapi-resource":"associated-cases","x-courtapi-source":"local","x-courtdrive-async-desc":"Associated cases of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_associated_cases","x-mojo-to":"PACER::Case#associated_cases"},"post":{"description":"PACER Query Case Associated Cases","operationId":"updateAssociatedCases","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"associated_cases":{"example":[{"associated_case":{"case_no":"1:15-ap-50238","case_title":"KiOR, Inc. v. State of Mississippi, Mississippi Development Auth","case_type":"Adversary","court_code":"debke","links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:15-ap-50238"}}},"case":{"case_no":"1:14-bk-12514","case_title":"KiOR, Inc.","court_code":"debke","date_closed":"~","links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:14-bk-12514"}}}},{"associated_case":{"case_no":"1:16-ap-51020","case_title":"Gwynne v. Carlton et al","case_type":"Adversary","court_code":"debke","links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:16-ap-51020"}}},"case":{"case_no":"1:14-bk-12514","case_title":"KiOR, Inc.","court_code":"debke","date_closed":"~","links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:14-bk-12514"}}}}],"items":{"properties":{"associated_case":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"court_code":{"type":"string"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"case":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"example":{"case":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysdce\/1:02-cv-09921"},"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysdce\/1:02-cv-09921"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysdce\/1:02-cv-09921\/associated_cases","method":"POST"},"screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/51c20f6b-314e-4db3-b53c-81930efd943b\/screenshot-redacted.pdf"}},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysdce\/1:02-cv-09921\/associated_cases","method":"POST"}},"properties":{"case":{"properties":{"href":{"type":"string"}},"type":"object"},"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"}},"type":"object"},"screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"other_court_information":{"example":{"html":"<B>Other Court Information<\/B><P><TABLE border=1><TR><TH>Court Name<\/TH><TH>Case Number<\/TH><TH>Start Date<\/TH><TH>End Date<\/TH><\/TR><TR><TD>Johnson County District Court<\/TD><TD>16CV01866<\/TD><TD>04\/21\/2016<\/TD><TD><\/TD><\/TR><\/TABLE>"},"properties":{"html":{"type":"string"}},"type":"object"},"other_filings":{"example":[{"case":{"case_no":"2:15-bk-13693","case_title":"WATEKA I MAY","court_code":"azbke","links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/azbke\/2:15-bk-13693"}}},"debtor":{"name":"WATEKA I MAY"}},{"case":{"case_no":"2:20-bk-02864","case_title":"WATEKA I MAY","court_code":"azbke","links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/azbke\/2:20-bk-02864"}}},"debtor":{"name":"WATEKA I MAY"}}],"items":{"properties":{"case":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"debtor":{"properties":{"name":{"type":"string"}},"type":"object"}},"type":"object"},"type":"array"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"related_cases_district":{"example":[{"case_no":"1:02-cv-07312","case_title":"S.E.C. v. Kozlowski, et al","court_code":"nysdce","end_date":null,"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysdce\/1:02-cv-07312"}},"start_date":"12\/17\/2002"}],"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"end_date":{"type":"string"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"start_date":{"type":"string"}},"type":"object"},"type":"array"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"}}},"description":"OK"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Associated Cases","tags":["query"],"x-courtapi-resource":"associated-cases","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Associated cases update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_associated_cases","x-mojo-to":"PACER::Query#pacer_query_associated_cases"}},"\/cases\/pacer\/{court_code}\/{case_number}\/attorneys":{"get":{"description":"Attorney personal info as well as the party(s) they represent","operationId":"getAttorneys","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"example":{"attorneys":[{"associated":[{"address":"P.O. Box 1264\nShelby, NC 28151-1264\nCLEVELAND-NC","email":null,"fax":null,"name":"Restoration Properties Of Shelby, LLC","phone":null,"role":"Debtor"}],"attorney":{"address":"Gardner Law Offices, PLLC\n320-1 E. Graham St.\nShelby, NC 28150\nFax : 1-888-870-1644","assigned_date":null,"email":"Billgardner@gardnerlawoffices.com","fax":null,"lead":"","modified":"2019-04-29T08:56:55.747999Z","name":"William S. Gardner","phone":"704-600-6113"}}],"case":{"assets":"Unknown","assigned_to":"J. Craig Whitley","case_category":"bankruptcy","case_no":"4:15-bk-40163","case_title":"Restoration Properties Of Shelby, LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"ncwbke","date_closed":null,"date_discharged":null,"date_filed":"04\/28\/2015","date_of_last_filing":"04\/29\/2015","date_terminated":null,"disposition":null,"has_asset":"Yes","is_ok_to_list_publicly":false,"judge_name":"J. Craig Whitley","jurisdiction":null,"jury_demand":null,"modified":"2019-04-29T08:56:55.855810Z","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/ncwbke\/4:15-bk-40163"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/ncwbke\/4:15-bk-40163\/attorneys","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/ncwbke\/4:15-bk-40163\/attorneys"}},"timestamp":"2019-04-29T08:56:55.748000Z"},"schema":{"properties":{"attorneys":{"items":{"properties":{"associated":{"items":{"properties":{"address":{"type":"string"},"email":{"type":"string"},"fax":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"}},"type":"object"},"type":"array"},"attorney":{"properties":{"address":{"type":"string"},"assigned_date":{"type":"string"},"email":{"type":"string"},"fax":{"type":"string"},"lead":{"type":"string"},"modified":{"format":"date-time","type":"string"},"name":{"type":"string"},"phone":{"type":"string"}},"type":"object"}},"type":"object"},"type":"array"},"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"}},"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{"schema":{"format":"binary","type":"string"}},"application\/xml":{"example":"<result>\n  <attorneys>\n    <associated>\n      <address>P.O. Box 1264\nShelby, NC 28151-1264 CLEVELAND-NC<\/address>\n      <email\/>\n      <fax\/>\n      <name>Restoration Properties Of Shelby, LLC<\/name>\n      <phone\/>\n      <role>Debtor<\/role>\n    <\/associated>\n    <attorney>\n      <address>Gardner Law Offices, PLLC\n320-1 E. Graham St. Shelby, NC 28150 Fax : 1-888-870-1644<\/address>\n      <assigned_date\/>\n      <email>Billgardner@gardnerlawoffices.com<\/email>\n      <fax\/>\n      <lead><\/lead>\n      <modified>2019-04-29T08:56:55.747999Z<\/modified>\n      <name>William S. Gardner<\/name>\n      <phone>704-600-6113<\/phone>\n    <\/attorney>\n  <\/attorneys>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to>J. Craig Whitley<\/assigned_to>\n    <case_category>bankruptcy<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>4:15-bk-40163<\/case_no>\n    <case_title>Restoration Properties Of Shelby, LLC<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter>11<\/chapter>\n    <court_code>ncwbke<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>04\/28\/2015<\/date_filed>\n    <date_of_last_filing>04\/29\/2015<\/date_of_last_filing>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>Yes<\/has_asset>\n    <is_ok_to_list_publicly\/>\n    <judge_name>J. Craig Whitley<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2019-04-29T08:56:55.855810Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type>v<\/petition_type>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <links>\n    <menu>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/ncwbke\/4:15-bk-40163<\/href>\n    <\/menu>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/ncwbke\/4:15-bk-40163\/attorneys<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/ncwbke\/4:15-bk-40163\/attorneys<\/href>\n    <\/self>\n  <\/links>\n  <timestamp>2019-04-29T08:56:55.748000Z<\/timestamp>\n<\/result>\n"},"text\/csv":{"example":"Attorney Name,Attorney Address,Attorney Phone,Attorney Email,Attorney Fax,Party Name,Party Address,Party Phone,Party Email,Party Fax,Party Role\n\"William S. Gardner\",\"Gardner Law Offices, PLLC, 320-1 E. Graham St., Shelby, NC 28150\",\"704-600-6113\",\"Billgardner@gardnerlawoffices.com\",\"\",\"Restoration Properties Of Shelby, LLC\",\"P.O. Box 1264, Shelby, NC 28151-1264\",\"\",\"\",\"\",\"Debtor\"\n","schema":{"type":"string"}}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Attorney personal info as well as the party(s) they represent","tags":["case"],"x-courtapi-resource":"attorneys","x-courtapi-source":"local","x-courtdrive-async-desc":"Attorneys of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_attorneys","x-mojo-to":["PACER::Case#attorneys",{},["format",["json","csv","xlsx"]]]},"post":{"description":"PACER Query Case Attorneys","operationId":"updateAttorneys","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"attorneys":[{"associated":[{"address":"9876 N Farmer Rd\nEstacada, OR 97222","name":"Paddington Farmington","role":"Debtor"}],"attorney":{"address":"2002 SW 5th Ave #722\nDemo for KATHI\nPortland, OR 97204\n1orbtester+","assigned_date":"03\/12\/2018","email":"15@gmail.com","lead":"LEAD ATTORNEY","name":"Leslie Pacernotmua Attorney","phone":"503-326-1521","role":"LEAD ATTORNEY"}}],"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":null,"case_chapter_id":1,"case_court_id":221,"case_id_external":460061,"case_no":"3:18-bk-30023","case_petition_id":1,"case_title":"Paddington Farmington","case_type_id":1,"cause":null,"ch11_type":null,"ch11_type_code":null,"chapter":7,"court":"orbtrain","court_name":"orbtrain","created":"2019-05-01T09:10:47.117901Z","date_closed":null,"date_discharged":null,"date_filed":"03\/12\/2018","date_of_last_filing":"02\/19\/2019","date_plan_confirmed":null,"date_terminated":null,"disabled":0,"disposition":null,"has_asset":0,"is_business_bankruptcy":null,"is_ok_to_list_publicly":false,"judge_name":"Peter C McKittrick","jurisdiction":null,"jury_demand":null,"lead_case_uuid":null,"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:18-bk-30023"}},"modified":"2019-05-01T14:30:27.531772Z","nature_of_debt":null,"nature_of_suit_code":null,"ncl_parties":[],"referred_to":null,"schedule_ab":null,"timestamp":"2019-05-01T14:30:27.531770Z","title":"Paddington Farmington","uri_id":85058468},"receipts":{"client_code":"","cost":"0.10","criteria":"18-30023-pcm7","datetime":"05\/01\/2019 07:30:26","description":"Attorney List","pages":"1","timestamp":"2019-05-01T14:30:25.002545Z","user_id":"irtraining"}},"schema":{"properties":{"attorneys":{"items":{"properties":{"associated":{"items":{"properties":{"address":{"type":"string"},"email":{"type":"string"},"name":{"type":"string"},"role":{"type":"string"}},"type":"object"},"type":"array"},"attorney":{"properties":{"address":{"type":"string"},"assigned_date":{"type":"string"},"email":{"type":"string"},"fax":{"type":"string"},"lead":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"}},"type":"object"}},"type":"object"},"type":"array"},"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <attorneys>\n    <associated>\n      <address>9876 N Farmer Rd\nEstacada, OR 97222<\/address>\n      <name>Paddington Farmington<\/name>\n      <role>Debtor<\/role>\n    <\/associated>\n    <attorney>\n      <address>2002 SW 5th Ave #722\nDemo for KATHI Portland, OR 97204 1orbtester+<\/address>\n      <assigned_date>03\/12\/2018<\/assigned_date>\n      <email>15@gmail.com<\/email>\n      <lead>LEAD ATTORNEY<\/lead>\n      <name>Leslie Pacernotmua Attorney<\/name>\n      <phone>503-326-1521<\/phone>\n      <role>LEAD ATTORNEY<\/role>\n    <\/attorney>\n  <\/attorneys>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_chapter_id>1<\/case_chapter_id>\n    <case_court_id>221<\/case_court_id>\n    <case_id_external>460061<\/case_id_external>\n    <case_no>3:18-bk-30023<\/case_no>\n    <case_petition_id>1<\/case_petition_id>\n    <case_title>Paddington Farmington<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <cause\/>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter>7<\/chapter>\n    <court>orbtrain<\/court>\n    <court_name>orbtrain<\/court_name>\n    <created>2019-05-01T09:10:47.117901Z<\/created>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>03\/12\/2018<\/date_filed>\n    <date_of_last_filing>02\/19\/2019<\/date_of_last_filing>\n    <date_plan_confirmed\/>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>0<\/has_asset>\n    <is_business_bankruptcy\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Peter C McKittrick<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <lead_case_uuid\/>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:18-bk-30023<\/href>\n      <\/self>\n    <\/links>\n    <modified>2019-05-01T14:30:27.531772Z<\/modified>\n    <nature_of_debt\/>\n    <nature_of_suit_code\/>\n    <referred_to\/>\n    <schedule_ab\/>\n    <timestamp>2019-05-01T14:30:27.531770Z<\/timestamp>\n    <title>Paddington Farmington<\/title>\n    <uri_id>85058468<\/uri_id>\n  <\/case>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>18-30023-pcm7<\/criteria>\n    <datetime>05\/01\/2019 07:30:26<\/datetime>\n    <description>Attorney List<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T14:30:25.002545Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Attorneys","tags":["query"],"x-courtapi-resource":"attorneys","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Attorneys update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_attorneys","x-mojo-to":"PACER::Query#pacer_query_attorneys"}},"\/cases\/pacer\/{court_code}\/{case_number}\/bulk-claims\/search-creditors":{"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"post":{"requestBody":{"content":{"application\/json":{"schema":{"additionalProperties":false,"properties":{"creditor_name":{"description":"Creditor Name","type":"string"},"pacer_pass":{"description":"PACER Password","type":"string"},"pacer_user":{"description":"PACER UserName","type":"string"}},"required":["pacer_user","pacer_pass"],"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"creditors":{"items":{"properties":{"id":{"description":"Creditor ID","type":"integer"},"value":{"description":"Creditor Name","type":"string"}},"type":"object"},"type":"array"},"status":{"type":"string"}},"required":["status","creditors"],"type":"object"}}},"description":"Creditor for Claim"},"400":{"content":{"application\/json":{"examples":{"Error from internal API":{"value":[{"error":{"detail":"Court does not support ePOC","status":400},"status":"fail"}]}},"schema":{"description":"Returned on internal API failures","properties":{"error":{"properties":{"detail":{"description":"Error message","type":"string"},"status":{"type":"integer"}},"type":"object"},"status":{"type":"string"}},"type":"object"}}},"description":"Bad request, invalid request syntax, wrong input"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Bulk Claim Search Creditors","tags":["bulk-claims"],"x-courtapi-resource":"bulk-claims","x-courtapi-source":"pacer","x-mojo-name":"pacer_court_bulk_claims_search_creditors","x-mojo-to":"PACER::Case::BulkClaims#search_creditors"}},"\/cases\/pacer\/{court_code}\/{case_number}\/case_file_location":{"post":{"description":"PACER Query Case File Location","operationId":"updateCaseFileLocation","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":null,"case_chapter_id":null,"case_court_id":212,"case_id":5085330,"case_id_external":7523,"case_no":"0:01-cv-00200","case_petition_id":null,"case_title":"Parker v. Smith","case_type_id":1,"case_uuid":"mndtrain_7523","cause":null,"ch11_type":null,"ch11_type_code":null,"chapter":null,"court":"mndtrain","court_name":"mndtrain","created":"2019-05-01 15:30:41.827068+00","date_closed":null,"date_discharged":null,"date_filed":"01\/03\/2005","date_of_last_filing":"03\/28\/2019","date_plan_confirmed":null,"date_terminated":null,"disabled":0,"disposition":null,"has_asset":0,"industry":null,"is_business_bankruptcy":null,"is_ok_to_list_publicly":false,"judge_name":"Ann D. Montgomery, presiding","jurisdiction":null,"jury_demand":null,"lead_case_uuid":null,"liabilities":"Unknown","modified":"2019-05-01 15:30:41.827068+00","naics_code":null,"nature_of_debt":null,"nature_of_suit_code":null,"ncl_parties":[],"referred_to":null,"schedule_ab":null,"timestamp":1556724641.82707,"title":"Parker v. Smith","uri_id":85058500,"website":null},"forms":{},"items":{"receipts":[{"meta":{"case_uuid":"mndtrain_7523","timestamp":1556724643.52224},"text":{"client_code":"","cost":"0.10","criteria":"0:01-cv-00200-ADM-AJB","datetime":"05\/01\/2019 10:30:44","description":"Case File Location","pages":"1","user_id":"irtraining"}}]},"queries":{"case_file_location":[{"meta":{"case_uuid":"mndtrain_7523","timestamp":1556724643.52224},"text":[{"case_code":"0:01-cv-00200-ADM-AJB","case_title":"Parker v. Smith","status":"The case file may be available.","volume":"CS1"}]}]}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"queries":{"properties":{"case_file_location":{"items":{"properties":{"meta":{"properties":{"case_uuid":{"type":"string"},"filename":{"type":"string"},"timestamp":{"type":"string"}},"type":"object"},"text":{"items":{"properties":{"case_code":{"type":"string"},"case_title":{"type":"string"},"status":{"type":"string"},"volume":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"},"type":"array"}},"type":"object"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_chapter_id\/>\n    <case_court_id>212<\/case_court_id>\n    <case_id>5085330<\/case_id>\n    <case_id_external>7523<\/case_id_external>\n    <case_no>0:01-cv-00200<\/case_no>\n    <case_petition_id\/>\n    <case_title>Parker v. Smith<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <case_uuid>mndtrain_7523<\/case_uuid>\n    <cause\/>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter\/>\n    <court>mndtrain<\/court>\n    <court_name>mndtrain<\/court_name>\n    <created>2019-05-01 15:30:41.827068+00<\/created>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>01\/03\/2005<\/date_filed>\n    <date_of_last_filing>03\/28\/2019<\/date_of_last_filing>\n    <date_plan_confirmed\/>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>0<\/has_asset>\n    <industry\/>\n    <is_business_bankruptcy\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Ann D. Montgomery, presiding<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <lead_case_uuid\/>\n    <liabilities>Unknown<\/liabilities>\n    <modified>2019-05-01 15:30:41.827068+00<\/modified>\n    <naics_code\/>\n    <nature_of_debt\/>\n    <nature_of_suit_code\/>\n    <referred_to\/>\n    <schedule_ab\/>\n    <timestamp>1556724641.82707<\/timestamp>\n    <title>Parker v. Smith<\/title>\n    <uri_id>85058500<\/uri_id>\n    <website\/>\n  <\/case>\n  <forms\/>\n  <items>\n    <receipts>\n      <meta>\n        <case_uuid>mndtrain_7523<\/case_uuid>\n        <timestamp>1556724643.52224<\/timestamp>\n      <\/meta>\n      <text>\n        <client_code><\/client_code>\n        <cost>0.10<\/cost>\n        <criteria>0:01-cv-00200-ADM-AJB<\/criteria>\n        <datetime>05\/01\/2019 10:30:44<\/datetime>\n        <description>Case File Location<\/description>\n        <pages>1<\/pages>\n        <user_id>irtraining<\/user_id>\n      <\/text>\n    <\/receipts>\n  <\/items>\n  <queries>\n    <case_file_location>\n      <meta>\n        <case_uuid>mndtrain_7523<\/case_uuid>\n        <timestamp>1556724643.52224<\/timestamp>\n      <\/meta>\n      <text>\n        <case_code>0:01-cv-00200-ADM-AJB<\/case_code>\n        <case_title>Parker v. Smith<\/case_title>\n        <status>The case file may be available.<\/status>\n        <volume>CS1<\/volume>\n      <\/text>\n    <\/case_file_location>\n  <\/queries>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case File Location","tags":["query"],"x-courtapi-resource":"case-file-location","x-courtapi-source":"pacer","x-courtdrive-async-desc":"File Location update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_case_file_location","x-mojo-to":"PACER::Query#pacer_query_case_file_location"}},"\/cases\/pacer\/{court_code}\/{case_number}\/case_summary":{"get":{"description":"Case summary for case","operationId":"getSummary","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"civil","case_no":"3:92-cv-30321","case_title":"UNITED STATES v. INTERNATL FIDELITY","case_type":"cv","cause":null,"ch11_type":null,"chapter":null,"court_code":"flndce","date_closed":"04\/11\/1997","date_discharged":null,"date_filed":"08\/25\/1992","date_of_last_filing":"09\/08\/2000","date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":false,"is_ok_to_list_publicly":false,"judge_name":"LACEY A COLLIER","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2022-01-21T04:57:14.362364Z","naics_code":130,"nature_of_debt":"~","nature_of_suit_code":130,"petition_type":null,"plan_confirmed":null,"referred_to":null},"case_summary":{"html":"<h2 align=center>Case Summary<\/h2> <script type=\"text\/javascript\" src=\"\/lib\/widgits.js\"><\/script> <script> var debtorPanel = null; function create_panel(clid, message) { if (!debtorPanel) { debtorPanel = new CMECF.widget.Panel('debtorPanel', { close:true, draggable:false, context:[clid, 'tl', 'br'], width: \"250\" + \"px\", height: \"110\" + \"px\", constraintoviewport:true }); debtorPanel.setHeader(\"Barred Debtor Information\"); debtorPanel.setBody(message); debtorPanel.body.style.height = \"8em\"; debtorPanel.render(document.body); } else { debtorPanel.show(); } } function close_panel() { if (debtorPanel) { debtorPanel.destroy(); debtorPanel = null; } } <\/script> <TABLE cellspacing=0 cellpadding=0> <TR> <TD colspan=1><B>Office: <\/B> San Diego <\/TD> <TD colspan=1 align=right><B> Filed: <\/B><\/TD> <TD colspan=1>01\/08\/2014<\/TD> <\/TR> <TR> <TD colspan=1><B>County: <\/B> SAN DIEGO-CA <\/TD> <TD colspan=1 align=right><B> Terminated: <\/B><\/TD> <TD colspan=1><\/TD> <\/TR> <TR> <TD colspan=1><B>Fee: <\/B> Paid <\/TD> <TD colspan=1 align=right><B> Debtor discharged: <\/B><\/TD> <\/TR> <TR> <TD colspan=1><B>Origin: <\/B> 0 <\/TD> <TD colspan=1 align=right><B> Reopened: <\/B><\/TD> <TD colspan=1><\/TD> <\/TR> <TR> <TD colspan=1><B>Previous term: <\/B> <\/TD> <TD colspan=1 align=right><B> Converted: <\/B><\/TD> <TD colspan=1><\/TD> <\/TR> <TR> <TD colspan=1><\/TD> <TD colspan=1 align=right><B> Debtor dismissed: <\/B><\/TD> <\/TR> <TR> <TD colspan=1><B>Joint:<\/B> n<\/TD> <TD colspan=1 align=right><B>Confirmation hearing: <\/B><\/TD> <TD colspan=1> <\/TD> <\/TR> <tr> <TD colspan=1><B>Original chapter: <\/B>11<\/TD> <TD colspan=2><\/td> <\/tr> <tr> <TD colspan=1><B>Current chapter: <\/B>11<\/TD> <TD colspan=2><\/td> <\/tr> <TR> <TD colspan=3> <\/TD> <\/TR> <TR> <TD colspan=3> <\/TD> <\/TR> <TR> <TD colspan=3><B> Nature of debt:<\/B> business <\/TD><\/TR> <\/TR><TR><TD colspan=4><B>Flags:<\/B> ConsLead<\/TD><\/TR><BR> <TR> <TD colspan=3> <\/TD> <\/TR> <TR> <TD colspan=3> <\/TD> <\/TR> <TR><TD colspan=3><B>Party 1:<\/B> SoCal Eats LLC (Debtor) <br> Tax ID \/ EIN: 27-0587158 <\/TD><\/TR> <TR> <TD colspan=3> <\/TD> <\/TR> <TR><TD valign=top><B>Atty:<\/B> Alan Vanderhoff <\/TD><TD valign=top><B> Represents party 1: <\/B>Debtor <\/TD> <TD valign=top><TABLE border=0 cellspacing=0 cellpadding=0><TR><TD align=right><B>Phone: <\/B><\/TD><TD>(619) 299-2050<\/TR><TR><TD align=right><B>Fax: <\/B><\/TD><TD>(619)239-6554<\/TR><TR><TD align=right><B>Email: <\/B><\/TD><TD>alan.vanderhoff&#064;vanderhofflaw.com<\/TR><\/TABLE><\/TD><\/TR> <TR> <TD><\/TD> <\/TR> <TR><TD><B>Location of case files: <\/B><\/TD> <TR> <TD colspan=6> <B> Volume:<\/B> CS1 <BR> The case file may be available. <BR><BR> <\/TD> <\/TR> <\/TABLE><BR>","timestamp":"2015-05-04T19:44:43.333664Z"},"links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/casbke\/3:14-bk-00092"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/casbke\/3:14-bk-00092\/case_summary","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/casbke\/3:14-bk-00092\/case_summary"}}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"case_summary":{"properties":{"html":{"type":"string"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>3:14-bk-00092<\/case_no>\n    <case_title>SoCal Eats LLC<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter>11<\/chapter>\n    <court_code>casbke<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>01\/08\/2014<\/date_filed>\n    <date_of_last_filing>05\/29\/2015<\/date_of_last_filing>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>Yes<\/has_asset>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Louise DeCarl Adler<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2017-07-09T05:13:32.653410Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type>v<\/petition_type>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <case_summary>\n    <html>&lt;h2 align=center&gt;Case Summary&lt;\/h2&gt; &lt;script type=\"text\/javascript\" src=\"\/lib\/widgits.js\"&gt;&lt;\/script&gt; &lt;script&gt; var debtorPanel = null; function create_panel(clid, message) { if (!debtorPanel) { debtorPanel = new CMECF.widget.Panel('debtorPanel', { close:true, draggable:false, context:[clid, 'tl', 'br'], width: \"250\" + \"px\", height: \"110\" + \"px\", constraintoviewport:true }); debtorPanel.setHeader(\"Barred Debtor Information\"); debtorPanel.setBody(message); debtorPanel.body.style.height = \"8em\"; debtorPanel.render(document.body); } else { debtorPanel.show(); } } function close_panel() { if (debtorPanel) { debtorPanel.destroy(); debtorPanel = null; } } &lt;\/script&gt; &lt;TABLE cellspacing=0 cellpadding=0&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;B&gt;Office: &lt;\/B&gt; San Diego &lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt; Filed: &lt;\/B&gt;&lt;\/TD&gt; &lt;TD colspan=1&gt;01\/08\/2014&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;B&gt;County: &lt;\/B&gt; SAN DIEGO-CA &lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt; Terminated: &lt;\/B&gt;&lt;\/TD&gt; &lt;TD colspan=1&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;B&gt;Fee: &lt;\/B&gt; Paid &lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt; Debtor discharged: &lt;\/B&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;B&gt;Origin: &lt;\/B&gt; 0 &lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt; Reopened: &lt;\/B&gt;&lt;\/TD&gt; &lt;TD colspan=1&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;B&gt;Previous term: &lt;\/B&gt; &lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt; Converted: &lt;\/B&gt;&lt;\/TD&gt; &lt;TD colspan=1&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt; Debtor dismissed: &lt;\/B&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;B&gt;Joint:&lt;\/B&gt; n&lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt;Confirmation hearing: &lt;\/B&gt;&lt;\/TD&gt; &lt;TD colspan=1&gt; &lt;\/TD&gt; &lt;\/TR&gt; &lt;tr&gt; &lt;TD colspan=1&gt;&lt;B&gt;Original chapter: &lt;\/B&gt;11&lt;\/TD&gt; &lt;TD colspan=2&gt;&lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;TD colspan=1&gt;&lt;B&gt;Current chapter: &lt;\/B&gt;11&lt;\/TD&gt; &lt;TD colspan=2&gt;&lt;\/td&gt; &lt;\/tr&gt; &lt;TR&gt; &lt;TD colspan=3&gt; &lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=3&gt; &lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=3&gt;&lt;B&gt; Nature of debt:&lt;\/B&gt; business &lt;\/TD&gt;&lt;\/TR&gt; &lt;\/TR&gt;&lt;TR&gt;&lt;TD colspan=4&gt;&lt;B&gt;Flags:&lt;\/B&gt; ConsLead&lt;\/TD&gt;&lt;\/TR&gt;&lt;BR&gt; &lt;TR&gt; &lt;TD colspan=3&gt; &lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=3&gt; &lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt;&lt;TD colspan=3&gt;&lt;B&gt;Party 1:&lt;\/B&gt; SoCal Eats LLC (Debtor) &lt;br&gt; Tax ID \/ EIN: 27-0587158 &lt;\/TD&gt;&lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=3&gt; &lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt;&lt;TD valign=top&gt;&lt;B&gt;Atty:&lt;\/B&gt; Alan Vanderhoff &lt;\/TD&gt;&lt;TD valign=top&gt;&lt;B&gt; Represents party 1: &lt;\/B&gt;Debtor &lt;\/TD&gt; &lt;TD valign=top&gt;&lt;TABLE border=0 cellspacing=0 cellpadding=0&gt;&lt;TR&gt;&lt;TD align=right&gt;&lt;B&gt;Phone: &lt;\/B&gt;&lt;\/TD&gt;&lt;TD&gt;(619) 299-2050&lt;\/TR&gt;&lt;TR&gt;&lt;TD align=right&gt;&lt;B&gt;Fax: &lt;\/B&gt;&lt;\/TD&gt;&lt;TD&gt;(619)239-6554&lt;\/TR&gt;&lt;TR&gt;&lt;TD align=right&gt;&lt;B&gt;Email: &lt;\/B&gt;&lt;\/TD&gt;&lt;TD&gt;alan.vanderhoff&amp;#064;vanderhofflaw.com&lt;\/TR&gt;&lt;\/TABLE&gt;&lt;\/TD&gt;&lt;\/TR&gt; &lt;TR&gt; &lt;TD&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt;&lt;TD&gt;&lt;B&gt;Location of case files: &lt;\/B&gt;&lt;\/TD&gt; &lt;TR&gt; &lt;TD colspan=6&gt; &lt;B&gt; Volume:&lt;\/B&gt; CS1 &lt;BR&gt; The case file may be available. &lt;BR&gt;&lt;BR&gt; &lt;\/TD&gt; &lt;\/TR&gt; &lt;\/TABLE&gt;&lt;BR&gt;<\/html>\n    <timestamp>2015-05-04T19:44:43.333664Z<\/timestamp>\n  <\/case_summary>\n  <links>\n    <menu>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/casbke\/3:14-bk-00092<\/href>\n    <\/menu>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/casbke\/3:14-bk-00092\/case_summary<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/casbke\/3:14-bk-00092\/case_summary<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Case summary for case","tags":["case"],"x-courtapi-resource":"case-summary","x-courtapi-source":"local","x-courtdrive-async-desc":"Case summary for {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_case_summary","x-mojo-to":"PACER::Case#case_summary"},"post":{"description":"PACER Query Case Summary","operationId":"updateCaseSummary","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":null,"case_chapter_id":1,"case_court_id":221,"case_id_external":460186,"case_no":"6:18-bk-60032","case_petition_id":1,"case_title":"Trendy N. Testing, Jr.","case_type_id":1,"cause":null,"ch11_type":null,"ch11_type_code":null,"chapter":7,"court":"orbtrain","court_name":"orbtrain","created":"2019-05-01T15:03:30.566006Z","date_closed":null,"date_discharged":null,"date_filed":"11\/16\/2018","date_of_last_filing":"02\/19\/2019","date_plan_confirmed":null,"date_terminated":null,"disabled":0,"disposition":null,"has_asset":0,"is_business_bankruptcy":null,"is_ok_to_list_publicly":false,"judge_name":"Thomas M Renn","jurisdiction":null,"jury_demand":null,"lead_case_uuid":null,"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:18-bk-60032"}},"modified":"2019-05-01T15:09:36.548179Z","nature_of_debt":null,"nature_of_suit_code":null,"ncl_parties":[],"referred_to":null,"schedule_ab":null,"timestamp":"2019-05-01T15:09:36.548180Z","title":"Trendy N. Testing, Jr.","uri_id":85058487},"case_summary":"<h2 align=center>Case Summary<\/h2> <script type=\"text\/javascript\" src=\"\/lib\/widgits.js\"><\/script> <script> var debtorPanel = null; function create_panel(clid, message) { if (!debtorPanel) { debtorPanel = new CMECF.widget.Panel('debtorPanel', { close:true, draggable:false, context:[clid, 'tl', 'br'], width: \"250\" + \"px\", height: \"110\" + \"px\", constraintoviewport:true }); debtorPanel.setHeader(\"Barred Debtor Information\"); debtorPanel.setBody(message); debtorPanel.body.style.height = \"8em\"; debtorPanel.render(document.body); } else { debtorPanel.show(); } } function close_panel() { if (debtorPanel) { debtorPanel.destroy(); debtorPanel = null; } } <\/script> <TABLE cellspacing=0 cellpadding=0> <TR> <TD colspan=1><B>Office: <\/B> Eugene <\/TD> <TD colspan=1 align=right><B> Filed: <\/B><\/TD> <TD colspan=1>11\/16\/2018<\/TD> <\/TR> <TR> <TD colspan=1><B>County: <\/B> LANE-OR <\/TD> <TD colspan=1 align=right><B> Terminated: <\/B><\/TD> <TD colspan=1><\/TD> <\/TR> <TR> <TD colspan=1><B>Fee: <\/B> Paid <\/TD> <TD colspan=1 align=right><B> Debtor discharged: <\/B><\/TD> <\/TR> <TR> <TD colspan=1><B>Origin: <\/B> 0 <\/TD> <TD colspan=1 align=right><B> Reopened: <\/B><\/TD> <TD colspan=1><\/TD> <\/TR> <TR> <TD colspan=1><B>Previous term: <\/B> <\/TD> <TD colspan=1 align=right><B> Converted: <\/B><\/TD> <TD colspan=1><\/TD> <\/TR> <TR> <TD colspan=1><\/TD> <TD colspan=1 align=right><B> Debtor dismissed: <\/B><\/TD> <\/TR> <TR> <TD colspan=1><B>Joint:<\/B> n<\/TD> <TD colspan=1 align=right><B>Confirmation hearing: <\/B><\/TD> <TD colspan=1><\/TD> <\/TR> <tr> <TD colspan=1><B>Original chapter: <\/B>7<\/TD> <TD colspan=2><\/td> <\/tr> <tr> <TD colspan=1><B>Current chapter: <\/B>7<\/TD> <TD colspan=2><\/td> <\/tr> <TR> <TD colspan=3> <\/TD> <\/TR> <TR> <TD colspan=3> <\/TD> <\/TR> <TR> <TD colspan=3><B> Nature of debt:<\/B> consumer<\/TD><\/TR> <\/TR><TR><TD colspan=4><B>Pending status:<\/B> Awaiting Discharge<\/TR><TR><TD colspan=4><B>Flags:<\/B> DBFINMGMT, ABUSENO<\/TD><\/TR><BR> <TR> <TD colspan=3> <\/TD> <\/TR> <TR><TD colspan=1><B>Trustee:<\/B> US Trustee, Eugene <\/TD> <TD colspan=1><B>City:<\/B> Eugene <B>Phone:<\/B> (541) 465-6330 <\/TD> <\/TD><\/TR> <TR><TD colspan=1><B>Trustee:<\/B> Vanesa Pancic <\/TD> <TD colspan=1><B>City:<\/B> Wilsonville <B>Phone:<\/B> 503-729-8676 <\/TD> <\/TD><\/TR> <TR> <TD colspan=3> <\/TD> <\/TR> <TR><TD colspan=3><B>Party 1:<\/B> Testing, Trendy N., Jr. (Debtor) <br> SSN \/ ITIN: xxx-xx-6989 <\/TD><\/TR> <TR> <TD colspan=3> <\/TD> <\/TR> <TR><TD valign=top><B>Atty:<\/B> Kathi Attorney <\/TD><TD valign=top><B> Represents party 1: <\/B>Debtor <\/TD> <TD valign=top><TABLE border=0 cellspacing=0 cellpadding=0><TR><TD align=right><B>Phone: <\/B><\/TD><TD>555-555-5555<\/TR><TR><TD align=right><B>Email: <\/B><\/TD><TD>KathiHindes&#064;gmail.com<\/TR><\/TABLE><\/TD><\/TR> <TR> <TD><\/TD> <\/TR> <TR><TD><B>Location of case files: <\/B><\/TD> <TR> <TD colspan=6> <B> Volume:<\/B> CS1 <BR> Case file is available for review. <BR><BR> <\/TD> <\/TR> <\/TABLE><BR>","receipts":{"client_code":"","cost":"0.10","criteria":"18-60032-tmr7","datetime":"05\/01\/2019 08:09:36","description":"Case Summary","pages":"1","timestamp":"2019-05-01T15:09:34.680403Z","user_id":"irtraining"}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"case_summary":{"type":"string"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_chapter_id>1<\/case_chapter_id>\n    <case_court_id>221<\/case_court_id>\n    <case_id_external>460186<\/case_id_external>\n    <case_no>6:18-bk-60032<\/case_no>\n    <case_petition_id>1<\/case_petition_id>\n    <case_title>Trendy N. Testing, Jr.<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <cause\/>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter>7<\/chapter>\n    <court>orbtrain<\/court>\n    <court_name>orbtrain<\/court_name>\n    <created>2019-05-01T15:03:30.566006Z<\/created>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>11\/16\/2018<\/date_filed>\n    <date_of_last_filing>02\/19\/2019<\/date_of_last_filing>\n    <date_plan_confirmed\/>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>0<\/has_asset>\n    <is_business_bankruptcy\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Thomas M Renn<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <lead_case_uuid\/>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:18-bk-60032<\/href>\n      <\/self>\n    <\/links>\n    <modified>2019-05-01T15:09:36.548179Z<\/modified>\n    <nature_of_debt\/>\n    <nature_of_suit_code\/>\n    <referred_to\/>\n    <schedule_ab\/>\n    <timestamp>2019-05-01T15:09:36.548180Z<\/timestamp>\n    <title>Trendy N. Testing, Jr.<\/title>\n    <uri_id>85058487<\/uri_id>\n  <\/case>\n  <case_summary>&lt;h2 align=center&gt;Case Summary&lt;\/h2&gt; &lt;script type=\"text\/javascript\" src=\"\/lib\/widgits.js\"&gt;&lt;\/script&gt; &lt;script&gt; var debtorPanel = null; function create_panel(clid, message) { if (!debtorPanel) { debtorPanel = new CMECF.widget.Panel('debtorPanel', { close:true, draggable:false, context:[clid, 'tl', 'br'], width: \"250\" + \"px\", height: \"110\" + \"px\", constraintoviewport:true }); debtorPanel.setHeader(\"Barred Debtor Information\"); debtorPanel.setBody(message); debtorPanel.body.style.height = \"8em\"; debtorPanel.render(document.body); } else { debtorPanel.show(); } } function close_panel() { if (debtorPanel) { debtorPanel.destroy(); debtorPanel = null; } } &lt;\/script&gt; &lt;TABLE cellspacing=0 cellpadding=0&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;B&gt;Office: &lt;\/B&gt; Eugene &lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt; Filed: &lt;\/B&gt;&lt;\/TD&gt; &lt;TD colspan=1&gt;11\/16\/2018&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;B&gt;County: &lt;\/B&gt; LANE-OR &lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt; Terminated: &lt;\/B&gt;&lt;\/TD&gt; &lt;TD colspan=1&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;B&gt;Fee: &lt;\/B&gt; Paid &lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt; Debtor discharged: &lt;\/B&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;B&gt;Origin: &lt;\/B&gt; 0 &lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt; Reopened: &lt;\/B&gt;&lt;\/TD&gt; &lt;TD colspan=1&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;B&gt;Previous term: &lt;\/B&gt; &lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt; Converted: &lt;\/B&gt;&lt;\/TD&gt; &lt;TD colspan=1&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt; Debtor dismissed: &lt;\/B&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=1&gt;&lt;B&gt;Joint:&lt;\/B&gt; n&lt;\/TD&gt; &lt;TD colspan=1 align=right&gt;&lt;B&gt;Confirmation hearing: &lt;\/B&gt;&lt;\/TD&gt; &lt;TD colspan=1&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;tr&gt; &lt;TD colspan=1&gt;&lt;B&gt;Original chapter: &lt;\/B&gt;7&lt;\/TD&gt; &lt;TD colspan=2&gt;&lt;\/td&gt; &lt;\/tr&gt; &lt;tr&gt; &lt;TD colspan=1&gt;&lt;B&gt;Current chapter: &lt;\/B&gt;7&lt;\/TD&gt; &lt;TD colspan=2&gt;&lt;\/td&gt; &lt;\/tr&gt; &lt;TR&gt; &lt;TD colspan=3&gt; &lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=3&gt; &lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=3&gt;&lt;B&gt; Nature of debt:&lt;\/B&gt; consumer&lt;\/TD&gt;&lt;\/TR&gt; &lt;\/TR&gt;&lt;TR&gt;&lt;TD colspan=4&gt;&lt;B&gt;Pending status:&lt;\/B&gt; Awaiting Discharge&lt;\/TR&gt;&lt;TR&gt;&lt;TD colspan=4&gt;&lt;B&gt;Flags:&lt;\/B&gt; DBFINMGMT, ABUSENO&lt;\/TD&gt;&lt;\/TR&gt;&lt;BR&gt; &lt;TR&gt; &lt;TD colspan=3&gt; &lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt;&lt;TD colspan=1&gt;&lt;B&gt;Trustee:&lt;\/B&gt; US Trustee, Eugene &lt;\/TD&gt; &lt;TD colspan=1&gt;&lt;B&gt;City:&lt;\/B&gt; Eugene &lt;B&gt;Phone:&lt;\/B&gt; (541) 465-6330 &lt;\/TD&gt; &lt;\/TD&gt;&lt;\/TR&gt; &lt;TR&gt;&lt;TD colspan=1&gt;&lt;B&gt;Trustee:&lt;\/B&gt; Vanesa Pancic &lt;\/TD&gt; &lt;TD colspan=1&gt;&lt;B&gt;City:&lt;\/B&gt; Wilsonville &lt;B&gt;Phone:&lt;\/B&gt; 503-729-8676 &lt;\/TD&gt; &lt;\/TD&gt;&lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=3&gt; &lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt;&lt;TD colspan=3&gt;&lt;B&gt;Party 1:&lt;\/B&gt; Testing, Trendy N., Jr. (Debtor) &lt;br&gt; SSN \/ ITIN: xxx-xx-6989 &lt;\/TD&gt;&lt;\/TR&gt; &lt;TR&gt; &lt;TD colspan=3&gt; &lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt;&lt;TD valign=top&gt;&lt;B&gt;Atty:&lt;\/B&gt; Kathi Attorney &lt;\/TD&gt;&lt;TD valign=top&gt;&lt;B&gt; Represents party 1: &lt;\/B&gt;Debtor &lt;\/TD&gt; &lt;TD valign=top&gt;&lt;TABLE border=0 cellspacing=0 cellpadding=0&gt;&lt;TR&gt;&lt;TD align=right&gt;&lt;B&gt;Phone: &lt;\/B&gt;&lt;\/TD&gt;&lt;TD&gt;555-555-5555&lt;\/TR&gt;&lt;TR&gt;&lt;TD align=right&gt;&lt;B&gt;Email: &lt;\/B&gt;&lt;\/TD&gt;&lt;TD&gt;KathiHindes&amp;#064;gmail.com&lt;\/TR&gt;&lt;\/TABLE&gt;&lt;\/TD&gt;&lt;\/TR&gt; &lt;TR&gt; &lt;TD&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;TR&gt;&lt;TD&gt;&lt;B&gt;Location of case files: &lt;\/B&gt;&lt;\/TD&gt; &lt;TR&gt; &lt;TD colspan=6&gt; &lt;B&gt; Volume:&lt;\/B&gt; CS1 &lt;BR&gt; Case file is available for review. &lt;BR&gt;&lt;BR&gt; &lt;\/TD&gt; &lt;\/TR&gt; &lt;\/TABLE&gt;&lt;BR&gt;<\/case_summary>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>18-60032-tmr7<\/criteria>\n    <datetime>05\/01\/2019 08:09:36<\/datetime>\n    <description>Case Summary<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T15:09:34.680403Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Summary","tags":["query"],"x-courtapi-resource":"case-summary","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Case Summary update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_case_summary","x-mojo-to":"PACER::Query#pacer_query_case_summary"}},"\/cases\/pacer\/{court_code}\/{case_number}\/claims":{"get":{"description":"Search Case Claim from Local DB","operationId":"getClaims","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"in":"query","name":"search_keyword","schema":{"type":"string"}},{"description":"Date File From (MM\/DD\/YYYY)","in":"query","name":"date_filed_from","schema":{"type":"string"}},{"description":"Date File To (MM\/DD\/YYYY)","in":"query","name":"date_filed_to","schema":{"type":"string"}},{"in":"query","name":"number_from","schema":{"type":"integer"}},{"in":"query","name":"number_to","schema":{"type":"integer"}},{"in":"query","name":"claim_type","schema":{"enum":["amount_claimed","unknown_claimed","priority_claimed","secured_claimed","unsecured_claimed","admin_claimed"],"type":"string"}},{"in":"query","name":"number_range","schema":{"type":"string"}},{"in":"query","name":"sort_column","schema":{"enum":["claim_number","date_filed","date_entered","amendment_entered","amendment_filed"],"type":"string"}},{"in":"query","name":"sort_order","schema":{"enum":["asc","desc"],"type":"string"}},{"in":"query","name":"page_size","schema":{"minimum":1,"type":"integer"}},{"in":"query","name":"page_number","schema":{"minimum":1,"type":"integer"}}],"responses":{"200":{"content":{"application\/json":{"example":{"claimed_amounts":{"admin_claimed":"0.00","amount_claimed":"4025.28","priority_claimed":"0.00","secured_claimed":"0.00","unknown_claimed":"0.00","unsecured_claimed":"0.00"},"entries":{"content":[{"amounts":{"amount":{"claimed":"4025.28"}},"creditor":"FORD MOTOR CREDIT COMPANY LLC\nPO Box 9013\nAddison, TX 75001","creditor_no":12345678,"description":null,"history":[{"action":"https:\/\/ecf.mdb.uscourts.gov\/doc1\/066049602145?caseid=1281073&claim_doc_seq=&claim_id=50341049","binder":{"documents":[],"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/1\/documents\/1.00000","method":"POST"}}},"claim_date":"10\/22\/2014","claim_no":"1-1","claim_seq":"1-1.00000","claim_text":"10\/22\/2014 DUMMY UNIQUE TEXT: df300060-e70e-5bc4-7f1a-6456a17af851","links":{"documents":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/1\/documents\/1.00000"}}}],"info":{"claim_no":1,"modified":"2019-04-29T18:45:14.442680Z","original_entered_date":"10\/22\/2014","original_filed_date":"10\/22\/2014"},"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/1"}},"related_dockets":[{"binder":{"documents":[],"links":{"pacer-update":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents"}}},"date_filed":"06\/04\/2019","docket_no":4,"docket_seq":"4.00000","docket_text":"Document(s) Refiled to Redact Information re: Claim # 1 Filed By Debtor Terry J Tester Jr, Joint Debtor Tessa Tester (cml)","docket_uri":"https:\/\/ecf-train.orb.uscourts.gov\/doc3\/150114407060","has_pdf_link_on_pacer":true,"links":{"documents":{"href":"http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents"},"self":{"href":"http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000"}}}],"remarks":null,"status":{"entered_by":"NGHIA ATTY NGUYEN","filed_by":"CR"}}],"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims?page_size=500&page_number=1"}},"page_size":500,"total_items":1,"total_pages":1},"header":{"html":"<h1>Claims Header<\/h1>","modified":"2019-05-01T07:16:21.347620Z"},"links":{"header":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/header"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/update","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims"}}},"schema":{"properties":{"claimed_amounts":{"properties":{"admin_claimed":{"type":"number"},"amount_claimed":{"type":"number"},"priority_claimed":{"type":"number"},"secured_claimed":{"type":"number"},"unknown_claimed":{"type":"number"},"unsecured_claimed":{"type":"number"}},"type":"object"},"entries":{"properties":{"content":{"items":{"properties":{"amounts":{"properties":{"amount":{"properties":{"claimed":{"type":"string"}},"type":"object"},"unsecured":{"properties":{"claimed":{"type":"string"}},"type":"object"}},"type":"object"},"creditor":{"type":"string"},"description":{"type":"string"},"history":{"items":{"properties":{"action":{"type":"string"},"binder":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"number"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"is_cached":{"type":"boolean"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"},"claim_date":{"type":"string"},"claim_no":{"type":"string"},"claim_seq":{"type":"string"},"claim_text":{"type":"string"},"links":{"properties":{"documents":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"info":{"properties":{"claim_no":{"type":"string"},"last_amendment_entered":{"type":"string"},"last_amendment_filed":{"type":"string"},"modified":{"type":"string"},"original_entered_date":{"type":"string"},"original_filed_date":{"type":"string"}},"type":"object"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"related_dockets":{"items":{"properties":{"annotations":{"items":{"type":"string"},"type":"array"},"binder":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"integer"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"friendly_name":{"type":"string"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"},"date_filed":{"type":"string"},"docket_display_number":{"type":"string"},"docket_no":{"type":"integer"},"docket_seq":{"type":"number"},"docket_text":{"type":"string"},"has_pdf_link_on_pacer":{"type":"boolean"},"links":{"properties":{"documents":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"type":"string"}},"type":"object"},"type":"array"},"remarks":{"type":"string"},"status":{"nullable":true,"type":"object"}},"type":"object"},"type":"array"},"links":{"properties":{"last":{"properties":{"href":{"type":"string"},"method":{"enum":["DELETE","GET","PATCH","POST","PUT"],"type":"string"}},"required":["href"],"type":"object"},"next":{"properties":{"href":{"type":"string"},"method":{"enum":["DELETE","GET","PATCH","POST","PUT"],"type":"string"}},"required":["href"],"type":"object"},"self":{"properties":{"href":{"type":"string"},"method":{"enum":["DELETE","GET","PATCH","POST","PUT"],"type":"string"}},"required":["href"],"type":"object"}},"type":"object"},"page_size":{"type":"integer"},"total_items":{"type":"integer"},"total_pages":{"type":"integer"}},"type":"object"},"header":{"properties":{"html":{"type":"string"},"modified":{"format":"date-time","type":"string"}},"type":"object"},"links":{"properties":{"header":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <claimed_amounts>\n    <admin_claimed>0.00<\/admin_claimed>\n    <amount_claimed>4025.28<\/amount_claimed>\n    <priority_claimed>0.00<\/priority_claimed>\n    <secured_claimed>0.00<\/secured_claimed>\n    <unknown_claimed>0.00<\/unknown_claimed>\n    <unsecured_claimed>0.00<\/unsecured_claimed>\n  <\/claimed_amounts>\n  <entries>\n    <content>\n      <amounts>\n        <amount>\n          <claimed>4025.28<\/claimed>\n        <\/amount>\n      <\/amounts>\n      <creditor>FORD MOTOR CREDIT COMPANY LLC\nPO Box 9013 Addison, TX 75001<\/creditor>\n      <creditor_no>12345678<\/creditor_no>\n      <description\/>\n      <history>\n        <action>https:\/\/ecf.mdb.uscourts.gov\/doc1\/066049602145?caseid=1281073&amp;claim_doc_seq=&amp;claim_id=50341049<\/action>\n        <binder>\n          <links>\n            <pacer-update>\n              <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/1\/documents\/1.00000<\/href>\n              <method>POST<\/method>\n            <\/pacer-update>\n          <\/links>\n        <\/binder>\n        <claim_date>10\/22\/2014<\/claim_date>\n        <claim_no>1-1<\/claim_no>\n        <claim_seq>1-1.00000<\/claim_seq>\n        <claim_text>10\/22\/2014 DUMMY UNIQUE TEXT: df300060-e70e-5bc4-7f1a-6456a17af851<\/claim_text>\n        <links>\n          <documents>\n            <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/1\/documents\/1.00000<\/href>\n          <\/documents>\n        <\/links>\n      <\/history>\n      <info>\n        <claim_no>1<\/claim_no>\n        <modified>2019-04-29T18:45:14.442680Z<\/modified>\n        <original_entered_date>10\/22\/2014<\/original_entered_date>\n        <original_filed_date>10\/22\/2014<\/original_filed_date>\n      <\/info>\n      <links>\n        <self>\n          <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/1<\/href>\n        <\/self>\n      <\/links>\n      <related_dockets>\n        <binder>\n          <links>\n            <pacer-update>\n              <href>http:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents<\/href>\n            <\/pacer-update>\n          <\/links>\n        <\/binder>\n        <docket_date>06\/04\/2019<\/docket_date>\n        <docket_no>4<\/docket_no>\n        <docket_seq>4.00000<\/docket_seq>\n        <docket_text>Document(s) Refiled to Redact Information re: Claim # 1 Filed By Debtor Terry J Tester Jr, Joint Debtor Tessa Tester (cml)<\/docket_text>\n        <docket_uri>https:\/\/ecf-train.orb.uscourts.gov\/doc3\/150114407060<\/docket_uri>\n        <has_pdf_link_on_pacer>1<\/has_pdf_link_on_pacer>\n        <links>\n          <documents>\n            <href>http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents<\/href>\n          <\/documents>\n          <self>\n            <href>http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000<\/href>\n          <\/self>\n        <\/links>\n      <\/related_dockets>\n      <remarks\/>\n      <status>\n        <entered_by>NGHIA ATTY NGUYEN<\/entered_by>\n        <filed_by>CR<\/filed_by>\n      <\/status>\n    <\/content>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims?page_size=500&amp;page_number=1<\/href>\n      <\/self>\n    <\/links>\n    <page_size>500<\/page_size>\n    <total_items>1<\/total_items>\n    <total_pages>1<\/total_pages>\n  <\/entries>\n  <header>\n    <html>&lt;h1&gt;Claims Header&lt;\/h1&gt;<\/html>\n    <modified>2019-05-01T07:16:21.347620Z<\/modified>\n  <\/header>\n  <links>\n    <header>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/header<\/href>\n    <\/header>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/update<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"Claim Entries from Local DB"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Case Claims from Local DB","tags":["case"],"x-courtapi-resource":"claims","x-courtapi-source":"local","x-courtdrive-async-desc":"Claims register of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_claims","x-mojo-to":"PACER::Case::Claim#entries"}},"\/cases\/pacer\/{court_code}\/{case_number}\/claims\/header":{"get":{"description":"Case Claims Header","operationId":"getClaimsHeader","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"modified":"2017-07-09T05:13:32.653410Z","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"header":{"html":"<H2>Southern District of New York<BR>Claims Register <\/H2><FONT SIZE=+1><A HREF=\/cgi-bin\/DktRpt.pl?247775>14-10557-mg Sbarro LLC                                        <\/A><br><p><\/FONT><TABLE ><TR><TD><B>Judge:<\/B> Martin Glenn<\/B><TD><B> <\/B><TD><B>Chapter: <\/B> 11<TR><TD><B>Office: <\/B> Manhattan\n<TD><B>&nbsp;&nbsp; &nbsp;&nbsp;    <\/B><TD><B>Last Date to file claims: <\/B> 06\/30\/2014<TR><TD><B>Trustee: <\/B> <TD><B> <\/B><TD><B>Last Date to file (Govt): <\/B>  <\/TABLE><B>Date Filed:<\/B>\t\t\t\t03\/10\/2014<BR><B>Total Number Of Claims:<\/B> 3<BR><BR><table border=1><TR><TH>Total Amount Claimed* &nbsp;<\/TH><TD align=center>$19270.32 &nbsp;<\/TD><\/TR><TR><TH>Total Amount Allowed* &nbsp;<\/th><TD align=center> &nbsp;<\/TD><\/TR><\/TABLE>*Includes general unsecured claims<BR><BR><b>The values are reflective of the data entered. Always refer to claim documents for actual amounts.<\/b> <BR><BR><CENTER><TABLE BORDER=1><TR><TH><\/TH><TH>Claimed<\/TH><TH>Allowed<\/TH><\/TR><TR><TH align=left>Secured<\/TH><TD align=center> &nbsp;<\/TD><TD align=center> &nbsp;<\/TD><\/TR><TR><TH align=left>Priority<\/TH><TD align=center> &nbsp;<\/TD><TD align=center> &nbsp;<\/TD><\/TR><TR><TH align=left>Administrative<\/TH><TD align=center> &nbsp;<\/TD><TD align=center> &nbsp;<\/TD><\/TR><\/table><br>","modified":"2015-02-16T15:11:21.603850Z"}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"header":{"properties":{"html":{"type":"string"},"modified":{"format":"date-time","type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_no>1:14-bk-10557<\/case_no>\n    <case_title>Sbarro LLC<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter>11<\/chapter>\n    <court_code>nysbke<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>03\/10\/2014<\/date_filed>\n    <date_of_last_filing\/>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>No<\/has_asset>\n    <judge_name>Martin Glenn<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2017-07-09T05:13:32.653410Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type>v<\/petition_type>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <header>\n    <html>&lt;H2&gt;Southern District of New York&lt;BR&gt;Claims Register &lt;\/H2&gt;&lt;FONT SIZE=+1&gt;&lt;A HREF=\/cgi-bin\/DktRpt.pl?247775&gt;14-10557-mg Sbarro LLC                                        &lt;\/A&gt;&lt;br&gt;&lt;p&gt;&lt;\/FONT&gt;&lt;TABLE &gt;&lt;TR&gt;&lt;TD&gt;&lt;B&gt;Judge:&lt;\/B&gt; Martin Glenn&lt;\/B&gt;&lt;TD&gt;&lt;B&gt; &lt;\/B&gt;&lt;TD&gt;&lt;B&gt;Chapter: &lt;\/B&gt; 11&lt;TR&gt;&lt;TD&gt;&lt;B&gt;Office: &lt;\/B&gt; Manhattan\n&lt;TD&gt;&lt;B&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;    &lt;\/B&gt;&lt;TD&gt;&lt;B&gt;Last Date to file claims: &lt;\/B&gt; 06\/30\/2014&lt;TR&gt;&lt;TD&gt;&lt;B&gt;Trustee: &lt;\/B&gt; &lt;TD&gt;&lt;B&gt; &lt;\/B&gt;&lt;TD&gt;&lt;B&gt;Last Date to file (Govt): &lt;\/B&gt;  &lt;\/TABLE&gt;&lt;B&gt;Date Filed:&lt;\/B&gt;\t\t\t\t03\/10\/2014&lt;BR&gt;&lt;B&gt;Total Number Of Claims:&lt;\/B&gt; 3&lt;BR&gt;&lt;BR&gt;&lt;table border=1&gt;&lt;TR&gt;&lt;TH&gt;Total Amount Claimed* &amp;nbsp;&lt;\/TH&gt;&lt;TD align=center&gt;$19270.32 &amp;nbsp;&lt;\/TD&gt;&lt;\/TR&gt;&lt;TR&gt;&lt;TH&gt;Total Amount Allowed* &amp;nbsp;&lt;\/th&gt;&lt;TD align=center&gt; &amp;nbsp;&lt;\/TD&gt;&lt;\/TR&gt;&lt;\/TABLE&gt;*Includes general unsecured claims&lt;BR&gt;&lt;BR&gt;&lt;b&gt;The values are reflective of the data entered. Always refer to claim documents for actual amounts.&lt;\/b&gt; &lt;BR&gt;&lt;BR&gt;&lt;CENTER&gt;&lt;TABLE BORDER=1&gt;&lt;TR&gt;&lt;TH&gt;&lt;\/TH&gt;&lt;TH&gt;Claimed&lt;\/TH&gt;&lt;TH&gt;Allowed&lt;\/TH&gt;&lt;\/TR&gt;&lt;TR&gt;&lt;TH align=left&gt;Secured&lt;\/TH&gt;&lt;TD align=center&gt; &amp;nbsp;&lt;\/TD&gt;&lt;TD align=center&gt; &amp;nbsp;&lt;\/TD&gt;&lt;\/TR&gt;&lt;TR&gt;&lt;TH align=left&gt;Priority&lt;\/TH&gt;&lt;TD align=center&gt; &amp;nbsp;&lt;\/TD&gt;&lt;TD align=center&gt; &amp;nbsp;&lt;\/TD&gt;&lt;\/TR&gt;&lt;TR&gt;&lt;TH align=left&gt;Administrative&lt;\/TH&gt;&lt;TD align=center&gt; &amp;nbsp;&lt;\/TD&gt;&lt;TD align=center&gt; &amp;nbsp;&lt;\/TD&gt;&lt;\/TR&gt;&lt;\/table&gt;&lt;br&gt;<\/html>\n    <modified>2015-02-16T15:11:21.603850Z<\/modified>\n  <\/header>\n<\/result>\n"}},"description":"Claims Header"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Case Claims Header","tags":["case"],"x-courtapi-resource":"claims-header","x-courtapi-source":"local","x-courtdrive-async-desc":"Claims header of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_claims_header","x-mojo-to":"PACER::Case::Claim#header"}},"\/cases\/pacer\/{court_code}\/{case_number}\/claims\/search":{"get":{"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"in":"query","name":"search_keyword","schema":{"type":"string"}},{"description":"Also search within PDF content. Default is to only search within docket text.","in":"query","name":"search_pdfs","schema":{"enum":["include","limit"],"type":"string"}},{"description":"Comma separated list of claim numbers or claim number ranges","in":"query","name":"claim_number_range","schema":{"type":"string"}},{"description":"Date Filed From (MM\/DD\/YYYY)","in":"query","name":"date_filed_from","schema":{"pattern":"^\\d{2}\/\\d{2}\/\\d{4}$","type":"string"}},{"description":"Date Filed To (MM\/DD\/YYYY)","in":"query","name":"date_filed_to","schema":{"pattern":"^\\d{2}\/\\d{2}\/\\d{4}$","type":"string"}},{"in":"query","name":"claim_type","schema":{"enum":["amount_claimed","unknown_claimed","priority_claimed","secured_claimed","unsecured_claimed","admin_claimed"],"type":"string"}},{"description":"The page number to return","in":"query","name":"page_number","schema":{"minimum":0,"type":"integer"}},{"description":"Number of entries per page to return","in":"query","name":"page_size","schema":{"minimum":1,"type":"integer"}},{"in":"query","name":"sort_column","schema":{"type":"string"}},{"in":"query","name":"sort_order","schema":{"enum":["asc","desc"],"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"claimed_amounts":{"admin_claimed":"0.00","amount_claimed":"4025.28","priority_claimed":"0.00","secured_claimed":"0.00","unknown_claimed":"0.00","unsecured_claimed":"0.00"},"entries":{"content":[{"amounts":{"amount":{"claimed":"4025.28"}},"creditor":"FORD MOTOR CREDIT COMPANY LLC\nPO Box 9013\nAddison, TX 75001","creditor_no":12345678,"description":null,"history":[{"action":"https:\/\/ecf.mdb.uscourts.gov\/doc1\/066049602145?caseid=1281073&claim_doc_seq=&claim_id=50341049","binder":{"documents":[],"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/1\/documents\/1.00000","method":"POST"}}},"claim_date":"10\/22\/2014","claim_no":"1-1","claim_seq":"1-1.00000","claim_text":"10\/22\/2014 DUMMY UNIQUE TEXT: df300060-e70e-5bc4-7f1a-6456a17af851","links":{"documents":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/1\/documents\/1.00000"}}}],"info":{"claim_no":1,"modified":"2019-04-29T18:45:14.442680Z","original_entered_date":"10\/22\/2014","original_filed_date":"10\/22\/2014"},"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/1"}},"related_dockets":{"binder":{"documents":[],"links":{"pacer-update":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents"}}},"date_filed":"06\/04\/2019","docket_no":4,"docket_seq":"4.00000","docket_text":"Document(s) Refiled to Redact Information re: Claim # 1 Filed By Debtor Terry J Tester Jr, Joint Debtor Tessa Tester (cml)","docket_uri":"https:\/\/ecf-train.orb.uscourts.gov\/doc3\/150114407060","has_pdf_link_on_pacer":true,"links":{"documents":{"href":"http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents"},"self":{"href":"http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000"}}},"remarks":null,"status":{"entered_by":"NGHIA ATTY NGUYEN","filed_by":"CR"}}],"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims?page_size=500&page_number=1"}},"page_size":500,"total_items":1,"total_pages":1},"header":{"html":"<h1>Claims Header<\/h1>","modified":"2019-05-01T07:16:21.347620Z"},"links":{"header":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/header"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/update","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims"}}},"schema":{"properties":{"claimed_amounts":{"properties":{"admin_claimed":{"type":"number"},"amount_claimed":{"type":"number"},"priority_claimed":{"type":"number"},"secured_claimed":{"type":"number"},"unknown_claimed":{"type":"number"},"unsecured_claimed":{"type":"number"}},"type":"object"},"entries":{"properties":{"content":{"items":{"properties":{"amounts":{"properties":{"amount":{"properties":{"claimed":{"type":"string"}},"type":"object"},"unsecured":{"properties":{"claimed":{"type":"string"}},"type":"object"}},"type":"object"},"creditor":{"type":"string"},"description":{"type":"string"},"history":{"items":{"properties":{"action":{"type":"string"},"binder":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"number"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"is_cached":{"type":"boolean"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"},"claim_date":{"type":"string"},"claim_no":{"type":"string"},"claim_seq":{"type":"string"},"claim_text":{"type":"string"},"links":{"properties":{"documents":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"info":{"properties":{"claim_no":{"type":"string"},"last_amendment_entered":{"type":"string"},"last_amendment_filed":{"type":"string"},"modified":{"type":"string"},"original_entered_date":{"type":"string"},"original_filed_date":{"type":"string"}},"type":"object"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"related_dockets":{"items":{"properties":{"annotations":{"items":{"type":"string"},"type":"array"},"binder":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"integer"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"friendly_name":{"type":"string"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"},"date_filed":{"type":"string"},"docket_display_number":{"type":"string"},"docket_no":{"type":"integer"},"docket_seq":{"type":"number"},"docket_text":{"type":"string"},"has_pdf_link_on_pacer":{"type":"boolean"},"links":{"properties":{"documents":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"type":"string"}},"type":"object"},"type":"array"},"remarks":{"type":"string"},"status":{"nullable":true,"type":"object"}},"type":"object"},"type":"array"},"links":{"properties":{"last":{"properties":{"href":{"type":"string"},"method":{"enum":["DELETE","GET","PATCH","POST","PUT"],"type":"string"}},"required":["href"],"type":"object"},"next":{"properties":{"href":{"type":"string"},"method":{"enum":["DELETE","GET","PATCH","POST","PUT"],"type":"string"}},"required":["href"],"type":"object"},"self":{"properties":{"href":{"type":"string"},"method":{"enum":["DELETE","GET","PATCH","POST","PUT"],"type":"string"}},"required":["href"],"type":"object"}},"type":"object"},"page_size":{"type":"integer"},"total_items":{"type":"integer"},"total_pages":{"type":"integer"}},"type":"object"},"header":{"properties":{"html":{"type":"string"},"modified":{"format":"date-time","type":"string"}},"type":"object"},"links":{"properties":{"header":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <claimed_amounts>\n    <admin_claimed>0.00<\/admin_claimed>\n    <amount_claimed>4025.28<\/amount_claimed>\n    <priority_claimed>0.00<\/priority_claimed>\n    <secured_claimed>0.00<\/secured_claimed>\n    <unknown_claimed>0.00<\/unknown_claimed>\n    <unsecured_claimed>0.00<\/unsecured_claimed>\n  <\/claimed_amounts>\n  <entries>\n    <content>\n      <amounts>\n        <amount>\n          <claimed>4025.28<\/claimed>\n        <\/amount>\n      <\/amounts>\n      <creditor>FORD MOTOR CREDIT COMPANY LLC\nPO Box 9013 Addison, TX 75001<\/creditor>\n      <description\/>\n      <history>\n        <action>https:\/\/ecf.mdb.uscourts.gov\/doc1\/066049602145?caseid=1281073&amp;claim_doc_seq=&amp;claim_id=50341049<\/action>\n        <binder>\n          <links>\n            <pacer-update>\n              <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/1\/documents\/1.00000<\/href>\n              <method>POST<\/method>\n            <\/pacer-update>\n          <\/links>\n        <\/binder>\n        <claim_date>10\/22\/2014<\/claim_date>\n        <claim_no>1-1<\/claim_no>\n        <claim_seq>1-1.00000<\/claim_seq>\n        <claim_text>10\/22\/2014 DUMMY UNIQUE TEXT: df300060-e70e-5bc4-7f1a-6456a17af851<\/claim_text>\n        <links>\n          <documents>\n            <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/1\/documents\/1.00000<\/href>\n          <\/documents>\n        <\/links>\n      <\/history>\n      <info>\n        <claim_no>1<\/claim_no>\n        <modified>2019-04-29T18:45:14.442680Z<\/modified>\n        <original_entered_date>10\/22\/2014<\/original_entered_date>\n        <original_filed_date>10\/22\/2014<\/original_filed_date>\n      <\/info>\n      <links>\n        <self>\n          <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/1<\/href>\n        <\/self>\n      <\/links>\n      <related_dockets>\n        <binder>\n          <links>\n            <pacer-update>\n              <href>http:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents<\/href>\n            <\/pacer-update>\n          <\/links>\n        <\/binder>\n        <docket_date>06\/04\/2019<\/docket_date>\n        <docket_no>4<\/docket_no>\n        <docket_seq>4.00000<\/docket_seq>\n        <docket_text>Document(s) Refiled to Redact Information re: Claim # 1 Filed By Debtor Terry J Tester Jr, Joint Debtor Tessa Tester (cml)<\/docket_text>\n        <docket_uri>https:\/\/ecf-train.orb.uscourts.gov\/doc3\/150114407060<\/docket_uri>\n        <has_pdf_link_on_pacer>1<\/has_pdf_link_on_pacer>\n        <links>\n          <documents>\n            <href>http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents<\/href>\n          <\/documents>\n          <self>\n            <href>http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000<\/href>\n          <\/self>\n        <\/links>\n      <\/related_dockets>\n      <remarks\/>\n      <status\/>\n    <\/content>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims?page_size=500&amp;page_number=1<\/href>\n      <\/self>\n    <\/links>\n    <page_size>500<\/page_size>\n    <total_items>1<\/total_items>\n    <total_pages>1<\/total_pages>\n  <\/entries>\n  <header>\n    <html>&lt;h1&gt;Claims Header&lt;\/h1&gt;<\/html>\n    <modified>2019-05-01T07:16:21.347620Z<\/modified>\n  <\/header>\n  <links>\n    <header>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/header<\/href>\n    <\/header>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims\/update<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/1:14-bk-369971\/claims<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"Claim Entries from Local DB"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Search Claims Entries from ElasticSearch","tags":["case"],"x-courtapi-resource":"claims","x-courtapi-source":"local","x-courtdrive-async-desc":"Claims register search of {{court_code}}\/{{case_number}}","x-mojo-name":"elasticsearch_case_claims","x-mojo-to":["PACER::Case::Claim#es_claim_search",["format",["json","xlsx"]]]}},"\/cases\/pacer\/{court_code}\/{case_number}\/claims\/update":{"post":{"description":"PACER Query Case Claims","operationId":"updateClaims","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_code":{"type":"string"},"creditor_name":{"type":"string"},"creditor_no":{"type":"integer"},"creditor_type":{"type":"string"},"date_from":{"description":"Date From (MM\/DD\/YYYY)","type":"string"},"date_to":{"description":"Date To (MM\/DD\/YYYY)","type":"string"},"date_type":{"type":"string"},"doc_from":{"type":"integer"},"doc_to":{"type":"integer"},"include_documents":{"type":"boolean"},"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":null,"case_chapter_id":5,"case_court_id":221,"case_id_external":449300,"case_no":"3:14-bk-30022","case_petition_id":1,"case_title":"Leslie Scott Blankenship and Rose Lee Melton","case_type_id":1,"cause":null,"ch11_type":null,"ch11_type_code":null,"chapter":13,"court":"orbtrain","court_name":"orbtrain","created":"2019-05-01T16:09:14.517910Z","date_closed":null,"date_discharged":null,"date_filed":"01\/03\/2014","date_of_last_filing":"02\/18\/2016","date_plan_confirmed":"05\/09\/2014","date_terminated":null,"disabled":0,"disposition":null,"has_asset":1,"is_business_bankruptcy":0,"is_ok_to_list_publicly":false,"judge_name":"Elizabeth L Perris","jurisdiction":null,"jury_demand":null,"lead_case_uuid":null,"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022"}},"modified":"2019-05-01T16:09:46.486228Z","nature_of_debt":null,"nature_of_suit_code":null,"ncl_parties":[],"referred_to":null,"schedule_ab":null,"timestamp":"2019-05-01T16:09:46.486230Z","title":"Leslie Scott Blankenship and Rose Lee Melton","uri_id":85058604},"claims":[{"amounts":{"admin":{},"amount":{"claimed":"$1981.27"},"priority":{},"secured":{"claimed":"$19821.27"},"unknown":{},"unsecured":{}},"claim_no":"1","creditor":"Reliable Credit Association, Inc\nPO Box 22829\nMilwaukie, OR 97269","creditor_no":12345678,"description":"(1-1) car loan<BR>","history":[{"claim_date":"01\/16\/2014","claim_history_no":"1","claim_no":"1-1","claim_seq":0,"claim_text":"Claim #1 filed by Reliable Credit Association, Inc, Amount claimed: $1981.27 (Abraham, Michael)","claim_uri":"https:\/\/ecf-train.orb.uscourts.gov\/doc3\/150013576494","detail_uri":"https:\/\/ecf-train.orb.uscourts.gov\/cgi-bin\/ClaimHistory.pl?449300,1-1,1522311,14-30022-elp13","history_no":"1","links":{"documents":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/claims\/1\/documents\/1.00000"}},"sequence_number":"1.00000"}],"info":{"claim_no":"1","original_entered_date":"01\/16\/2014","original_filed_date":"01\/16\/2014"},"related_dockets":{"binder":{"documents":[],"links":{"pacer-update":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents"}}},"date_filed":"06\/04\/2019","docket_no":4,"docket_seq":"4.00000","docket_text":"Document(s) Refiled to Redact Information re: Claim # 1 Filed By Debtor Terry J Tester Jr, Joint Debtor Tessa Tester (cml)","docket_uri":"https:\/\/ecf-train.orb.uscourts.gov\/doc3\/150114407060","has_pdf_link_on_pacer":true,"links":{"documents":{"href":"http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents"},"self":{"href":"http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000"}}},"remarks":null,"status":{"entered_by":"Michael Abraham","filed_by":"CR"},"timestamp":"2019-05-01T16:09:48.092443Z"}],"header":{"html":"<h1>Claims Header<\/h1>","modified":"2019-05-01T07:16:21.347620Z"},"links":{"screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf"}}},"receipts":{"client_code":"","cost":"0.10","criteria":"14-30022-elp13 Claim Number From: 1 Claim Number To: 1","datetime":"05\/01\/2019 09:09:49","description":"Claims Register","filename":"orbtrain_449300","pages":"1","timestamp":"2019-05-01T16:09:48.092443Z","user_id":"irtraining"}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"claims":{"items":{"properties":{"meta":{"properties":{"claim_no":{"type":"integer"},"filename":{"type":"string"},"timestamp":{"type":"string"}},"type":"object"},"text":{"properties":{"amounts":{"properties":{"admin":{"type":"object"},"amount":{"properties":{"claimed":{"type":"string"}},"type":"object"},"priority":{"type":"object"},"secured":{"properties":{"claimed":{"type":"string"}},"type":"object"},"unknown":{"type":"object"},"unsecured":{"type":"object"}},"type":"object"},"creditor":{"type":"string"},"creditor_no":{"type":"string"},"description":{"type":"string"},"history":{"items":{"properties":{"claim_date":{"type":"string"},"claim_history_no":{"type":"integer"},"claim_no":{"type":"string"},"claim_seq":{"type":"integer"},"claim_text":{"type":"string"}},"type":"object"},"type":"array"},"info":{"properties":{"claim_no":{"type":"integer"},"original_entered_date":{"type":"string"},"original_filed_date":{"type":"string"}},"type":"object"},"related_dockets":{"items":{"properties":{"annotations":{"items":{"type":"string"},"type":"array"},"binder":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"integer"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"friendly_name":{"type":"string"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"},"date_filed":{"type":"string"},"docket_display_number":{"type":"string"},"docket_no":{"type":"integer"},"docket_seq":{"type":"number"},"docket_text":{"type":"string"},"has_pdf_link_on_pacer":{"type":"boolean"},"links":{"properties":{"documents":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"type":"string"}},"type":"object"},"type":"array"},"remarks":{"type":"string"},"status":{"properties":{"entered_by":{"type":"string"},"filed_by":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"header":{"properties":{"html":{"type":"string"},"modified":{"format":"date-time","type":"string"}},"type":"object"},"links":{"properties":{"screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_chapter_id>5<\/case_chapter_id>\n    <case_court_id>221<\/case_court_id>\n    <case_id_external>449300<\/case_id_external>\n    <case_no>3:14-bk-30022<\/case_no>\n    <case_petition_id>1<\/case_petition_id>\n    <case_title>Leslie Scott Blankenship and Rose Lee Melton<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <cause\/>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter>13<\/chapter>\n    <court>orbtrain<\/court>\n    <court_name>orbtrain<\/court_name>\n    <created>2019-05-01T16:09:14.517910Z<\/created>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>01\/03\/2014<\/date_filed>\n    <date_of_last_filing>02\/18\/2016<\/date_of_last_filing>\n    <date_plan_confirmed>05\/09\/2014<\/date_plan_confirmed>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>1<\/has_asset>\n    <is_business_bankruptcy>0<\/is_business_bankruptcy>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Elizabeth L Perris<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <lead_case_uuid\/>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022<\/href>\n      <\/self>\n    <\/links>\n    <modified>2019-05-01T16:09:46.486228Z<\/modified>\n    <nature_of_debt\/>\n    <nature_of_suit_code\/>\n    <referred_to\/>\n    <schedule_ab\/>\n    <timestamp>2019-05-01T16:09:46.486230Z<\/timestamp>\n    <title>Leslie Scott Blankenship and Rose Lee Melton<\/title>\n    <uri_id>85058604<\/uri_id>\n  <\/case>\n  <claims>\n    <amounts>\n      <admin\/>\n      <amount>\n        <claimed>$1981.27<\/claimed>\n      <\/amount>\n      <priority\/>\n      <secured>\n        <claimed>$19821.27<\/claimed>\n      <\/secured>\n      <unknown\/>\n      <unsecured\/>\n    <\/amounts>\n    <claim_no>1<\/claim_no>\n    <creditor>Reliable Credit Association, Inc\nPO Box 22829 Milwaukie, OR 97269<\/creditor>\n    <creditor_no>12345678<\/creditor_no>\n    <description>(1-1) car loan&lt;BR&gt;<\/description>\n    <history>\n      <claim_date>01\/16\/2014<\/claim_date>\n      <claim_history_no>1<\/claim_history_no>\n      <claim_no>1-1<\/claim_no>\n      <claim_seq>0<\/claim_seq>\n      <claim_text>Claim #1 filed by Reliable Credit Association, Inc, Amount claimed: $1981.27 (Abraham, Michael)<\/claim_text>\n      <claim_uri>https:\/\/ecf-train.orb.uscourts.gov\/doc3\/150013576494<\/claim_uri>\n      <detail_uri>https:\/\/ecf-train.orb.uscourts.gov\/cgi-bin\/ClaimHistory.pl?449300,1-1,1522311,14-30022-elp13<\/detail_uri>\n      <history_no>1<\/history_no>\n      <links>\n        <documents>\n          <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/claims\/1\/documents\/1.00000<\/href>\n        <\/documents>\n      <\/links>\n      <sequence_number>1.00000<\/sequence_number>\n    <\/history>\n    <info>\n      <claim_no>1<\/claim_no>\n      <original_entered_date>01\/16\/2014<\/original_entered_date>\n      <original_filed_date>01\/16\/2014<\/original_filed_date>\n    <\/info>\n    <related_dockets>\n      <binder>\n        <links>\n          <pacer-update>\n            <href>http:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents<\/href>\n          <\/pacer-update>\n        <\/links>\n      <\/binder>\n      <docket_date>06\/04\/2019<\/docket_date>\n      <docket_no>4<\/docket_no>\n      <docket_seq>4.00000<\/docket_seq>\n      <docket_text>Document(s) Refiled to Redact Information re: Claim # 1 Filed By Debtor Terry J Tester Jr, Joint Debtor Tessa Tester (cml)<\/docket_text>\n      <docket_uri>https:\/\/ecf-train.orb.uscourts.gov\/doc3\/150114407060<\/docket_uri>\n      <has_pdf_link_on_pacer>1<\/has_pdf_link_on_pacer>\n      <links>\n        <documents>\n          <href>http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents<\/href>\n        <\/documents>\n        <self>\n          <href>http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000<\/href>\n        <\/self>\n      <\/links>\n    <\/related_dockets>\n    <remarks\/>\n    <status>\n      <entered_by>Michael Abraham<\/entered_by>\n      <filed_by>CR<\/filed_by>\n    <\/status>\n    <timestamp>2019-05-01T16:09:48.092443Z<\/timestamp>\n  <\/claims>\n  <header>\n    <html>&lt;h1&gt;Claims Header&lt;\/h1&gt;<\/html>\n    <modified>2019-05-01T07:16:21.347620Z<\/modified>\n  <\/header>\n  <links>\n    <screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf<\/href>\n      <\/pdf>\n    <\/screenshot>\n  <\/links>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>14-30022-elp13 Claim Number From: 1 Claim Number To: 1<\/criteria>\n    <datetime>05\/01\/2019 09:09:49<\/datetime>\n    <description>Claims Register<\/description>\n    <filename>orbtrain_449300<\/filename>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T16:09:48.092443Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Claims","tags":["query"],"x-courtapi-resource":"claims","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Claims update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_claims","x-mojo-to":"PACER::Query#pacer_query_claims"}},"\/cases\/pacer\/{court_code}\/{case_number}\/claims\/{claim_no}":{"get":{"description":"Case Claim Entry","operationId":"getClaim","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"Claim Number","in":"path","name":"claim_no","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"entry":{"amounts":{"amount":{"claimed":"10.00"}},"creditor":"Branch Banking & Trust Company\nBankruptcy Section\/100-50-01-51\nPO Box 1847\nWilson, NC 27894","creditor_no":12345678,"description":null,"history":[{"action":"https:\/\/ecf.nysb.uscourts.gov\/doc1\/126014435495?claim_doc_seq=&pdf_header=&magic_num=0&claim_num=8&claim_id=13449078&caseid=247775","binder":{"documents":[{"cost":"0.40","description_html":"Claim 13449078-0","docket_no":null,"download_cost":"0.40","filename":"Bankr.S.D.N.Y._1-14-bk-10557_Claim_8-1.pdf","free":null,"friendly_name":"Bankr.S.D.N.Y._1-14-bk-10557_Claim_8-1.pdf","is_cached":false,"links":{"order_pdf":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/8\/documents\/1.00000\/1","method":"POST"}},"number":1,"pages":4}],"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/8\/documents\/1.00000","method":"POST"}}},"claim_date":"03\/21\/2014","claim_no":"8-1","claim_seq":"8-1.00000","claim_text":"03\/21\/2014 Claim #8 filed by Branch Banking & Trust Company, Amount claimed: $10.00 (Woods, Patricia (Tricia))","links":{"documents":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/8\/documents\/1.00000"}}}],"info":{"claim_no":8,"modified":"2014-04-09T15:05:53.681560Z","original_entered_date":"03\/21\/2014","original_filed_date":"03\/21\/2014"},"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/8"}},"related_dockets":{"binder":{"documents":[],"links":{"pacer-update":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents"}}},"date_filed":"06\/04\/2019","docket_no":4,"docket_seq":"4.00000","docket_text":"Document(s) Refiled to Redact Information re: Claim # 1 Filed By Debtor Terry J Tester Jr, Joint Debtor Tessa Tester (cml)","docket_uri":"https:\/\/ecf-train.orb.uscourts.gov\/doc3\/150114407060","has_pdf_link_on_pacer":true,"links":{"documents":{"href":"http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents"},"self":{"href":"http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000"}}},"remarks":null,"status":{"entered_by":"NGHIA ATTY NGUYEN","filed_by":"CR"}},"links":{"header":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/header"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/update","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/8"}}},"schema":{"properties":{"entry":{"properties":{"amounts":{"properties":{"amount":{"properties":{"claimed":{"type":"string"}},"type":"object"},"unsecured":{"properties":{"claimed":{"type":"string"}},"type":"object"}},"type":"object"},"creditor":{"type":"string"},"description":{"type":"string"},"history":{"items":{"properties":{"action":{"type":"string"},"binder":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"number"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"is_cached":{"type":"boolean"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"},"claim_date":{"type":"string"},"claim_no":{"type":"string"},"claim_seq":{"type":"string"},"claim_text":{"type":"string"},"links":{"properties":{"documents":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"info":{"properties":{"claim_no":{"type":"string"},"last_amendment_entered":{"type":"string"},"last_amendment_filed":{"type":"string"},"modified":{"type":"string"},"original_entered_date":{"type":"string"},"original_filed_date":{"type":"string"}},"type":"object"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"related_dockets":{"items":{"properties":{"annotations":{"items":{"type":"string"},"type":"array"},"binder":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"integer"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"friendly_name":{"type":"string"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"},"date_filed":{"type":"string"},"docket_display_number":{"type":"string"},"docket_no":{"type":"integer"},"docket_seq":{"type":"number"},"docket_text":{"type":"string"},"has_pdf_link_on_pacer":{"type":"boolean"},"links":{"properties":{"documents":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"type":"string"}},"type":"object"},"type":"array"},"remarks":{"type":"string"},"status":{"nullable":true,"type":"object"}},"type":"object"},"links":{"properties":{"header":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <entry>\n    <amounts>\n      <amount>\n        <claimed>10.00<\/claimed>\n      <\/amount>\n    <\/amounts>\n    <creditor>Branch Banking &amp; Trust Company\nBankruptcy Section\/100-50-01-51 PO Box 1847 Wilson, NC 27894<\/creditor>\n    <creditor_no>12345678<\/creditor_no>\n    <description\/>\n    <history>\n      <action>https:\/\/ecf.nysb.uscourts.gov\/doc1\/126014435495?claim_doc_seq=&amp;pdf_header=&amp;magic_num=0&amp;claim_num=8&amp;claim_id=13449078&amp;caseid=247775<\/action>\n      <binder>\n        <documents>\n          <cost>0.40<\/cost>\n          <description_html>Claim 13449078-0<\/description_html>\n          <docket_no\/>\n          <download_cost>0.40<\/download_cost>\n          <filename>Bankr.S.D.N.Y._1-14-bk-10557_Claim_8-1.pdf<\/filename>\n          <free\/>\n          <friendly_name>Bankr.S.D.N.Y._1-14-bk-10557_Claim_8-1.pdf<\/friendly_name>\n          <is_cached>0<\/is_cached>\n          <links>\n            <order_pdf>\n              <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/8\/documents\/1.00000\/1<\/href>\n              <method>POST<\/method>\n            <\/order_pdf>\n          <\/links>\n          <number>1<\/number>\n          <pages>4<\/pages>\n        <\/documents>\n        <links>\n          <pacer-update>\n            <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/8\/documents\/1.00000<\/href>\n            <method>POST<\/method>\n          <\/pacer-update>\n        <\/links>\n      <\/binder>\n      <claim_date>03\/21\/2014<\/claim_date>\n      <claim_no>8-1<\/claim_no>\n      <claim_seq>8-1.00000<\/claim_seq>\n      <claim_text>03\/21\/2014 Claim #8 filed by Branch Banking &amp; Trust Company, Amount claimed: $10.00 (Woods, Patricia (Tricia))<\/claim_text>\n      <links>\n        <documents>\n          <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/8\/documents\/1.00000<\/href>\n        <\/documents>\n      <\/links>\n    <\/history>\n    <info>\n      <claim_no>8<\/claim_no>\n      <modified>2014-04-09T15:05:53.681560Z<\/modified>\n      <original_entered_date>03\/21\/2014<\/original_entered_date>\n      <original_filed_date>03\/21\/2014<\/original_filed_date>\n    <\/info>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/8<\/href>\n      <\/self>\n    <\/links>\n    <related_dockets>\n      <binder>\n        <links>\n          <pacer-update>\n            <href>http:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents<\/href>\n          <\/pacer-update>\n        <\/links>\n      <\/binder>\n      <docket_date>06\/04\/2019<\/docket_date>\n      <docket_no>4<\/docket_no>\n      <docket_seq>4.00000<\/docket_seq>\n      <docket_text>Document(s) Refiled to Redact Information re: Claim # 1 Filed By Debtor Terry J Tester Jr, Joint Debtor Tessa Tester (cml)<\/docket_text>\n      <docket_uri>https:\/\/ecf-train.orb.uscourts.gov\/doc3\/150114407060<\/docket_uri>\n      <has_pdf_link_on_pacer>1<\/has_pdf_link_on_pacer>\n      <links>\n        <documents>\n          <href>http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000\/documents<\/href>\n        <\/documents>\n        <self>\n          <href>http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/orbtrain\/3:14-bk-35575\/dockets\/4.00000<\/href>\n        <\/self>\n      <\/links>\n    <\/related_dockets>\n    <remarks\/>\n    <status>\n      <entered_by>NGHIA ATTY NGUYEN<\/entered_by>\n      <filed_by>CR<\/filed_by>\n    <\/status>\n  <\/entry>\n  <links>\n    <header>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/header<\/href>\n    <\/header>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/update<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/8<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"Claim Entry"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"error":{"properties":{"detail":{"type":"string"},"status":{"type":"integer"}},"type":"object"},"links":{"properties":{"header":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}}},"description":"Claim Entry Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Case Claim Entry","tags":["case"],"x-courtapi-resource":"claim","x-courtapi-source":"local","x-courtdrive-async-desc":"Claims entry {{claim_no}} of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_single_claim_entry","x-mojo-to":"PACER::Case::Claim#entry"}},"\/cases\/pacer\/{court_code}\/{case_number}\/claims\/{claim_no}\/documents\/{claim_seq_no}":{"get":{"description":"Claim Entry Document Parts","operationId":"getClaimParts","parameters":[{"description":"If true, update document information from PACER if necessary","in":"query","name":"auto_update","schema":{"type":"boolean"}}],"responses":{"200":{"content":{"application\/json":{"example":{"documents":[{"cost":"0.20","description_html":"Claim 13418284-0","docket_no":null,"download_cost":"0.20","filename":"Bankr.S.D.N.Y._1-14-bk-10557_Claim_2-1.pdf","free":null,"friendly_name":"Bankr.S.D.N.Y._1-14-bk-10557_Claim_2-1.pdf","is_cached":false,"links":{"order_pdf":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/2\/documents\/1\/1","method":"POST"}},"number":1,"pages":2},{"cost":"0.20","description_html":"Attachment 1","docket_no":null,"download_cost":"0.20","filename":"Bankr.S.D.N.Y._1-14-bk-10557_Claim_2-1_2.pdf","free":null,"friendly_name":"Bankr.S.D.N.Y._1-14-bk-10557_Claim_2-1_2.pdf","is_cached":false,"links":{"order_pdf":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/2\/documents\/1\/2","method":"POST"}},"number":2,"pages":2}],"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/2\/documents\/1","method":"POST"}}},"schema":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"number"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"is_cached":{"type":"boolean"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <documents>\n    <cost>0.20<\/cost>\n    <description_html>Claim 13418284-0<\/description_html>\n    <docket_no\/>\n    <download_cost>0.20<\/download_cost>\n    <filename>Bankr.S.D.N.Y._1-14-bk-10557_Claim_2-1.pdf<\/filename>\n    <free\/>\n    <friendly_name>Bankr.S.D.N.Y._1-14-bk-10557_Claim_2-1.pdf<\/friendly_name>\n    <is_cached>0<\/is_cached>\n    <links>\n      <order_pdf>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/2\/documents\/1\/1<\/href>\n        <method>POST<\/method>\n      <\/order_pdf>\n    <\/links>\n    <number>1<\/number>\n    <pages>2<\/pages>\n  <\/documents>\n  <documents>\n    <cost>0.20<\/cost>\n    <description_html>Attachment 1<\/description_html>\n    <docket_no\/>\n    <download_cost>0.20<\/download_cost>\n    <filename>Bankr.S.D.N.Y._1-14-bk-10557_Claim_2-1_2.pdf<\/filename>\n    <free\/>\n    <friendly_name>Bankr.S.D.N.Y._1-14-bk-10557_Claim_2-1_2.pdf<\/friendly_name>\n    <is_cached>0<\/is_cached>\n    <links>\n      <order_pdf>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/2\/documents\/1\/2<\/href>\n        <method>POST<\/method>\n      <\/order_pdf>\n    <\/links>\n    <number>2<\/number>\n    <pages>2<\/pages>\n  <\/documents>\n  <links>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/2\/documents\/1<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n  <\/links>\n<\/result>\n"}},"description":"Claim Entry Documents"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Claim Entry Document Parts","tags":["case"],"x-courtapi-resource":"claim-documents","x-courtapi-source":"local","x-courtdrive-async-desc":"List claim entry documents for {{court_code}}\/{{case_number}} claim {{claim_no}}-{{claim_seq_no}}","x-mojo-name":"localdb_case_claimselect_docselect","x-mojo-to":["PACER::ClaimSelect#docselect",{"cached":1}]},"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"Claim Entry Number","in":"path","name":"claim_no","required":true,"schema":{"type":"string"}},{"description":"Claim Entry Document's Sequence Number","in":"path","name":"claim_seq_no","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"post":{"description":"Purchase Claim Entry Document Parts from PACER","operationId":"updateClaimParts","parameters":[{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"examples":{"documents":{"summary":"Document parts returned","value":{"documents":[{"cost":"0.40","description_html":"Claim 14191181-0","docket_no":null,"download_cost":"0.40","filename":"Bankr.D.Or.TRAIN._3-14-bk-30022_Claim_2-1.pdf","free":null,"friendly_name":"Bankr.D.Or.TRAIN._3-14-bk-30022_Claim_2-1.pdf","is_cached":false,"links":{"order_pdf":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/claims\/2\/documents\/1\/1","method":"POST"}},"number":1,"pages":4}],"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/claims\/2\/documents\/1","method":"POST"}}}},"inaccessible":{"summary":"PACER reports the document is inaccessible","value":{"documents":[],"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/claims\/2\/documents\/1","method":"POST"}},"service_link":"https:\/\/ecf.txwd.uscourts.gov\/doc1\/181035825525","service_message":"You do not have permission to view this document."}}},"schema":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"number"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"is_cached":{"type":"boolean"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <documents>\n    <cost>0.40<\/cost>\n    <description_html>Claim 14191181-0<\/description_html>\n    <docket_no\/>\n    <download_cost>0.40<\/download_cost>\n    <filename>Bankr.D.Or.TRAIN._3-14-bk-30022_Claim_2-1.pdf<\/filename>\n    <free\/>\n    <friendly_name>Bankr.D.Or.TRAIN._3-14-bk-30022_Claim_2-1.pdf<\/friendly_name>\n    <is_cached>0<\/is_cached>\n    <links>\n      <order_pdf>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/claims\/2\/documents\/1\/1<\/href>\n        <method>POST<\/method>\n      <\/order_pdf>\n    <\/links>\n    <number>1<\/number>\n    <pages>4<\/pages>\n  <\/documents>\n  <links>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/claims\/2\/documents\/1<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n  <\/links>\n<\/result>\n"}},"description":"Claim Entry Documents. When PACER indicates the document is sealed or inaccessible (e.g. \"You do not have permission to view this document.\"),\n`documents` will be empty and the response will also include `service_message` (the message returned by PACER) and `service_link`\n(a direct PACER URL the user can navigate to with a filer account).\n"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Purchase Claim Entry Document Parts from PACER","tags":["query"],"x-courtapi-resource":"claim-documents","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Update claim entry documents list for {{court_code}}\/{{case_number}} claim {{claim_no}}-{{claim_seq_no}}","x-mojo-name":"pacer_case_claimselect_docselect","x-mojo-to":["PACER::ClaimSelect#docselect",{"cached":0}]}},"\/cases\/pacer\/{court_code}\/{case_number}\/claims\/{claim_no}\/documents\/{claim_seq_no}\/{part_no}":{"get":{"description":"Order Claim Entry documents;","operationId":"getClaimDocument","parameters":[{"in":"query","name":"disposition","schema":{"enum":["download","preview"],"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"document":{"cost":"0.20","description_html":"Claim 13418263-0","docket_no":"1-1","download_cost":"0.00","download_url":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/documents\/claims\/download\/eyJjYXNlX3V1aWQiOiJueXNia2VfMjQ3Nzc1IiwiZXBvY2giOjE1NTY2OTA2NTEsImlkIjoiZTE5MzdmMDAtNmM5My00MzRjLWJlNWYtN2FjMWY5YWIyM2MzIiwicGFydF9ubyI6IjEiLCJzZXF1ZW5jZSI6IjEtMSIsInR5cGUiOiJjbGFpbSJ9\/9c1b4a7627dca1fe857442d2ab090d364b4efdb52a068857cfafde85ec2917f5","filename":"Bankr.S.D.N.Y._1-14-bk-10557_Claim_1-1.pdf","free":null,"friendly_name":"Bankr.S.D.N.Y._1-14-bk-10557_Claim_1-1.pdf","is_cached":null,"number":1,"pages":2,"preview_url":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/documents\/claims\/download\/eyJjYXNlX3V1aWQiOiJueXNia2VfMjQ3Nzc1IiwiZXBvY2giOjE1NTY2OTA2NTEsImlkIjoiZTE5MzdmMDAtNmM5My00MzRjLWJlNWYtN2FjMWY5YWIyM2MzIiwicGFydF9ubyI6IjEiLCJzZXF1ZW5jZSI6IjEtMSIsInR5cGUiOiJjbGFpbSJ9\/9c1b4a7627dca1fe857442d2ab090d364b4efdb52a068857cfafde85ec2917f5"},"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/1\/documents\/1\/1","method":"POST"}},"origin":"cache"},"schema":{"properties":{"document":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"number"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"is_cached":{"type":"boolean"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"origin":{"enum":["cache","pacer"],"type":"string"},"status":{"enum":["success","fail"],"type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <document>\n    <cost>0.20<\/cost>\n    <description_html>Claim 13418263-0<\/description_html>\n    <docket_no>1-1<\/docket_no>\n    <download_cost>0.00<\/download_cost>\n    <download_url>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/documents\/claims\/download\/eyJjYXNlX3V1aWQiOiJueXNia2VfMjQ3Nzc1IiwiZXBvY2giOjE1NTY2OTA2NTEsImlkIjoiZTE5MzdmMDAtNmM5My00MzRjLWJlNWYtN2FjMWY5YWIyM2MzIiwicGFydF9ubyI6IjEiLCJzZXF1ZW5jZSI6IjEtMSIsInR5cGUiOiJjbGFpbSJ9\/9c1b4a7627dca1fe857442d2ab090d364b4efdb52a068857cfafde85ec2917f5<\/download_url>\n    <filename>Bankr.S.D.N.Y._1-14-bk-10557_Claim_1-1.pdf<\/filename>\n    <free\/>\n    <friendly_name>Bankr.S.D.N.Y._1-14-bk-10557_Claim_1-1.pdf<\/friendly_name>\n    <is_cached>1<\/is_cached>\n    <number>1<\/number>\n    <pages>2<\/pages>\n    <preview_url>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/documents\/claims\/download\/eyJjYXNlX3V1aWQiOiJueXNia2VfMjQ3Nzc1IiwiZXBvY2giOjE1NTY2OTA2NTEsImlkIjoiZTE5MzdmMDAtNmM5My00MzRjLWJlNWYtN2FjMWY5YWIyM2MzIiwicGFydF9ubyI6IjEiLCJzZXF1ZW5jZSI6IjEtMSIsInR5cGUiOiJjbGFpbSJ9\/9c1b4a7627dca1fe857442d2ab090d364b4efdb52a068857cfafde85ec2917f5<\/preview_url>\n  <\/document>\n  <links>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/claims\/1\/documents\/1\/1<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n  <\/links>\n  <origin>cache<\/origin>\n<\/result>\n"}},"description":"Claim Entry document download link"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"ClaimSelect Order PDF","tags":["case"],"x-courtapi-resource":"claim-document","x-courtapi-source":"local","x-courtdrive-async-desc":"PDF document for {{court_code}}\/{{case_number}} Claim {{claim_no}}-{{claim_seq_no}} part {{part_no}}","x-mojo-name":"localdb_case_claimselect_order_pdf","x-mojo-to":["PACER::ClaimSelect#order_pdf",{"cached":1},["format",["json","pdf"]]]},"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"Claim Entry Number","in":"path","name":"claim_no","required":true,"schema":{"type":"string"}},{"description":"Claim Entry Document's Sequence Number","in":"path","name":"claim_seq_no","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"Document part number","in":"path","name":"part_no","required":true,"schema":{"type":"string"}}],"post":{"description":"Purchase Claim Entry Document from PACER","operationId":"buyClaimDocument","parameters":[{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"document":{"cost":"0.10","description_html":"Claim 14650609-0","docket_no":"5-1","download_cost":"0.00","download_url":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/documents\/claims\/download\/eyJjYXNlX3V1aWQiOiJvcmJ0cmFpbl80NDkzMDAiLCJlcG9jaCI6MTU1NjcyNzUxNSwiaWQiOiI1NTg5M2FkMC0wMDJmLTQzMjEtODM0ZC0wMjhjOWM3ODkwNjUiLCJwYXJ0X25vIjoiMSIsInNlcXVlbmNlIjoiNS0xIiwidHlwZSI6ImNsYWltIn0\/a9182d6bd1efd9804aa6406401a0c34f9e0ccd800513844b0bcb56686074eaf0","filename":"Bankr.D.Or.TRAIN._3-14-bk-30022_Claim_5-1.pdf","free":null,"friendly_name":"Bankr.D.Or.TRAIN._3-14-bk-30022_Claim_5-1.pdf","is_cached":null,"number":1,"ocr_link":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/documents\/claims\/download\/eyJjYXNlX3V1aWQiOiJvcmJ0cmFpbl80NDkzMDAiLCJlcG9jaCI6MTU1NjcyNzUxNSwiaWQiOiI2MmRhYTBmZi03YjQ2LTRiMGYtYjQ1NS1hNDA5M2I2ZTMxZTAiLCJwYXJ0X25vIjoiMSIsInNlcXVlbmNlIjoiNS0xIiwidHlwZSI6Im9jciJ9\/a84e65797a88a21685d7e5d2f9b8290b202969ed946906d100bf1016463fbc12","pages":1,"preview_url":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/documents\/claims\/download\/eyJjYXNlX3V1aWQiOiJvcmJ0cmFpbl80NDkzMDAiLCJlcG9jaCI6MTU1NjcyNzUxNSwiaWQiOiI1NTg5M2FkMC0wMDJmLTQzMjEtODM0ZC0wMjhjOWM3ODkwNjUiLCJwYXJ0X25vIjoiMSIsInNlcXVlbmNlIjoiNS0xIiwidHlwZSI6ImNsYWltIn0\/a9182d6bd1efd9804aa6406401a0c34f9e0ccd800513844b0bcb56686074eaf0"},"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/claims\/5\/documents\/1\/1","method":"POST"}},"origin":"PACER","receipt":{"client_code":"","cost":"0.10","criteria":"14-30022-elp13","datetime":"Wed May 1 09:18:32 2019","description":"Claim 14650609-0","pages":"1","timestamp":null,"user_id":"irtraining"}}},"application\/xml":{"example":"<result>\n  <document>\n    <cost>0.10<\/cost>\n    <description_html>Claim 14650609-0<\/description_html>\n    <docket_no>5-1<\/docket_no>\n    <download_cost>0.00<\/download_cost>\n    <download_url>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/documents\/claims\/download\/eyJjYXNlX3V1aWQiOiJvcmJ0cmFpbl80NDkzMDAiLCJlcG9jaCI6MTU1NjcyNzUxNSwiaWQiOiI1NTg5M2FkMC0wMDJmLTQzMjEtODM0ZC0wMjhjOWM3ODkwNjUiLCJwYXJ0X25vIjoiMSIsInNlcXVlbmNlIjoiNS0xIiwidHlwZSI6ImNsYWltIn0\/a9182d6bd1efd9804aa6406401a0c34f9e0ccd800513844b0bcb56686074eaf0<\/download_url>\n    <filename>Bankr.D.Or.TRAIN._3-14-bk-30022_Claim_5-1.pdf<\/filename>\n    <free\/>\n    <friendly_name>Bankr.D.Or.TRAIN._3-14-bk-30022_Claim_5-1.pdf<\/friendly_name>\n    <is_cached>1<\/is_cached>\n    <number>1<\/number>\n    <ocr_link>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/documents\/claims\/download\/eyJjYXNlX3V1aWQiOiJvcmJ0cmFpbl80NDkzMDAiLCJlcG9jaCI6MTU1NjcyNzUxNSwiaWQiOiI2MmRhYTBmZi03YjQ2LTRiMGYtYjQ1NS1hNDA5M2I2ZTMxZTAiLCJwYXJ0X25vIjoiMSIsInNlcXVlbmNlIjoiNS0xIiwidHlwZSI6Im9jciJ9\/a84e65797a88a21685d7e5d2f9b8290b202969ed946906d100bf1016463fbc12<\/ocr_link>\n    <pages>1<\/pages>\n    <preview_url>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/documents\/claims\/download\/eyJjYXNlX3V1aWQiOiJvcmJ0cmFpbl80NDkzMDAiLCJlcG9jaCI6MTU1NjcyNzUxNSwiaWQiOiI1NTg5M2FkMC0wMDJmLTQzMjEtODM0ZC0wMjhjOWM3ODkwNjUiLCJwYXJ0X25vIjoiMSIsInNlcXVlbmNlIjoiNS0xIiwidHlwZSI6ImNsYWltIn0\/a9182d6bd1efd9804aa6406401a0c34f9e0ccd800513844b0bcb56686074eaf0<\/preview_url>\n  <\/document>\n  <links>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/14-30022\/claims\/5\/documents\/1\/1<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n  <\/links>\n  <origin>PACER<\/origin>\n  <receipt>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>14-30022-elp13<\/criteria>\n    <datetime>Wed May 1 09:18:32 2019<\/datetime>\n    <description>Claim 14650609-0<\/description>\n    <pages>1<\/pages>\n    <timestamp\/>\n    <user_id>irtraining<\/user_id>\n  <\/receipt>\n<\/result>\n"}},"description":"Claim Entry document download link"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Purchase Claim Entry Document from PACER","tags":["query"],"x-courtapi-resource":"claim-document","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Purchase PDF document for {{court_code}}\/{{case_number}} Claim {{claim_no}}-{{claim_seq_no}} part {{part_no}}","x-mojo-name":"pacer_case_claimselect_order_pdf","x-mojo-to":["PACER::ClaimSelect#order_pdf",{"cached":0},["format",["json","pdf"]]]}},"\/cases\/pacer\/{court_code}\/{case_number}\/creditor_mailing":{"get":{"description":"Creditor mailing matrix for case","operationId":"getCreditorMailingMatrix","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"civil","case_no":"3:92-cv-30321","case_title":"UNITED STATES v. INTERNATL FIDELITY","case_type":"cv","cause":null,"ch11_type":null,"chapter":null,"court_code":"flndce","date_closed":"04\/11\/1997","date_discharged":null,"date_filed":"08\/25\/1992","date_of_last_filing":"09\/08\/2000","date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":false,"is_ok_to_list_publicly":false,"judge_name":"LACEY A COLLIER","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2022-01-21T04:57:14.362364Z","naics_code":130,"nature_of_debt":"~","nature_of_suit_code":130,"petition_type":null,"plan_confirmed":null,"referred_to":null},"creditor_mailing":{"csv":{"filename":"Bankr.D.Or.TRAIN._6-19-bk-60014_creditor_matrix.csv","modified":"2019-07-19T17:53:31.887015Z","text":"[csv content]"},"pdf":{"filename":"Bankr.D.Or.TRAIN._6-19-bk-60014_creditor_matrix.pdf","modified":"2019-07-19T17:53:31.887015Z","text":"[link to pdf]"}},"links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:19-bk-60014"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:19-bk-60014\/creditor_mailing","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:19-bk-60014\/creditor_mailing"}}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"creditor_mailing":{"properties":{"csv":{"properties":{"filename":{"type":"string"},"modified":{"format":"date-time","type":"string"},"text":{"type":"string"}},"type":"object"},"pdf":{"properties":{"download_url":{"type":"string"},"filename":{"type":"string"},"modified":{"format":"date-time","type":"string"}},"type":"object"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>6:19-bk-60014<\/case_no>\n    <case_title>Trendy N. Testing, Jr.<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter\/>\n    <court_code>orbtrain<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>03\/04\/2019<\/date_filed>\n    <date_of_last_filing\/>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name\/>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2019-07-19T17:53:31.239490Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type\/>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <creditor_mailing>\n    <csv>\n      <filename>Bankr.D.Or.TRAIN._6-19-bk-60014_creditor_matrix.csv<\/filename>\n      <modified>2019-07-19T17:53:31.887015Z<\/modified>\n      <text>[csv content]<\/text>\n    <\/csv>\n    <pdf>\n      <filename>Bankr.D.Or.TRAIN._6-19-bk-60014_creditor_matrix.pdf<\/filename>\n      <modified>2019-07-19T17:53:31.887015Z<\/modified>\n      <text>[link to pdf]<\/text>\n    <\/pdf>\n  <\/creditor_mailing>\n  <links>\n    <menu>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:19-bk-60014<\/href>\n    <\/menu>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:19-bk-60014\/creditor_mailing<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:19-bk-60014\/creditor_mailing<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Creditor mailing matrix for case","tags":["case"],"x-courtapi-resource":"creditor-mailing","x-courtapi-source":"local","x-courtdrive-async-desc":"Creditor mailing matrix for {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_creditor_mailing","x-mojo-to":"PACER::Case#creditor_mailing"},"post":{"description":"PACER Query Case Creditor Mailing","operationId":"updateCreditorMailingMatrix","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"format":{"enum":["csv","pdf"],"type":"string"},"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":null,"case_no":"6:19-bk-60014","case_title":"Trendy N. Testing, Jr.","case_type":null,"cause":null,"ch11_type":null,"chapter":null,"court_code":null,"date_closed":null,"date_discharged":null,"date_filed":"03\/04\/2019","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":null,"is_ok_to_list_publicly":false,"judge_name":null,"jurisdiction":null,"jury_demand":null,"modified":"2019-07-19T17:53:31.239490Z","nature_of_suit_code":null,"petition_type":null,"plan_confirmed":null,"referred_to":null},"creditor_mailing":{"csv":{"filename":"Bankr.D.Or.TRAIN._6-19-bk-60014_creditor_matrix.csv","modified":"2019-07-19T18:00:35.985941Z","text":"[CSV Content]"}},"links":{"menu":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:19-bk-60014"},"screenshot":{"pdf":{"href":"http:\/\/v1.courtapi.com\/source-data\/a7c50539-5bae-4c07-854e-39d817bd896c\/screenshot-redacted.pdf"}},"self":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:19-bk-60014\/creditor_mailing","method":"POST"}},"receipts":{"client_code":"","cost":"0.10","criteria":"19-60014-tmr7","datetime":"Fri Jul 19 11:00:35 2019","description":"List of Creditors","pages":"1","timestamp":"2019-07-19T18:00:34.632529Z","user_id":"irtraining"}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"creditor_mailing":{"properties":{"csv":{"properties":{"filename":{"type":"string"},"modified":{"format":"date-time","type":"string"},"text":{"type":"string"}},"type":"object"},"pdf":{"properties":{"download_url":{"type":"string"},"filename":{"type":"string"},"modified":{"format":"date-time","type":"string"}},"type":"object"}},"type":"object"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category\/>\n    <case_no>6:19-bk-60014<\/case_no>\n    <case_title>Trendy N. Testing, Jr.<\/case_title>\n    <case_type\/>\n    <cause\/>\n    <ch11_type\/>\n    <chapter\/>\n    <court_code\/>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>03\/04\/2019<\/date_filed>\n    <date_of_last_filing\/>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name\/>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2019-07-19T17:53:31.239490Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type\/>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <creditor_mailing>\n    <csv>\n      <filename>Bankr.D.Or.TRAIN._6-19-bk-60014_creditor_matrix.csv<\/filename>\n      <modified>2019-07-19T18:00:35.985941Z<\/modified>\n      <text>[CSV Content]<\/text>\n    <\/csv>\n  <\/creditor_mailing>\n  <links>\n    <menu>\n      <href>http:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:19-bk-60014<\/href>\n    <\/menu>\n    <screenshot>\n      <pdf>\n        <href>http:\/\/v1.courtapi.com\/source-data\/a7c50539-5bae-4c07-854e-39d817bd896c\/screenshot-redacted.pdf<\/href>\n      <\/pdf>\n    <\/screenshot>\n    <self>\n      <href>http:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:19-bk-60014\/creditor_mailing<\/href>\n      <method>POST<\/method>\n    <\/self>\n  <\/links>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>19-60014-tmr7<\/criteria>\n    <datetime>Fri Jul 19 11:00:35 2019<\/datetime>\n    <description>List of Creditors<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-07-19T18:00:34.632529Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Creditor Mailing","tags":["query"],"x-courtapi-resource":"creditor-mailing","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Creditor Mailing update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_creditor_mailing","x-mojo-to":"PACER::Query#pacer_query_creditor_mailing"}},"\/cases\/pacer\/{court_code}\/{case_number}\/creditors":{"get":{"description":"All creditors for case","operationId":"getCreditors","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"civil","case_no":"3:92-cv-30321","case_title":"UNITED STATES v. INTERNATL FIDELITY","case_type":"cv","cause":null,"ch11_type":null,"chapter":null,"court_code":"flndce","date_closed":"04\/11\/1997","date_discharged":null,"date_filed":"08\/25\/1992","date_of_last_filing":"09\/08\/2000","date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":false,"is_ok_to_list_publicly":false,"judge_name":"LACEY A COLLIER","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2022-01-21T04:57:14.362364Z","naics_code":130,"nature_of_debt":"~","nature_of_suit_code":130,"petition_type":null,"plan_confirmed":null,"referred_to":null},"creditors":[{"address":"1234 S. 4th Avenue\nYuma, Arizona 85364","creditor_code":"70259","creditor_role":"cr","modified":"2019-04-29T08:57:04.604091Z","name":"Test Creditor"},{"address":"410 S. Maiden Lane\nYuma, Arizona 85364","creditor_code":"68840","creditor_role":"cr","modified":"2019-04-29T08:57:04.610995Z","name":"Yuma County Treasurer"}],"links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/azbtest\/2:07-bk-00005"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/azbtest\/2:07-bk-00005\/creditors","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/azbtest\/2:07-bk-00005\/creditors"}},"timestamp":"2019-04-29T08:57:04.611000Z"},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"creditors":{"items":{"properties":{"address":{"type":"string"},"creditor_code":{"type":"number"},"creditor_role":{"type":"string"},"modified":{"format":"date-time","type":"string"},"name":{"type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"}},"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{"schema":{"format":"binary","type":"string"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>2:07-bk-00005<\/case_no>\n    <case_title>test inc<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter>11<\/chapter>\n    <court_code>azbtest<\/court_code>\n    <date_closed>01\/03\/1908<\/date_closed>\n    <date_discharged>01\/03\/2008<\/date_discharged>\n    <date_filed>01\/12\/1907<\/date_filed>\n    <date_of_last_filing>07\/27\/2009<\/date_of_last_filing>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>Yes<\/has_asset>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Redfield T. Baum Sr.<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2019-04-29T09:00:41.505130Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type>v<\/petition_type>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <creditors>\n    <address>1234 S. 4th Avenue\nYuma, Arizona 85364<\/address>\n    <creditor_code>70259<\/creditor_code>\n    <creditor_role>cr<\/creditor_role>\n    <modified>2019-04-29T08:57:04.604091Z<\/modified>\n    <name>Test Creditor<\/name>\n  <\/creditors>\n  <creditors>\n    <address>410 S. Maiden Lane\nYuma, Arizona 85364<\/address>\n    <creditor_code>68840<\/creditor_code>\n    <creditor_role>cr<\/creditor_role>\n    <modified>2019-04-29T08:57:04.610995Z<\/modified>\n    <name>Yuma County Treasurer<\/name>\n  <\/creditors>\n  <links>\n    <menu>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/azbtest\/2:07-bk-00005<\/href>\n    <\/menu>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/azbtest\/2:07-bk-00005\/creditors<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/azbtest\/2:07-bk-00005\/creditors<\/href>\n    <\/self>\n  <\/links>\n  <timestamp>2019-04-29T08:57:04.611000Z<\/timestamp>\n<\/result>\n"},"text\/csv":{"example":"Name,Address,Creditor Code,Creditor Role,Modified\n\"Test Creditor\",\"1234 S. 4th Avenue, Yuma, Arizona 85364\",\"70259\",\"cr\",\"2019-04-29T08:57:04.604091Z\"\n\"Yuma County Treasurer\",\"410 S. Maiden Lane, Yuma, Arizona 85364\",\"68840\",\"cr\",\"2019-04-29T08:57:04.610995Z\"\n","schema":{"type":"string"}}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"All creditors for case","tags":["case"],"x-courtapi-resource":"creditors","x-courtapi-source":"local","x-courtdrive-async-desc":"Creditors of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_creditors","x-mojo-to":["PACER::Case#creditors",{},["format",["json","csv","xlsx"]]]},"post":{"description":"PACER Query Case Creditors","operationId":"updateCreditors","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"creditor_type":{"type":"string"},"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":null,"case_chapter_id":3,"case_court_id":221,"case_id_external":460025,"case_no":"3:17-bk-30057","case_petition_id":1,"case_title":"PiclepackingBusiness Picklepuss Steinfieldsmithjon","case_type_id":1,"cause":null,"ch11_type":null,"ch11_type_code":null,"chapter":11,"court":"orbtrain","court_name":"orbtrain","created":"2019-05-01T14:40:05.384459Z","date_closed":null,"date_discharged":null,"date_filed":"11\/22\/2017","date_of_last_filing":"03\/05\/2019","date_plan_confirmed":null,"date_terminated":null,"disabled":0,"disposition":null,"has_asset":1,"is_business_bankruptcy":null,"is_ok_to_list_publicly":false,"judge_name":"Peter C McKittrick","jurisdiction":null,"jury_demand":null,"lead_case_uuid":null,"links":{"self":{"href":"https:\/\/courtapi.com\/cases\/pacer\/orbtrain\/3:17-bk-30057"}},"modified":"2019-05-01T14:40:09.565646Z","nature_of_debt":null,"nature_of_suit_code":null,"ncl_parties":[],"referred_to":null,"schedule_ab":null,"timestamp":"2019-05-01T14:40:09.565650Z","title":"PiclepackingBusiness Picklepuss Steinfieldsmithjon","uri_id":85058472},"creditors":[{"address":"593 West Central Street\nWilmette, IL 63221","creditor_code":"100786416","creditor_role":"cr","name":"American National Bank","party_role":"cr","timestamp":1556721608.06752},{"address":"PO Box 8745\nNew York, NY 10012-8745","creditor_code":"100786417","creditor_role":"cr","name":"Bloomingdales","party_role":"cr","timestamp":1556721608.06752}],"receipts":{"client_code":"","cost":"0.10","criteria":"17-30057-pcm11 Creditor Type: All","datetime":"05\/01\/2019 07:40:09","description":"Creditor List","pages":"1","timestamp":"2019-05-01T14:40:08.067523Z","user_id":"irtraining"}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"creditors":{"items":{"properties":{"address":{"type":"string"},"creditor_code":{"type":"number"},"creditor_role":{"type":"string"},"name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_chapter_id>3<\/case_chapter_id>\n    <case_court_id>221<\/case_court_id>\n    <case_id_external>460025<\/case_id_external>\n    <case_no>3:17-bk-30057<\/case_no>\n    <case_petition_id>1<\/case_petition_id>\n    <case_title>PiclepackingBusiness Picklepuss Steinfieldsmithjon<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <cause\/>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter>11<\/chapter>\n    <court>orbtrain<\/court>\n    <court_name>orbtrain<\/court_name>\n    <created>2019-05-01T14:40:05.384459Z<\/created>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>11\/22\/2017<\/date_filed>\n    <date_of_last_filing>03\/05\/2019<\/date_of_last_filing>\n    <date_plan_confirmed\/>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>1<\/has_asset>\n    <is_business_bankruptcy\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Peter C McKittrick<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <lead_case_uuid\/>\n    <links>\n      <self>\n        <href>https:\/\/courtapi.com\/cases\/pacer\/orbtrain\/3:17-bk-30057<\/href>\n      <\/self>\n    <\/links>\n    <modified>2019-05-01T14:40:09.565646Z<\/modified>\n    <nature_of_debt\/>\n    <nature_of_suit_code\/>\n    <referred_to\/>\n    <schedule_ab\/>\n    <timestamp>2019-05-01T14:40:09.565650Z<\/timestamp>\n    <title>PiclepackingBusiness Picklepuss Steinfieldsmithjon<\/title>\n    <uri_id>85058472<\/uri_id>\n  <\/case>\n  <creditors>\n    <address>593 West Central Street\nWilmette, IL 63221<\/address>\n    <creditor_code>100786416<\/creditor_code>\n    <creditor_role>cr<\/creditor_role>\n    <name>American National Bank<\/name>\n    <party_role>cr<\/party_role>\n    <timestamp>1556721608.06752<\/timestamp>\n  <\/creditors>\n  <creditors>\n    <address>PO Box 8745\nNew York, NY 10012-8745<\/address>\n    <creditor_code>100786417<\/creditor_code>\n    <creditor_role>cr<\/creditor_role>\n    <name>Bloomingdales<\/name>\n    <party_role>cr<\/party_role>\n    <timestamp>1556721608.06752<\/timestamp>\n  <\/creditors>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>17-30057-pcm11 Creditor Type: All<\/criteria>\n    <datetime>05\/01\/2019 07:40:09<\/datetime>\n    <description>Creditor List<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T14:40:08.067523Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Creditors","tags":["query"],"x-courtapi-resource":"creditors","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Creditors update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_creditors","x-mojo-to":"PACER::Query#pacer_query_creditors"}},"\/cases\/pacer\/{court_code}\/{case_number}\/dockets":{"get":{"description":"Case Dockets from Local DB","operationId":"getDockets","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"},"style":"simple"},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"style":"simple","x-mojo-placeholder":"#"},{"in":"query","name":"search_keyword","schema":{"type":"string"}},{"description":"Filed From Date (MM\/DD\/YYYY)","in":"query","name":"date_filed_from","schema":{"type":"string"}},{"description":"Filed To Date (MM\/DD\/YYYY)","in":"query","name":"date_filed_to","schema":{"type":"string"}},{"in":"query","name":"docket_number_from","schema":{"type":"integer"}},{"in":"query","name":"docket_number_to","schema":{"type":"integer"}},{"in":"query","name":"docket_number_range","schema":{"pattern":"^[0-9-,]+$","type":"string"}},{"description":"Include `docket_gaps` key with known docket number gaps in the docket","in":"query","name":"include_gaps","schema":{"type":"boolean"}},{"description":"Include document binders (default is to include binders)","in":"query","name":"include_binders","schema":{"type":"boolean"}},{"description":"Include the `header.html` content in the response.  Default is `true`.  If `false` is given, the `header.html` will be `null` in the response.  This can be useful in reducing the size of the response payload because the docket header html could be quite large in some cases.\n","in":"query","name":"include_docket_header_html","schema":{"type":"boolean"}},{"description":"Preserve image tags in the docket entry text","in":"query","name":"keep_images","schema":{"type":"boolean"}},{"in":"query","name":"sort_column","schema":{"enum":["text_html","number","sequence_number","date_filed"],"type":"string"},"style":"form"},{"in":"query","name":"sort_order","schema":{"enum":["asc","desc"],"type":"string"},"style":"form"},{"in":"query","name":"page_size","schema":{"minimum":1,"type":"integer"},"style":"form"},{"in":"query","name":"page_number","schema":{"minimum":1,"type":"integer"}}],"responses":{"200":{"content":{"application\/json":{"example":{"docket_gaps":[{"gap_end":4,"gap_start":3,"next_date_filed":"02\/06\/2020","prev_date_filed":"01\/22\/2020"}],"entries":{"content":[{"annotations":[],"binder":{"documents":[],"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/1.00000\/documents","method":"POST"}}},"date_filed":"01\/08\/2019","docket_no":null,"docket_seq":"1.00000","docket_text":"Not Conflicting docket","has_pdf_link_on_pacer":null,"timestamp":"2019-04-29T08:58:23.984700Z"},{"annotations":[],"binder":{"documents":[],"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/82.00001\/documents","method":"POST"}}},"date_filed":"01\/08\/2019","docket_no":null,"docket_seq":"82.00001","docket_text":"Conflicting docket","has_pdf_link_on_pacer":null,"timestamp":"2019-04-29T08:58:23.923730Z"}],"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets?page_size=500&page_number=1"}},"page_size":500,"total_items":2,"total_pages":1},"header":{"attorneys":[],"header_html_timestamp":"2019-04-29T08:58:23Z","html":"Fake Docket Header","is_header_html_valid":1,"latest_docket_number":null,"latest_history_number":null,"latest_known_date_filed":"01\/08\/2019","modified":"2019-04-29T08:58:23.978560Z","trustees":[]},"links":{"header":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/header"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/update","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets"}}},"schema":{"properties":{"docket_gaps":{"items":{"properties":{"gap_end":{"type":"integer"},"gap_start":{"type":"integer"},"next_date_filed":{"type":"string"},"prev_date_filed":{"type":"string"}},"type":"object"},"type":"array"},"entries":{"properties":{"content":{"items":{"properties":{"annotations":{"items":{"type":"string"},"type":"array"},"binder":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"integer"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"friendly_name":{"type":"string"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"},"date_filed":{"type":"string"},"docket_display_number":{"type":"string"},"docket_no":{"type":"integer"},"docket_seq":{"type":"number"},"docket_text":{"type":"string"},"has_pdf_link_on_pacer":{"type":"boolean"},"links":{"properties":{"documents":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"page_size":{"type":"integer"},"total_items":{"type":"integer"},"total_pages":{"type":"integer"}},"type":"object"},"header":{"properties":{"assigned_to":{"type":"string"},"attorneys":{"items":{"properties":{"associated":{"items":{"properties":{"address":{"type":"string"},"name":{"type":"string"},"role":{"type":"string"},"ssn":{"type":"string"}},"type":"object"},"type":"array"},"attorney":{"properties":{"address":{"type":"string"},"email":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"}},"type":"object"}},"type":"object"},"type":"array"},"chapter":{"type":"string"},"date_debtor_discharged":{"type":"string"},"date_filed":{"type":"string"},"has_asset":{"type":"boolean"},"header_html_timestamp":{"format":"date-time","type":"string"},"html":{"type":"string"},"is_header_html_valid":{"type":"boolean"},"latest_docket_number":{"type":"integer"},"latest_history_number":{"type":"integer"},"latest_known_date_filed":{"type":"string"},"meeting_341":{"type":"string"},"modified":{"format":"date-time","type":"string"},"trustees":{"items":{"properties":{"address":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"},"terminated_date":{"type":"string"}},"type":"object"},"type":"array"},"voluntary":{"type":"boolean"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <entries>\n    <content>\n      <binder>\n        <links>\n          <pacer-update>\n            <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/1.00000\/documents<\/href>\n            <method>POST<\/method>\n          <\/pacer-update>\n        <\/links>\n      <\/binder>\n      <date_filed>01\/08\/2019<\/date_filed>\n      <docket_no\/>\n      <docket_seq>1.00000<\/docket_seq>\n      <docket_text>Not Conflicting docket<\/docket_text>\n      <has_pdf_link_on_pacer>0<\/has_pdf_link_on_pacer>\n      <timestamp>2019-04-29T08:58:23.984700Z<\/timestamp>\n    <\/content>\n    <content>\n      <binder>\n        <links>\n          <pacer-update>\n            <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/82.00001\/documents<\/href>\n            <method>POST<\/method>\n          <\/pacer-update>\n        <\/links>\n      <\/binder>\n      <date_filed>01\/08\/2019<\/date_filed>\n      <docket_no\/>\n      <docket_seq>82.00001<\/docket_seq>\n      <docket_text>Conflicting docket<\/docket_text>\n      <has_pdf_link_on_pacer>0<\/has_pdf_link_on_pacer>\n      <timestamp>2019-04-29T08:58:23.923730Z<\/timestamp>\n    <\/content>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets?page_size=500&amp;page_number=1<\/href>\n      <\/self>\n    <\/links>\n    <page_size>500<\/page_size>\n    <total_items>2<\/total_items>\n    <total_pages>1<\/total_pages>\n  <\/entries>\n  <header>\n    <header_html_timestamp>2019-04-29T08:58:23Z<\/header_html_timestamp>\n    <html>Fake Docket Header<\/html>\n    <is_header_html_valid>1<\/is_header_html_valid>\n    <latest_docket_number\/>\n    <latest_history_number\/>\n    <latest_known_date_filed>01\/08\/2019<\/latest_known_date_filed>\n    <modified>2019-04-29T08:58:23.978560Z<\/modified>\n  <\/header>\n  <links>\n    <header>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/header<\/href>\n    <\/header>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/update<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"Dockets Entries from Local DB"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Case Dockets from Local DB","tags":["case"],"x-courtapi-resource":"dockets","x-courtapi-source":"local","x-courtdrive-async-desc":"Dockets for {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_dockets","x-mojo-to":"PACER::Case::Docket#docket_search"}},"\/cases\/pacer\/{court_code}\/{case_number}\/dockets\/header":{"get":{"description":"Case Dockets Header","operationId":"getDocketHeader","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_no":"1:18-bk-10324","case_title":"Bob Debtor","case_type":"bk","cause":null,"ch11_type":null,"chapter":13,"court_code":"orbtrain","date_closed":null,"date_discharged":null,"date_filed":null,"date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":null,"judge_name":null,"jurisdiction":null,"jury_demand":null,"modified":"2019-04-29T08:58:23.978560Z","nature_of_suit_code":null,"petition_type":null,"plan_confirmed":null,"referred_to":null},"header":{"attorneys":[],"header_html_timestamp":"2019-04-29T08:58:23Z","html":"Fake Docket Header","is_header_html_valid":1,"latest_docket_number":null,"latest_history_number":null,"latest_known_date_filed":"01\/08\/2019","modified":"2019-04-29T08:58:23.978560Z","trustees":[]}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"header":{"properties":{"assigned_to":{"type":"string"},"attorneys":{"items":{"properties":{"associated":{"items":{"properties":{"address":{"type":"string"},"name":{"type":"string"},"role":{"type":"string"},"ssn":{"type":"string"}},"type":"object"},"type":"array"},"attorney":{"properties":{"address":{"type":"string"},"email":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"}},"type":"object"}},"type":"object"},"type":"array"},"chapter":{"type":"string"},"date_debtor_discharged":{"type":"string"},"date_filed":{"type":"string"},"has_asset":{"type":"boolean"},"header_html_timestamp":{"format":"date-time","type":"string"},"html":{"type":"string"},"is_header_html_valid":{"type":"boolean"},"latest_docket_number":{"type":"integer"},"latest_history_number":{"type":"integer"},"latest_known_date_filed":{"type":"string"},"meeting_341":{"type":"string"},"modified":{"format":"date-time","type":"string"},"trustees":{"items":{"properties":{"address":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"},"terminated_date":{"type":"string"}},"type":"object"},"type":"array"},"voluntary":{"type":"boolean"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_no>1:18-bk-10324<\/case_no>\n    <case_title>Bob Debtor<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter>13<\/chapter>\n    <court_code>orbtrain<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed\/>\n    <date_of_last_filing\/>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset\/>\n    <judge_name\/>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2019-04-29T08:58:23.978560Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type\/>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <header>\n    <header_html_timestamp>2019-04-29T08:58:23Z<\/header_html_timestamp>\n    <html>Fake Docket Header<\/html>\n    <is_header_html_valid>1<\/is_header_html_valid>\n    <latest_docket_number\/>\n    <latest_history_number\/>\n    <latest_known_date_filed>01\/08\/2019<\/latest_known_date_filed>\n    <modified>2019-04-29T08:58:23.978560Z<\/modified>\n  <\/header>\n<\/result>\n"}},"description":"Dockets Header"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Case Dockets Header","tags":["case"],"x-courtapi-resource":"dockets-header","x-courtapi-source":"local","x-courtdrive-async-desc":"Docket header of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_dockets_header","x-mojo-to":"PACER::Case::Docket#header"}},"\/cases\/pacer\/{court_code}\/{case_number}\/dockets\/search":{"get":{"description":"Searches for matching docket entries within a single case using ElasticSearch\n","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"in":"query","name":"search_keyword","schema":{"type":"string"}},{"description":"Also search within PDF content. Default is to only search within docket text.","in":"query","name":"search_pdfs","schema":{"enum":["include","limit"],"type":"string"}},{"description":"Filed From Date (MM\/DD\/YYYY)","in":"query","name":"date_filed_from","schema":{"pattern":"^\\d{2}\/\\d{2}\/\\d{4}$","type":"string"}},{"description":"Filed To Date (MM\/DD\/YYYY)","in":"query","name":"date_filed_to","schema":{"pattern":"^\\d{2}\/\\d{2}\/\\d{4}$","type":"string"}},{"in":"query","name":"docket_number_range","schema":{"pattern":"^[0-9-, ]+$","type":"string"}},{"description":"Include document binders (default is to include binders)","in":"query","name":"include_binders","schema":{"type":"boolean"}},{"description":"Include the case header in the response (default is to include the header)","in":"query","name":"include_case_header","schema":{"type":"boolean"}},{"description":"Preserve image tags in the docket entry text","in":"query","name":"keep_images","schema":{"type":"boolean"}},{"description":"The page number of results to return","in":"query","name":"page_number","schema":{"minimum":1,"type":"integer"}},{"description":"Number of results per page to return.","in":"query","name":"page_size","schema":{"maximum":10000,"minimum":1,"type":"integer"}},{"in":"query","name":"sort_column","schema":{"enum":["date_filed","number"],"type":"string"}},{"in":"query","name":"sort_order","schema":{"enum":["asc","desc"],"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":"~","case_category":"bankruptcy","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":"~","ch11_type":"~","chapter":11,"court_code":"nysbke","date_closed":"~","date_discharged":"~","date_filed":"03\/10\/2014","date_of_last_filing":"~","date_terminated":"~","disposition":"~","has_asset":"No","judge_name":"Martin Glenn","jurisdiction":"~","jury_demand":"~","modified":"2017-07-09T05:13:32.653406Z","nature_of_debt":"Business","nature_of_suit_code":"~","petition_type":"v","plan_confirmed":"~","referred_to":"~"},"entries":{"content":[{"annotations":[],"binder":{"documents":[{"cost":0.1,"description_html":"Main Document","docket_no":369,"download_cost":0,"filename":"Bankr.S.D.N.Y._1-14-bk-10557_369.pdf","free":"~","friendly_name":"Bankr.S.D.N.Y._1-14-bk-10557_369.pdf","is_cached":true,"links":{"order_pdf":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/dockets\/369.00000\/documents\/1"}},"number":1,"pages":1}],"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/dockets\/369.00000\/documents","method":"POST"}}},"date_filed":"04\/01\/2015","docket_no":369,"docket_seq":369,"docket_text":"Letter<i>Re: <span class=\"highlight\">Motion<\/span> to Lift Stay<\/i>Filed by 22 West 34th Street, LLC, Sol Goldman Investments, LLC. (Cantrell, Deirdra) (Entered: 04\/01\/2015)","has_pdf_link_on_pacer":true,"links":{"documents":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/dockets\/369.00000\/documents"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/dockets\/369.00000"}},"timestamp":"2021-02-19T22:23:09Z"}],"links":{"first":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/dockets\/search?search_keyword=Motion&page_number=1&page_size=1"},"last":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/dockets\/search?search_keyword=Motion&page_number=87&page_size=1"},"next":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/dockets\/search?search_keyword=Motion&page_number=3&page_size=1"},"previous":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/dockets\/search?search_keyword=Motion&page_number=1&page_size=1"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/dockets\/search?search_keyword=Motion&page_number=2&page_size=1"}},"page_size":1,"total_items":87,"total_pages":87},"links":{"header":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/dockets\/header"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/dockets\/update","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\/dockets\/search?search_keyword=Motion&page_number=2&page_size=1"}}},"schema":{"properties":{"case":{"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"entries":{"properties":{"content":{"items":{"properties":{"annotations":{"items":{"type":"string"},"type":"array"},"binder":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"integer"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"friendly_name":{"type":"string"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"},"date_filed":{"type":"string"},"docket_no":{"type":"integer"},"docket_seq":{"type":"number"},"docket_text":{"type":"string"},"links":{"properties":{"documents":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"page_size":{"type":"integer"},"total_items":{"type":"integer"},"total_pages":{"type":"integer"}},"type":"object"},"links":{"properties":{"header":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}}},"description":"OK"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Search single case dockets from ElasticSearch","tags":["case"],"x-courtapi-resource":"dockets","x-courtapi-source":"local","x-courtdrive-async-desc":"Docket search for {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_dockets_search","x-mojo-to":"PACER::Case::Docket#es_docket_search"}},"\/cases\/pacer\/{court_code}\/{case_number}\/dockets\/update":{"post":{"description":"PACER Query Case Dockets","operationId":"updateDockets","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/json":{"schema":{"properties":{"date_from":{"description":"Date From (MM\/DD\/YYYY)","pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"},"date_to":{"description":"Date To (MM\/DD\/YYYY)","pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"},"doc_from":{"description":"Minimum Docket Number. _Note: PACER will not return non-numbered entries if this is specified_","type":"integer"},"doc_to":{"description":"Maximum Docket Number. _Note: PACER will not return non-numbered entries if this is specified_","minimum":1,"type":"integer"},"include_documents":{"type":"boolean"},"include_gaps":{"description":"Include `docket_gaps` key with known docket number gaps in the docket","type":"boolean"},"keep_images":{"description":"Preserve image tags in the docket entry text","type":"boolean"},"minimize_header":{"type":"boolean"},"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}},"application\/x-www-form-urlencoded":{"schema":{"properties":{"date_from":{"description":"Date From (MM\/DD\/YYYY)","pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"},"date_to":{"description":"Date To (MM\/DD\/YYYY)","pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"},"doc_from":{"description":"Minimum Docket Number. _Note: PACER will not return non-numbered entries if this is specified_","type":"integer"},"doc_to":{"description":"Maximum Docket Number. _Note: PACER will not return non-numbered entries if this is specified_","minimum":1,"type":"integer"},"include_documents":{"type":"boolean"},"include_gaps":{"description":"Include `docket_gaps` key with known docket number gaps in the docket","type":"boolean"},"keep_images":{"description":"Preserve image tags in the docket entry text","type":"boolean"},"minimize_header":{"type":"boolean"},"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":"Ann D. Montgomery","case_chapter_id":null,"case_court_id":212,"case_id_external":7523,"case_no":"0:01-cv-00200","case_petition_id":null,"case_title":"Parker v. Smith","case_type_id":1,"cause":"30:1202 Mining Reclamation Act","ch11_type":null,"ch11_type_code":null,"chapter":null,"court":"mndtrain","court_name":"mndtrain","created":"2019-05-01T15:30:41.827068Z","date_closed":null,"date_discharged":null,"date_filed":"01\/03\/2005","date_of_last_filing":null,"date_plan_confirmed":null,"date_terminated":null,"disabled":0,"disposition":null,"has_asset":0,"is_business_bankruptcy":null,"judge_name":"Ann D. Montgomery, presiding","jurisdiction":"Federal Question","jury_demand":"Defendant","lead_case_uuid":null,"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200"}},"modified":"2019-05-01T15:54:58.490012Z","nature_of_debt":null,"nature_of_suit_code":190,"ncl_parties":[],"referred_to":"Magistrate Judge Arthur J Boylan","schedule_ab":null,"timestamp":"2019-05-01T15:54:58.490010Z","title":"Parker v. Smith","uri_id":85058500},"docket_gaps":[{"gap_end":4,"gap_start":3,"next_date_filed":"02\/06\/2020","prev_date_filed":"01\/22\/2020"}],"dockets":[{"annotations":[],"date_filed":"01\/04\/2001","docket_no":1,"docket_seq":0,"docket_text":"<span style='background: '>COMPLAINT against Tom Smith (Filing fee &#036; 350) , filed by John Parker. Assigned to Judge Ann D. Montgomery and referred to Magisrate Judge Arthur J. Boylan. (Attachments: # 1 Civil Cover Sheet)(JE) (Entered: 01\/04\/2005)","has_pdf_link_on_pacer":true,"links":{"documents":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/dockets\/1.00000\/documents"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/dockets\/1.00000"}},"sequence_number":"1.00000","timestamp":"2019-05-01T15:54:56.492519Z","title":"<span style='background: '>COMPLAINT against Tom Smith (Filing fee &#036; 350) , filed by John Parker. Assigned to Judge Ann D. Montgomery and referred to Magisrate Judge Arthur J. Boylan. (Attachments: # 1 Civil Cover Sheet)(JE) (Entered: 01\/04\/2005)"}],"links":{"screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf"}}},"receipts":{"client_code":"","cost":"0.30","criteria":"0:01-cv-00200-ADM-AJB Starting with document: 1 Ending with document: 1","datetime":"05\/01\/2019 10:54:58","description":"Docket Report","pages":"3","timestamp":"2019-05-01T15:54:56.492519Z","user_id":"irtraining"}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"docket_gaps":{"items":{"properties":{"gap_end":{"type":"integer"},"gap_start":{"type":"integer"},"next_date_filed":{"type":"string"},"prev_date_filed":{"type":"string"}},"type":"object"},"type":"array"},"dockets":{"items":{"properties":{"date_filed":{"type":"string"},"docket_no":{"type":"integer"},"docket_seq":{"type":"number"},"docket_text":{"type":"string"},"filename":{"type":"string"},"has_pdf_link_on_pacer":{"type":"boolean"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to>Ann D. Montgomery<\/assigned_to>\n    <case_chapter_id\/>\n    <case_court_id>212<\/case_court_id>\n    <case_id_external>7523<\/case_id_external>\n    <case_no>0:01-cv-00200<\/case_no>\n    <case_petition_id\/>\n    <case_title>Parker v. Smith<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <cause>30:1202 Mining Reclamation Act<\/cause>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter\/>\n    <court>mndtrain<\/court>\n    <court_name>mndtrain<\/court_name>\n    <created>2019-05-01T15:30:41.827068Z<\/created>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>01\/03\/2005<\/date_filed>\n    <date_of_last_filing\/>\n    <date_plan_confirmed\/>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>0<\/has_asset>\n    <is_business_bankruptcy\/>\n    <judge_name>Ann D. Montgomery, presiding<\/judge_name>\n    <jurisdiction>Federal Question<\/jurisdiction>\n    <jury_demand>Defendant<\/jury_demand>\n    <lead_case_uuid\/>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200<\/href>\n      <\/self>\n    <\/links>\n    <modified>2019-05-01T15:54:58.490012Z<\/modified>\n    <nature_of_debt\/>\n    <nature_of_suit_code>190<\/nature_of_suit_code>\n    <referred_to>Magistrate Judge Arthur J Boylan<\/referred_to>\n    <schedule_ab\/>\n    <timestamp>2019-05-01T15:54:58.490010Z<\/timestamp>\n    <title>Parker v. Smith<\/title>\n    <uri_id>85058500<\/uri_id>\n  <\/case>\n  <dockets>\n    <date_filed>01\/04\/2001<\/date_filed>\n    <docket_no>1<\/docket_no>\n    <docket_seq>0<\/docket_seq>\n    <docket_text>&lt;span style='background: '&gt;COMPLAINT against Tom Smith (Filing fee &amp;#036; 350) , filed by John Parker. Assigned to Judge Ann D. Montgomery and referred to Magisrate Judge Arthur J. Boylan. (Attachments: # 1 Civil Cover Sheet)(JE) (Entered: 01\/04\/2005)<\/docket_text>\n    <has_pdf_link_on_pacer>1<\/has_pdf_link_on_pacer>\n    <links>\n      <documents>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/dockets\/1.00000\/documents<\/href>\n      <\/documents>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/dockets\/1.00000<\/href>\n      <\/self>\n    <\/links>\n    <sequence_number>1.00000<\/sequence_number>\n    <timestamp>2019-05-01T15:54:56.492519Z<\/timestamp>\n    <title>&lt;span style='background: '&gt;COMPLAINT against Tom Smith (Filing fee &amp;#036; 350) , filed by John Parker. Assigned to Judge Ann D. Montgomery and referred to Magisrate Judge Arthur J. Boylan. (Attachments: # 1 Civil Cover Sheet)(JE) (Entered: 01\/04\/2005)<\/title>\n  <\/dockets>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.30<\/cost>\n    <criteria>0:01-cv-00200-ADM-AJB Starting with document: 1 Ending with document: 1<\/criteria>\n    <datetime>05\/01\/2019 10:54:58<\/datetime>\n    <description>Docket Report<\/description>\n    <pages>3<\/pages>\n    <timestamp>2019-05-01T15:54:56.492519Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Dockets","tags":["query"],"x-courtapi-resource":"dockets","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Dockets update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_dockets","x-mojo-to":"PACER::Query#pacer_query_dockets"}},"\/cases\/pacer\/{court_code}\/{case_number}\/dockets\/{docket_no}":{"get":{"description":"Case Dockets Entry","operationId":"getDocketEntry","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"Docket Sequence Number","in":"path","name":"docket_no","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"Preserve image tags in the docket entry text","in":"query","name":"keep_images","schema":{"type":"boolean"}}],"responses":{"200":{"content":{"application\/json":{"example":{"entry":{"action":null,"annotations":[],"binder":{"documents":[],"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/1.00000\/documents","method":"POST"}}},"case_docket_entry_id":81276491,"date_filed":"01\/08\/2019","docket_no":null,"docket_seq":"1.00000","docket_text":"Not Conflicting docket","has_pdf_link_on_pacer":false,"timestamp":"2019-04-29T08:58:23.984700Z"},"links":{"header":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/header"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/update","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/1"}}},"schema":{"properties":{"entry":{"properties":{"action":{"type":"string"},"annotations":{"items":{"type":"string"},"type":"array"},"binder":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"integer"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"friendly_name":{"type":"string"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"},"date_filed":{"type":"string"},"docket_no":{"type":"integer"},"docket_seq":{"type":"number"},"docket_text":{"type":"string"},"links":{"properties":{"documents":{"properties":{"href":{"type":"string"},"method":{"enum":["DELETE","GET","PATCH","POST","PUT"],"type":"string"}},"required":["href"],"type":"object"},"self":{"properties":{"href":{"type":"string"},"method":{"enum":["DELETE","GET","PATCH","POST","PUT"],"type":"string"}},"required":["href"],"type":"object"}},"type":"object"},"timestamp":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <entry>\n    <action\/>\n    <binder>\n      <links>\n        <pacer-update>\n          <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/1.00000\/documents<\/href>\n          <method>POST<\/method>\n        <\/pacer-update>\n      <\/links>\n    <\/binder>\n    <case_docket_entry_id>81276491<\/case_docket_entry_id>\n    <date_filed>01\/08\/2019<\/date_filed>\n    <docket_no\/>\n    <docket_seq>1.00000<\/docket_seq>\n    <docket_text>Not Conflicting docket<\/docket_text>\n    <has_pdf_link_on_pacer>0<\/has_pdf_link_on_pacer>\n    <timestamp>2019-04-29T08:58:23.984700Z<\/timestamp>\n  <\/entry>\n  <links>\n    <header>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/header<\/href>\n    <\/header>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/update<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:18-bk-10324\/dockets\/1<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"Docket Entry"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"error":{"properties":{"detail":{"type":"string"},"status":{"type":"integer"}},"type":"object"},"links":{"properties":{"header":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}}},"description":"Docket Entry Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Case Dockets Entry","tags":["case"],"x-courtapi-resource":"docket","x-courtapi-source":"local","x-courtdrive-async-desc":"Docket entry {{docket_no}} of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_dockets_entry","x-mojo-to":"PACER::Case::Docket#entry"}},"\/cases\/pacer\/{court_code}\/{case_number}\/dockets\/{docket_no}\/documents":{"get":{"description":"Docket Entry Document Parts","operationId":"getDocketDocuments","parameters":[{"description":"If true, update document information from PACER if necessary","in":"query","name":"auto_update","schema":{"type":"boolean"}}],"responses":{"200":{"content":{"application\/json":{"example":{"documents":[{"cost":"1.90","description_html":null,"docket_no":1,"download_cost":"1.90","filename":null,"free":0,"friendly_name":null,"is_cached":false,"links":{"order_pdf":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:08-bk-13555\/dockets\/1\/documents\/1","method":"POST"}},"number":1,"pages":19}],"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:08-bk-13555\/dockets\/1\/documents","method":"POST"}}},"schema":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"integer"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"friendly_name":{"type":"string"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <documents>\n    <cost>1.90<\/cost>\n    <description_html\/>\n    <docket_no>1<\/docket_no>\n    <download_cost>1.90<\/download_cost>\n    <filename\/>\n    <free>0<\/free>\n    <friendly_name\/>\n    <is_cached>0<\/is_cached>\n    <links>\n      <order_pdf>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:08-bk-13555\/dockets\/1\/documents\/1<\/href>\n        <method>POST<\/method>\n      <\/order_pdf>\n    <\/links>\n    <number>1<\/number>\n    <pages>19<\/pages>\n  <\/documents>\n  <links>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:08-bk-13555\/dockets\/1\/documents<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n  <\/links>\n<\/result>\n"}},"description":"Docket Entry Documents"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"DocumentSelect Documents","tags":["case"],"x-courtapi-resource":"documents","x-courtapi-source":"local","x-courtdrive-async-desc":"List docket entry documents {{court_code}}\/{{case_number}} docket entry {{docket_no}}","x-mojo-name":"localdb_case_documentselect_docselect","x-mojo-to":["PACER::DocumentSelect#docselect",{"cached":1}]},"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"Docket Entry Number","in":"path","name":"docket_no","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"post":{"description":"Purchase Docket Entry Document Parts from PACER","operationId":"updateDocketDocuments","parameters":[{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"examples":{"documents":{"summary":"Document parts returned","value":{"documents":[{"cost":"0.20","description_html":null,"docket_no":2,"download_cost":"0.20","filename":null,"free":null,"friendly_name":null,"is_cached":false,"links":{"order_pdf":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/dockets\/2\/documents\/1","method":"POST"}},"number":1,"pages":2}],"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/dockets\/2\/documents","method":"POST"}}}},"inaccessible":{"summary":"PACER reports the document is inaccessible","value":{"documents":[],"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/txwdce\/5:26-cv-00720\/dockets\/1\/documents","method":"POST"}},"service_link":"https:\/\/ecf.txwd.uscourts.gov\/doc1\/181035825525","service_message":"You do not have permission to view this document."}}},"schema":{"properties":{"documents":{"items":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"integer"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"friendly_name":{"type":"string"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"type":"array"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"service_link":{"description":"Direct PACER URL for the document (e.g. so a filer can access it from PACER). Only present when PACER returned an inaccessible-document message.","type":"string"},"service_message":{"description":"Message returned by PACER when documents are unavailable (e.g. sealed or inaccessible). Only present when PACER returned such a message.","type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <documents>\n    <cost>0.20<\/cost>\n    <description_html\/>\n    <docket_no>2<\/docket_no>\n    <download_cost>0.20<\/download_cost>\n    <filename\/>\n    <free\/>\n    <friendly_name\/>\n    <is_cached>0<\/is_cached>\n    <links>\n      <order_pdf>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/dockets\/2\/documents\/1<\/href>\n        <method>POST<\/method>\n      <\/order_pdf>\n    <\/links>\n    <number>1<\/number>\n    <pages>2<\/pages>\n  <\/documents>\n  <links>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/dockets\/2\/documents<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n  <\/links>\n<\/result>\n"}},"description":"Docket Entry Documents. When PACER indicates the document is sealed or inaccessible (e.g. \"You do not have permission to view this document.\"),\n`documents` will be empty and the response will also include `service_message` (the message returned by PACER) and `service_link`\n(a direct PACER URL the user can navigate to with a filer account).\n"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER DocumentSelect Documents","tags":["query"],"x-courtapi-resource":"documents","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Update docket document listing for {{court_code}}\/{{case_number}} entry {{docket_no}}","x-mojo-name":"pacer_case_documentselect_docselect","x-mojo-to":["PACER::DocumentSelect#docselect",{"cached":0}]}},"\/cases\/pacer\/{court_code}\/{case_number}\/dockets\/{docket_no}\/documents\/{part_no}":{"get":{"description":"Order Docket Entry documents","operationId":"getDocketDocument","parameters":[{"in":"query","name":"disposition","schema":{"enum":["download","preview"],"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"document":{"cost":"1.90","description_html":null,"docket_no":"1","download_cost":"1.90","filename":"Bankr.S.D.N.Y._1-08-bk-13555_1.pdf","free":0,"friendly_name":"Bankr.S.D.N.Y._1-08-bk-13555_1.pdf","is_cached":false,"number":1,"pages":19},"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:08-bk-13555\/dockets\/1\/documents\/1","method":"POST"}},"origin":"cache"},"schema":{"properties":{"document":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"integer"},"download_cost":{"type":"string"},"filename":{"type":"string"},"free":{"type":"boolean"},"friendly_name":{"type":"string"},"links":{"properties":{"order_pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["GET","POST"],"type":"string"}},"type":"object"}},"type":"object"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"origin":{"enum":["pacer","cache"],"type":"string"},"status":{"enum":["success","fail"],"type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <document>\n    <cost>1.90<\/cost>\n    <description_html\/>\n    <docket_no>1<\/docket_no>\n    <download_cost>1.90<\/download_cost>\n    <filename>Bankr.S.D.N.Y._1-08-bk-13555_1.pdf<\/filename>\n    <free>0<\/free>\n    <friendly_name>Bankr.S.D.N.Y._1-08-bk-13555_1.pdf<\/friendly_name>\n    <is_cached>0<\/is_cached>\n    <number>1<\/number>\n    <pages>19<\/pages>\n  <\/document>\n  <links>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:08-bk-13555\/dockets\/1\/documents\/1<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n  <\/links>\n  <origin>cache<\/origin>\n<\/result>\n"}},"description":"Docket Entry document download link"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"DocketSelect Order PDF","tags":["case"],"x-courtapi-resource":"document","x-courtapi-source":"local","x-courtdrive-async-desc":"Get docket PDF document for {{court_code}}\/{{case_number}} entry {{docket_no}} part {{part_no}}","x-mojo-name":"localdb_case_documentselect_order_pdf","x-mojo-to":["PACER::DocumentSelect#order_pdf",{"cached":1},["format",["json","pdf"]]]},"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"Docket Entry Number","in":"path","name":"docket_no","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"Document part number","in":"path","name":"part_no","required":true,"schema":{"type":"string"}}],"post":{"description":"Purchase Order Docket Entry Document From PACER;","operationId":"buyDocketDocument","parameters":[{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"document":{"cost":"0.20","description_html":"Main","docket_no":"5","download_cost":"0.00","download_url":"https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/documents\/docket\/download\/eyJjYXNlX3V1aWQiOiJtbmR0cmFpbl83NTIzIiwiZXBvY2giOjE1NTY3MjY2MTQsImlkIjoiYmUyNjRiYjYtY2EzYy00NTcwLWI2OWYtNjdjOWZiYjYyZGRhIiwicGFydF9ubyI6IjEiLCJzZXF1ZW5jZSI6IjUiLCJ0eXBlIjoiZG9ja2V0In0\/adfe43be61d3cfc19485a37669a6a5ca051cda9116252800aa594821a055c58b","filename":"Dist.D.Minn.TRAIN._0-01-cv-00200_5.pdf","free":null,"friendly_name":"Dist.D.Minn.TRAIN._0-01-cv-00200_5.pdf","is_cached":true,"number":1,"ocr_link":"https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/documents\/docket\/download\/eyJjYXNlX3V1aWQiOiJtbmR0cmFpbl83NTIzIiwiZXBvY2giOjE1NTY3MjY2MTQsImlkIjoiMWUxYTBlMjEtYmUwMS00YjBmLWE0YWUtZTNmNTg4MDc2NjBhIiwicGFydF9ubyI6IjEiLCJzZXF1ZW5jZSI6IjUiLCJ0eXBlIjoib2NyIn0\/04028f335d1db050811a1296a8f9400ea5c1d8fd43d87afab0c0e4c10e7f6a40","pages":2},"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/dockets\/5\/documents\/1","method":"POST"}},"origin":"PACER","receipt":{"client_code":"","cost":"0.20","criteria":"0:01-cv-00200-ADM-AJB","datetime":"Wed May 1 11:03:30 2019","description":"Image5-0","pages":"2","timestamp":null,"user_id":"irtraining"}}},"application\/xml":{"example":"<result>\n  <document>\n    <cost>0.20<\/cost>\n    <description_html>Main<\/description_html>\n    <docket_no>5<\/docket_no>\n    <download_cost>0.00<\/download_cost>\n    <download_url>https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/documents\/docket\/download\/eyJjYXNlX3V1aWQiOiJtbmR0cmFpbl83NTIzIiwiZXBvY2giOjE1NTY3MjY2MTQsImlkIjoiYmUyNjRiYjYtY2EzYy00NTcwLWI2OWYtNjdjOWZiYjYyZGRhIiwicGFydF9ubyI6IjEiLCJzZXF1ZW5jZSI6IjUiLCJ0eXBlIjoiZG9ja2V0In0\/adfe43be61d3cfc19485a37669a6a5ca051cda9116252800aa594821a055c58b<\/download_url>\n    <filename>Dist.D.Minn.TRAIN._0-01-cv-00200_5.pdf<\/filename>\n    <free\/>\n    <friendly_name>Dist.D.Minn.TRAIN._0-01-cv-00200_5.pdf<\/friendly_name>\n    <is_cached>1<\/is_cached>\n    <number>1<\/number>\n    <ocr_link>https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/documents\/docket\/download\/eyJjYXNlX3V1aWQiOiJtbmR0cmFpbl83NTIzIiwiZXBvY2giOjE1NTY3MjY2MTQsImlkIjoiMWUxYTBlMjEtYmUwMS00YjBmLWE0YWUtZTNmNTg4MDc2NjBhIiwicGFydF9ubyI6IjEiLCJzZXF1ZW5jZSI6IjUiLCJ0eXBlIjoib2NyIn0\/04028f335d1db050811a1296a8f9400ea5c1d8fd43d87afab0c0e4c10e7f6a40<\/ocr_link>\n    <pages>2<\/pages>\n  <\/document>\n  <links>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:01-cv-00200\/dockets\/5\/documents\/1<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n  <\/links>\n  <origin>PACER<\/origin>\n  <receipt>\n    <client_code><\/client_code>\n    <cost>0.20<\/cost>\n    <criteria>0:01-cv-00200-ADM-AJB<\/criteria>\n    <datetime>Wed May 1 11:03:30 2019<\/datetime>\n    <description>Image5-0<\/description>\n    <pages>2<\/pages>\n    <timestamp\/>\n    <user_id>irtraining<\/user_id>\n  <\/receipt>\n<\/result>\n"}},"description":"Docket Entry document download link"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER DocketSelect Order PDF","tags":["query"],"x-courtapi-resource":"document","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Purchase docket PDF document for {{court_code}}\/{{case_number}} entry {{docket_no}} part {{part_no}}","x-mojo-name":"pacer_case_documentselect_order_pdf","x-mojo-to":["PACER::DocumentSelect#order_pdf",{"cached":0}]}},"\/cases\/pacer\/{court_code}\/{case_number}\/epoc\/creditor\/{creditor_id}\/claims":{"get":{"parameters":[{"description":"Creditor ID","in":"path","name":"creditor_id","required":true,"schema":{"type":"number"}}],"responses":{"200":{"content":{"application\/json":{"examples":{"Creditor with two claims":{"value":[{"claim_date":"09\/04\/2022","claim_number":28},{"claim_date":"08\/17\/2022","claim_number":9}]}},"schema":{"items":{"properties":{"claim_date":{"type":"string"},"claim_number":{"type":"string"}},"required":["claim_number","claim_date"],"type":"object"},"type":"array"}}},"description":"List of previous filed claims"},"400":{"content":{"application\/json":{"examples":{"Error from internal API":{"value":[{"error":{"detail":"Creditor ID not found!","status":400},"status":"fail"}]}},"schema":{"description":"Returned on internal API failures","properties":{"error":{"properties":{"detail":{"description":"Error message","type":"string"},"status":{"type":"integer"}},"type":"object"},"status":{"type":"string"}},"type":"object"}}},"description":"Bad request, invalid request syntax, wrong input"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Find creditor claims for a case (if any)","tags":["epoc"],"x-courtapi-resource":"epoc","x-courtapi-source":"pacer","x-mojo-name":"pacer_case_epoc_creditor_claims","x-mojo-to":"PACER::Case::EPOC#creditor_case_claims"},"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"Creditor Name to search for (required by some courts, even with creditor id)","in":"query","name":"creditor_name","schema":{"type":"string"}}]},"\/cases\/pacer\/{court_code}\/{case_number}\/epoc\/search-creditors":{"get":{"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"civil","case_no":"3:92-cv-30321","case_title":"UNITED STATES v. INTERNATL FIDELITY","case_type":"cv","cause":null,"ch11_type":null,"chapter":null,"court_code":"flndce","date_closed":"04\/11\/1997","date_discharged":null,"date_filed":"08\/25\/1992","date_of_last_filing":"09\/08\/2000","date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":false,"is_ok_to_list_publicly":false,"judge_name":"LACEY A COLLIER","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2022-01-21T04:57:14.362364Z","naics_code":130,"nature_of_debt":"~","nature_of_suit_code":130,"petition_type":null,"plan_confirmed":null,"referred_to":null},"creditors":[{"crAddr1":"71 STEVENSON ST STE 300","crAddr2":"SAN FRANCISCO, CA 94105","crName":"LENDING CLUB CORP","crid":16617702},{"crAddr1":"s\/b\/m\/t Chase Bank USA, N.A.","crAddr4":"Boca Raton, FL 33487","crName":"JPMorgan Chase Bank, N.A.","crid":16706970}],"links":{"case":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/alnbtrain\/8:17-bk-80011"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/alnbtrain\/8:17-bk-80011\/epoc\/search-creditors"},"submit-claim":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/alnbtrain\/8:17-bk-80011\/epoc\/submit-claim","method":"POST"}}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"creditors":{"items":{"properties":{"crAddr1":{"type":"string"},"crAddr2":{"type":"string"},"crAddr3":{"type":"string"},"crAddr4":{"type":"string"},"crAddr5":{"type":"string"},"crName":{"type":"string"},"crid":{"description":"Creditor ID","format":"int32","type":"integer"}},"required":["crName","crAddr1","crAddr2","crid"],"type":"object"},"type":"array"},"links":{"properties":{"case":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"},"submit-claim":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}}},"description":"List of creditors"},"400":{"content":{"application\/json":{"examples":{"Error from internal API":{"value":[{"error":{"detail":"You may not file a claim in a CLOSED case","status":400},"status":"fail"}]}},"schema":{"description":"Returned on internal API failures","properties":{"error":{"properties":{"detail":{"description":"Error message","type":"string"},"status":{"type":"integer"}},"type":"object"},"status":{"type":"string"}},"type":"object"}}},"description":"Bad request, invalid request syntax, wrong input"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Search ePOC creditors for a case","tags":["epoc"],"x-courtapi-resource":"epoc","x-courtapi-source":"pacer","x-mojo-name":"pacer_case_epoc_search_creditors","x-mojo-to":"PACER::Case::EPOC#search_creditors"},"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"Creditor name to search for (required by some courts)","in":"query","name":"creditor_name","schema":{"type":"string"}}]},"\/cases\/pacer\/{court_code}\/{case_number}\/epoc\/submit-claim":{"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"post":{"requestBody":{"content":{"application\/json":{"examples":{"New claim with existing creditor":{"value":{"attachments":[{"data":"CBvYmoKPDwvVH...lwZS9QYWdlL1Bhcm","filename":"claim1.pdf"},{"data":"ZS9QYWdlL1Bhc...mVudCA0IDAgUi9SZ","filename":"claim1b.pdf"}],"claim_amount":100,"creditor":{"crid":10237},"filed_by":"creditor","securities":{"cure_default":50000,"fixed_interest":3.7,"real_estate":true,"value":220000},"signee":{"phone":2101234328,"role":"creditor","signature":"John Doe","title":"CEO"}}},"New claim with new creditor":{"value":{"claim_amount":100,"creditor":{"address1":"123 Main St","address2":"suite 101","city":"New York","name":"JP Bank","state":"NY"},"filed_by":"creditor","signee":{"phone":2101234328,"role":"creditor","signature":"John Doe","title":"CEO"}}}},"schema":{"additionalProperties":false,"properties":{"acquired_from":{"description":"Name of 3rd party that claim was acquired from","type":"string"},"amend_claim":{"additionalProperties":false,"description":"Used if we are amending a previous claim","properties":{"claim_date":{"description":"The date (mm\/dd\/yyyy) the previous claim was filed","type":"string"},"claim_number":{"description":"The claim number we are amending","type":"string"}},"required":["claim_number","claim_date"],"type":"object"},"attachments":{"items":{"additionalProperties":false,"properties":{"data":{"format":"base64","type":"string"},"filename":{"type":"string"}},"required":["filename","data"],"type":"object"},"type":"array"},"claim_amount":{"description":"The amount this claim is for","format":"float","type":"number"},"claim_basis":{"description":"What is the basis of the claim? (Goods sold, money loaned, lease, etc)","maxLength":115,"type":"string"},"claim_comment":{"description":"If claim is $0, explain","maxLength":215,"type":"string"},"creditor":{"oneOf":[{"additionalProperties":false,"properties":{"alias":{"maxLength":200,"type":"string"},"crid":{"description":"Creditor ID","type":"integer"},"email":{"maxLength":40,"type":"string"},"name":{"maxLength":50,"type":"string"},"phone":{"maxLength":20,"type":"string"}},"required":["crid"],"type":"object"},{"additionalProperties":false,"properties":{"address1":{"maxLength":50,"type":"string"},"address2":{"maxLength":50,"type":"string"},"address3":{"maxLength":50,"type":"string"},"alias":{"maxLength":200,"type":"string"},"city":{"maxLength":30,"type":"string"},"email":{"maxLength":40,"type":"string"},"name":{"maxLength":50,"type":"string"},"phone":{"maxLength":20,"type":"string"},"state":{"enum":["AK","AL","AR","AZ","CA","CO","CT","DC","DE","FL","GA","HI","IA","ID","IL","IN","KS","KY","LA","MA","MD","ME","MI","MN","MO","MS","MT","NC","ND","NE","NH","NJ","NM","NV","NY","OH","OK","OR","PA","RI","SC","SD","TN","TX","UT","VA","VT","WA","WI","WV","WY"],"type":"string"},"zip":{"pattern":"^[0-9]{5}$","type":"string"},"zip4":{"pattern":"^[0-9]{4}","type":"string"}},"required":["name","address1","city","state"],"type":"object"}]},"creditors_attorney":{"additionalProperties":false,"description":"If filed_by is creditor_attorney, attorney address info needs to be present","properties":{"address1":{"maxLength":50,"type":"string"},"address2":{"maxLength":50,"type":"string"},"address3":{"maxLength":50,"type":"string"},"city":{"maxLength":30,"type":"string"},"name":{"maxLength":50,"type":"string"},"state":{"enum":["AK","AL","AR","AZ","CA","CO","CT","DC","DE","FL","GA","HI","IA","ID","IL","IN","KS","KY","LA","MA","MD","ME","MI","MN","MO","MS","MT","NC","ND","NE","NH","NJ","NM","NV","NY","OH","OK","OR","PA","RI","SC","SD","TN","TX","UT","VA","VT","WA","WI","WV","WY"],"type":"string"},"zip":{"pattern":"^[0-9]{5}$","type":"string"},"zip4":{"pattern":"^[0-9]{4}","type":"string"}},"required":["name","address1","city","state"],"type":"object"},"debtor_number":{"description":"Last 4 digits of the debtor's account or any number you use to identify the debtor","maxLength":4,"type":"string"},"filed_by":{"description":"The role of the person filing","enum":["creditor","creditor_attorney","debtor","debtor_attorney","trustee"],"type":"string"},"lease_default":{"description":"If claim is based on a lease, enter amount necessary to cure any default","format":"float","type":"number"},"other_charges":{"description":"Claim amount includes interest or other charges (Must attach statement itemizing interest, fees, expenses, or other charges required by Bankruptcy Rule 3001(c)(2)(A).","type":"boolean"},"other_proof_name":{"description":"Has someone else filed a proof of claim for this claim? If so, enter their name.","maxLength":100,"type":"string"},"payment_address":{"additionalProperties":false,"properties":{"address1":{"maxLength":50,"type":"string"},"address2":{"maxLength":50,"type":"string"},"address3":{"maxLength":50,"type":"string"},"city":{"maxLength":30,"type":"string"},"email":{"maxLength":40,"type":"string"},"name":{"maxLength":50,"type":"string"},"phone":{"maxLength":20,"type":"string"},"state":{"enum":["AK","AL","AR","AZ","CA","CO","CT","DC","DE","FL","GA","HI","IA","ID","IL","IN","KS","KY","LA","MA","MD","ME","MI","MN","MO","MS","MT","NC","ND","NE","NH","NJ","NM","NV","NY","OH","OK","OR","PA","RI","SC","SD","TN","TX","UT","VA","VT","WA","WI","WV","WY"],"type":"string"},"zip":{"pattern":"^[0-9]{5}$","type":"string"},"zip4":{"pattern":"^[0-9]{4}","type":"string"}},"required":["name","address1","city","state"],"type":"object"},"priorities":{"additionalProperties":false,"anyOf":[{"required":["507_1"]},{"required":["507_7"]},{"required":["507_4"]},{"required":["507_8"]},{"required":["507_5"]},{"required":["507_other","507_other_sub"]}],"description":"Is all or part of the claim entitled to priority under 11 U.S.C. 507(a)?","properties":{"507_1":{"description":"Amount entitled to domestic support under 507(a)(1)(A) or (a)(1)(B)","format":"float","type":"number"},"507_4":{"description":"Entitled Wages, salaries under 507(a)(4)","format":"float","type":"number"},"507_5":{"description":"Contributions to an employee benefit plan under 507(a)(5)","format":"float","type":"number"},"507_7":{"description":"Amount entitled to 507(a)(7)","format":"float","type":"number"},"507_8":{"description":"Taxes or penalties owed to governmental units under 507(a)(8)","format":"float","type":"number"},"507_other":{"description":"Other amount of entitled priority under 507a","format":"float","type":"number"},"507_other_sub":{"description":"Subsection under 507 that other applies to","type":"string"}},"type":"object"},"securities":{"additionalProperties":false,"description":"If claim is secured, enter extra info on securities","properties":{"amount_secured":{"description":"Amount of the claim that is secured","format":"float","type":"number"},"amount_unsecured":{"description":"Amount of the claim that is unsecured","format":"float","type":"number"},"annual_interest":{"description":"Amount of variable or fixed interest (if any)","properties":{"amount":{"description":"Interest amount","format":"float","type":"number"},"interest_type":{"description":"Interest type","enum":["variable","fixed"],"type":"string"}},"required":["interest_type","amount"],"type":"object"},"basis":{"description":"Basis for perfection. (Attach redacted copies of documents, if any, that show evidence of perfection of a security interest (for example, a mortgage, lien, financing statement, etc that shows the lien has been filed or recorded.)","maxLength":24,"type":"string"},"cure_default":{"description":"Amount necessary to cure any default as of the date of the petition","format":"float","type":"number"},"other":{"description":"Select if security is neither real estate or a vehicle","type":"boolean"},"other_desc":{"description":"Describe security if other","maxLength":40,"type":"string"},"real_estate":{"description":"Select if security is\/has real estate. (If the claim is secured by the debtor's principal residence, file a Mortgage Proof of Claim Attachment (Official Form 410-A) with this Proof of Claim.)","type":"boolean"},"value":{"description":"Value of property","format":"float","type":"number"},"vehicle":{"description":"Select if security is\/has a vehicle","type":"boolean"}},"required":["value"],"type":"object"},"set_off":{"description":"If claim is subject to a right of setoff, enter identity of the property","maxLength":60,"type":"string"},"signee":{"additionalProperties":false,"description":"Information about the signee (ie You)","properties":{"address1":{"description":"Your address","maxLength":40,"type":"string"},"city":{"description":"Your city","maxLength":30,"type":"string"},"company":{"description":"Company name","maxLength":50,"type":"string"},"email":{"maxLength":40,"type":"string"},"phone":{"maxLength":20,"type":"string"},"role":{"description":"Your role as the signee of this document","enum":["creditor","creditor_attorney","rule_3004","rule_3005"],"type":"string"},"signature":{"description":"Your signature","maxLength":50,"type":"string"},"state":{"enum":["AK","AL","AR","AZ","CA","CO","CT","DC","DE","FL","GA","HI","IA","ID","IL","IN","KS","KY","LA","MA","MD","ME","MI","MN","MO","MS","MT","NC","ND","NE","NH","NJ","NM","NV","NY","OH","OK","OR","PA","RI","SC","SD","TN","TX","UT","VA","VT","WA","WI","WV","WY"],"type":"string"},"title":{"description":"Company title","maxLength":50,"type":"string"},"zip":{"pattern":"^[0-9]{5}$","type":"string"},"zip4":{"pattern":"^[0-9]{4}","type":"string"}},"required":["role","signature","address1","city","state","zip"],"type":"object"},"uniform_identifier":{"description":"Uniform claim identifier for electronic payments in chapter 13 (if you use one)","maxLength":24,"type":"string"},"validate_only":{"description":"If true, dry run for validation only (return 204 if good)","type":"boolean"}},"required":["filed_by","creditor","claim_amount","signee","claim_basis"],"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"examples":{"Claim with attachments":{"value":{"attachments":[{"download_link":"https:\/\/storage.courtapi.com\/download\/s3\/1666748926\/czM6Ly9pbmZ.....vcnVwdGN5L.pdf","name":"Attachment 1","preview_link":"https:\/\/storage.courtapi.com\/download\/s3\/1666748926\/czM6Ly9pbmZ.....vcnVwdGN5L.pdf"},{"download_link":"https:\/\/storage.courtapi.com\/download\/s3\/1666748926\/czM6Ly9pbmZ.....vcnVwdGN5L.pdf","name":"Attachment 2","preview_link":"https:\/\/storage.courtapi.com\/download\/s3\/1666748926\/czM6Ly9pbmZ.....vcnVwdGN5L.pdf"}],"claim_number":12,"documents":[{"download_link":"https:\/\/storage.courtapi.com\/download\/s3\/1666748926\/czM6Ly9pbmZ.....vcnVwdGN5L.pdf","name":"Main Document","preview_link":"https:\/\/storage.courtapi.com\/download\/s3\/1666748926\/czM6Ly9pbmZ.....vcnVwdGN5L.pdf"}],"links":{"original_screenshot":{"pdf":"\/source-data\/b7695d74614d2200b8\/screenshot-original.pdf"}}}},"Claim without attachments":{"value":{"claim_number":1,"documents":[{"download_link":"https:\/\/storage.courtapi.com\/download\/s3\/1666748926\/czM6Ly9pbmZ.....vcnVwdGN5L.pdf","name":"Main Document","preview_link":"https:\/\/storage.courtapi.com\/download\/s3\/1666748926\/czM6Ly9pbmZ.....vcnVwdGN5L.pdf"}],"links":{"original_screenshot":{"pdf":"\/source-data\/b7695d74614d2200b8\/screenshot-original.pdf"}}}}},"schema":{"properties":{"attachments":{"description":"Any uploaded documents are saved and returned back","items":{"properties":{"download_link":{"type":"string"},"name":{"type":"string"},"preview_link":{"type":"string"}},"required":["name","download_link","preview_link"],"type":"object"},"type":"array"},"claim_number":{"type":"string"},"documents":{"description":"The generated claim PDF","items":{"properties":{"download_link":{"type":"string"},"name":{"type":"string"},"preview_link":{"type":"string"}},"required":["name","download_link","preview_link"],"type":"object"},"type":"array"},"links":{"description":"Currently just a link to a screenshot","properties":{"original_screenshot":{"properties":{"pdf":{"description":"Link to pdf screenshot","type":"string"}},"type":"object"}},"type":"object"}},"required":["claim_number","documents","links"],"type":"object"}}},"description":"List of URLs to created documents"},"204":{"description":"Returned if validation successful"},"400":{"content":{"application\/json":{"examples":{"Error from internal API":{"value":[{"error":{"detail":"Creditor ID not found!","status":400},"status":"fail"}]},"Error from openAPI validation":{"value":[{"errors":[{"message":"Missing property.","path":"\/body\/filed_by"}],"status":400}]}},"schema":{"oneOf":[{"description":"Returned on openAPI validation failures","properties":{"errors":{"items":{"properties":{"message":{"description":"Error message","type":"string"},"path":{"description":"Error location","type":"string"}},"type":"object"},"type":"array"},"status":{"type":"integer"}},"type":"object"},{"description":"Returned on internal API failures","properties":{"error":{"properties":{"detail":{"description":"Error message","type":"string"},"status":{"type":"integer"}},"type":"object"},"status":{"type":"string"}},"type":"object"}]}}},"description":"Bad request, invalid request syntax, wrong input"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Submit a proof of claim via ePOC","tags":["epoc"],"x-courtapi-resource":"epoc","x-courtapi-source":"pacer","x-mojo-name":"pacer_case_epoc_submit_claim","x-mojo-to":"PACER::Case::EPOC#submit_claim"}},"\/cases\/pacer\/{court_code}\/{case_number}\/filers":{"get":{"description":"All filers for case","operationId":"getFilers","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"civil","case_no":"3:92-cv-30321","case_title":"UNITED STATES v. INTERNATL FIDELITY","case_type":"cv","cause":null,"ch11_type":null,"chapter":null,"court_code":"flndce","date_closed":"04\/11\/1997","date_discharged":null,"date_filed":"08\/25\/1992","date_of_last_filing":"09\/08\/2000","date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":false,"is_ok_to_list_publicly":false,"judge_name":"LACEY A COLLIER","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2022-01-21T04:57:14.362364Z","naics_code":130,"nature_of_debt":"~","nature_of_suit_code":130,"petition_type":null,"plan_confirmed":null,"referred_to":null},"filers":[{"date_added":"07\/21\/2010","date_terminated":null,"modified":"2013-02-18 17:44:06.993713+00","name":"Latrell Barfield","type":"Unknown"},{"date_added":"06\/16\/2010","date_terminated":null,"modified":"2013-02-18 17:44:07.104341+00","name":"Donley County Appraisal District","type":"Unknown"},{"date_added":"02\/18\/2010","date_terminated":null,"modified":"2013-02-18 17:44:07.121144+00","name":"3M Company","type":"Unknown"}],"links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:09-bk-50026"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:09-bk-50026\/filers","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:09-bk-50026\/filers"}},"timestamp":"2013-02-18T17:44:16.562280Z"},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"filers":{"items":{"properties":{"date_added":{"type":"string"},"date_terminated":{"type":"number"},"modified":{"format":"date-time","type":"string"},"name":{"type":"string"},"type":{"type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>1:09-bk-50026<\/case_no>\n    <case_title>Motors Liquidation Company<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter>11<\/chapter>\n    <court_code>nysbke<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>06\/01\/2009<\/date_filed>\n    <date_of_last_filing\/>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>No<\/has_asset>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Robert E. Gerber<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2017-07-09T05:13:32.653410Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type>v<\/petition_type>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <filers>\n    <date_added>07\/21\/2010<\/date_added>\n    <date_terminated\/>\n    <modified>2013-02-18 17:44:06.993713+00<\/modified>\n    <name>Latrell Barfield<\/name>\n    <type>Unknown<\/type>\n  <\/filers>\n  <filers>\n    <date_added>06\/16\/2010<\/date_added>\n    <date_terminated\/>\n    <modified>2013-02-18 17:44:07.104341+00<\/modified>\n    <name>Donley County Appraisal District<\/name>\n    <type>Unknown<\/type>\n  <\/filers>\n  <filers>\n    <date_added>02\/18\/2010<\/date_added>\n    <date_terminated\/>\n    <modified>2013-02-18 17:44:07.121144+00<\/modified>\n    <name>3M Company<\/name>\n    <type>Unknown<\/type>\n  <\/filers>\n  <links>\n    <menu>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:09-bk-50026<\/href>\n    <\/menu>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:09-bk-50026\/filers<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:09-bk-50026\/filers<\/href>\n    <\/self>\n  <\/links>\n  <timestamp>2013-02-18T17:44:16.562280Z<\/timestamp>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"All filers for case","tags":["case"],"x-courtapi-resource":"filers","x-courtapi-source":"local","x-courtdrive-async-desc":"Filers of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_filers","x-mojo-to":"PACER::Case#filers"},"post":{"description":"PACER Query Case Filers","operationId":"updateFilers","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":null,"case_chapter_id":3,"case_court_id":221,"case_id_external":460025,"case_no":"3:17-bk-30057","case_petition_id":1,"case_title":"PiclepackingBusiness Picklepuss Steinfieldsmithjon","case_type_id":1,"cause":null,"ch11_type":null,"ch11_type_code":null,"chapter":11,"court":"orbtrain","court_name":"orbtrain","created":"2019-05-01T14:40:05.384459Z","date_closed":null,"date_discharged":null,"date_filed":"11\/22\/2017","date_of_last_filing":"03\/05\/2019","date_plan_confirmed":null,"date_terminated":null,"disabled":0,"disposition":null,"has_asset":1,"is_business_bankruptcy":null,"is_ok_to_list_publicly":false,"judge_name":"Peter C McKittrick","jurisdiction":null,"jury_demand":null,"lead_case_uuid":null,"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:17-bk-30057"}},"modified":"2019-05-01T14:49:41.810261Z","nature_of_debt":null,"nature_of_suit_code":null,"ncl_parties":[],"referred_to":null,"schedule_ab":null,"timestamp":"2019-05-01T14:49:41.810260Z","title":"PiclepackingBusiness Picklepuss Steinfieldsmithjon","uri_id":85058472},"filers":[{"date_added":"11\/22\/2017","date_terminated":"","name":"PiclepackingBusiness Picklepuss Steinfieldsmithjones Jr.","type":"Debtor"}],"receipts":{"client_code":"","cost":"0.10","criteria":"17-30057-pcm11","datetime":"05\/01\/2019 07:49:41","description":"Filer List","pages":"1","timestamp":"2019-05-01T14:49:40.190736Z","user_id":"irtraining"}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"filers":{"items":{"properties":{"date_added":{"type":"string"},"date_terminated":{"type":"string"},"name":{"type":"string"},"type":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_chapter_id>3<\/case_chapter_id>\n    <case_court_id>221<\/case_court_id>\n    <case_id_external>460025<\/case_id_external>\n    <case_no>3:17-bk-30057<\/case_no>\n    <case_petition_id>1<\/case_petition_id>\n    <case_title>PiclepackingBusiness Picklepuss Steinfieldsmithjon<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <cause\/>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter>11<\/chapter>\n    <court>orbtrain<\/court>\n    <court_name>orbtrain<\/court_name>\n    <created>2019-05-01T14:40:05.384459Z<\/created>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>11\/22\/2017<\/date_filed>\n    <date_of_last_filing>03\/05\/2019<\/date_of_last_filing>\n    <date_plan_confirmed\/>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>1<\/has_asset>\n    <is_business_bankruptcy\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Peter C McKittrick<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <lead_case_uuid\/>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:17-bk-30057<\/href>\n      <\/self>\n    <\/links>\n    <modified>2019-05-01T14:49:41.810261Z<\/modified>\n    <nature_of_debt\/>\n    <nature_of_suit_code\/>\n    <referred_to\/>\n    <schedule_ab\/>\n    <timestamp>2019-05-01T14:49:41.810260Z<\/timestamp>\n    <title>PiclepackingBusiness Picklepuss Steinfieldsmithjon<\/title>\n    <uri_id>85058472<\/uri_id>\n  <\/case>\n  <filers>\n    <date_added>11\/22\/2017<\/date_added>\n    <date_terminated><\/date_terminated>\n    <name>PiclepackingBusiness Picklepuss Steinfieldsmithjones Jr.<\/name>\n    <type>Debtor<\/type>\n  <\/filers>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>17-30057-pcm11<\/criteria>\n    <datetime>05\/01\/2019 07:49:41<\/datetime>\n    <description>Filer List<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T14:49:40.190736Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Filers","tags":["query"],"x-courtapi-resource":"filers","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Filers update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_filers","x-mojo-to":"PACER::Query#pacer_query_filers"}},"\/cases\/pacer\/{court_code}\/{case_number}\/headers":{"get":{"description":"Case Headers","operationId":"getHeaders","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If true then add case item","in":"query","name":"include_case_header","schema":{"type":"boolean"}}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":"~","case_category":"bankruptcy","case_no":"2:20-bk-00003","case_title":"PHIL COLLINS and JANET COLLINS","case_type":"bk","cause":"~","ch11_type":"~","chapter":11,"court_code":"azbtrain","date_closed":"~","date_discharged":"~","date_filed":"01\/22\/2020","date_of_last_filing":"02\/06\/2020","date_terminated":"~","disposition":"~","has_asset":"No","judge_name":"Daniel P. Collins","jurisdiction":"~","jury_demand":"~","modified":"2020-06-25T15:49:47.739760Z","nature_of_suit_code":"~","petition_type":"v","plan_confirmed":"~","referred_to":"~"},"links":{"menu":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/azbtrain\/2:20-bk-00003"},"pacer-update":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/azbtrain\/2:20-bk-00003\/headers","method":"POST"},"self":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/azbtrain\/2:20-bk-00003\/headers"}}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_no>2:20-bk-00003<\/case_no>\n    <case_title>PHIL COLLINS and JANET COLLINS<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter>11<\/chapter>\n    <court_code>azbtrain<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>01\/22\/2020<\/date_filed>\n    <date_of_last_filing>02\/06\/2020<\/date_of_last_filing>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>No<\/has_asset>\n    <judge_name>Daniel P. Collins<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2020-06-25T15:49:47.739760Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type>v<\/petition_type>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <links>\n    <self>\n      <href>http:\/\/v1.courtapi.com\/cases\/pacer\/azbtrain\/2:20-bk-00003\/headers<\/href>\n    <\/self>\n    <menu>\n      <href>http:\/\/v1.courtapi.com\/cases\/pacer\/azbtrain\/2:20-bk-00003<\/href>\n    <\/menu>\n    <pacer-update>\n      <method>POST<\/method>\n      <href>http:\/\/v1.courtapi.com\/cases\/pacer\/azbtrain\/2:20-bk-00003\/headers<\/href>\n    <\/pacer-update>\n  <\/links>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Case Headers","tags":["case"],"x-courtapi-resource":"headers","x-courtapi-source":"local","x-courtdrive-async-desc":"Case headers of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_headers","x-mojo-to":"PACER::Case#headers"},"post":{"description":"PACER Case Header Refresh","operationId":"refreshHeader","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":"~","case_category":"bankruptcy","case_no":"2:20-bk-00003","case_title":"PHIL COLLINS and JANET COLLINS","case_type":"bk","cause":"~","ch11_type":"~","chapter":11,"court_code":"azbtrain","date_closed":"~","date_discharged":"~","date_filed":"01\/22\/2020","date_of_last_filing":"02\/06\/2020","date_terminated":"~","disposition":"~","has_asset":"No","judge_name":"Daniel P. Collins","jurisdiction":"~","jury_demand":"~","modified":"2020-06-25T15:49:47.739760Z","nature_of_suit_code":"~","petition_type":"v","plan_confirmed":"~","referred_to":"~"},"links":{"menu":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/azbtrain\/2:20-bk-00003"},"pacer-update":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/azbtrain\/2:20-bk-00003\/headers","method":"POST"},"self":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/azbtrain\/2:20-bk-00003\/headers"}}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_no>2:20-bk-00003<\/case_no>\n    <case_title>PHIL COLLINS and JANET COLLINS<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter>11<\/chapter>\n    <court_code>azbtrain<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>01\/22\/2020<\/date_filed>\n    <date_of_last_filing>02\/06\/2020<\/date_of_last_filing>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>No<\/has_asset>\n    <judge_name>Daniel P. Collins<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2020-06-25T15:49:47.739760Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type>v<\/petition_type>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <links>\n    <self>\n      <href>http:\/\/v1.courtapi.com\/cases\/pacer\/azbtrain\/2:20-bk-00003\/headers<\/href>\n    <\/self>\n    <menu>\n      <href>http:\/\/v1.courtapi.com\/cases\/pacer\/azbtrain\/2:20-bk-00003<\/href>\n    <\/menu>\n    <pacer-update>\n      <method>POST<\/method>\n      <href>http:\/\/v1.courtapi.com\/cases\/pacer\/azbtrain\/2:20-bk-00003\/headers<\/href>\n    <\/pacer-update>\n  <\/links>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Case Header Refresh","tags":["query"],"x-courtapi-resource":"case-header-refresh","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Case Header refresh of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_case_header_refresh","x-mojo-to":"PACER::Query#pacer_case_header_refresh"}},"\/cases\/pacer\/{court_code}\/{case_number}\/history":{"get":{"description":"Case History from Local DB","operationId":"getHistory","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"in":"query","name":"search_keyword","schema":{"type":"string"}},{"description":"Date Filed From (MM\/DD\/YYYY)","in":"query","name":"date_filed_from","schema":{"type":"string"}},{"description":"Date Filed To (MM\/DD\/YYYY)","in":"query","name":"date_filed_to","schema":{"type":"string"}},{"in":"query","name":"docket_number_from","schema":{"type":"integer"}},{"in":"query","name":"docket_number_to","schema":{"type":"integer"}},{"in":"query","name":"docket_number_range","schema":{"pattern":"^[0-9-,]+$","type":"string"}},{"in":"query","name":"sort_column","schema":{"pattern":"^[a-zA-Z0-9-_]+$","type":"string"}},{"in":"query","name":"sort_order","schema":{"enum":["asc","desc"],"type":"string"}},{"in":"query","name":"page_size","schema":{"default":500,"minimum":1,"type":"integer"}},{"in":"query","name":"page_number","schema":{"default":1,"minimum":1,"type":"integer"}}],"responses":{"200":{"content":{"application\/json":{"example":{"entries":{"content":[{"binder":{"documents":[{"cost":"0.20","description_html":"Fake Document","docket_no":1,"download_cost":"0.20","filename":"Bankr.D.Or.TRAIN._1-19-bk-190122_1.pdf","free":null,"friendly_name":"Bankr.D.Or.TRAIN._1-19-bk-190122_1.pdf","is_cached":false,"links":{"order_pdf":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/dockets\/\/documents\/1","method":"POST"}},"number":1,"pages":2}],"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/dockets\/1.00000\/documents"}}},"date_filed":"10\/22\/2019","date_terminated":null,"docket_no":1,"docket_seq":"1.00000","docket_text":"Fake History Docket","links":{"documents":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/dockets\/1.00000\/documents"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/dockets\/1.00000"}},"timestamp":"2019-04-29T08:58:24.096530Z"}],"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/history?page_size=500&page_number=1"}},"page_size":500,"total_items":1,"total_pages":1},"links":{"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/history","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/history"}}},"schema":{"properties":{"entries":{"properties":{"content":{"items":{"properties":{"annotations":{"items":{"type":"string"},"type":"array"},"binder":{"properties":{"documents":{"properties":{"cost":{"type":"string"},"description_html":{"type":"string"},"docket_no":{"type":"integer"},"filename":{"type":"string"},"free":{"type":"boolean"},"number":{"type":"integer"},"pages":{"type":"integer"}},"type":"object"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"date_filed":{"type":"string"},"docket_no":{"type":"integer"},"docket_seq":{"type":"number"},"docket_text":{"type":"string"},"links":{"properties":{"documents":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"page_size":{"type":"integer"},"total_items":{"type":"integer"},"total_pages":{"type":"integer"}},"type":"object"},"links":{"properties":{"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <entries>\n    <content>\n      <binder>\n        <documents>\n          <cost>0.20<\/cost>\n          <description_html>Fake Document<\/description_html>\n          <docket_no>1<\/docket_no>\n          <download_cost>0.20<\/download_cost>\n          <filename>Bankr.D.Or.TRAIN._1-19-bk-190122_1.pdf<\/filename>\n          <free\/>\n          <friendly_name>Bankr.D.Or.TRAIN._1-19-bk-190122_1.pdf<\/friendly_name>\n          <is_cached>0<\/is_cached>\n          <links>\n            <order_pdf>\n              <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/dockets\/\/documents\/1<\/href>\n              <method>POST<\/method>\n            <\/order_pdf>\n          <\/links>\n          <number>1<\/number>\n          <pages>2<\/pages>\n        <\/documents>\n        <links>\n          <self>\n            <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/dockets\/1.00000\/documents<\/href>\n          <\/self>\n        <\/links>\n      <\/binder>\n      <date_filed>10\/22\/2019<\/date_filed>\n      <date_terminated\/>\n      <docket_no>1<\/docket_no>\n      <docket_seq>1.00000<\/docket_seq>\n      <docket_text>Fake History Docket<\/docket_text>\n      <links>\n        <documents>\n          <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/dockets\/1.00000\/documents<\/href>\n        <\/documents>\n        <self>\n          <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/dockets\/1.00000<\/href>\n        <\/self>\n      <\/links>\n      <timestamp>2019-04-29T08:58:24.096530Z<\/timestamp>\n    <\/content>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/history?page_size=500&amp;page_number=1<\/href>\n      <\/self>\n    <\/links>\n    <page_size>500<\/page_size>\n    <total_items>1<\/total_items>\n    <total_pages>1<\/total_pages>\n  <\/entries>\n  <links>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/history<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/1:19-bk-190122\/history<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"History Entries from Local DB"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Case History from Local DB","tags":["case"],"x-courtapi-resource":"history","x-courtapi-source":"local","x-courtdrive-async-desc":"History for {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_history","x-mojo-to":"PACER::Case::History#history_search"},"post":{"description":"PACER Query Case History","operationId":"updateHistory","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"history_type":{"enum":["History","Documents"],"type":"string"},"pacer_client":{"description":"PACER Client Code","type":"string"},"show_docket":{"type":"boolean"},"sort":{"enum":["asc","desc"],"type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":null,"case_chapter_id":3,"case_court_id":221,"case_id_external":460025,"case_no":"3:17-bk-30057","case_petition_id":1,"case_title":"PiclepackingBusiness Picklepuss Steinfieldsmithjon","case_type_id":1,"cause":null,"ch11_type":null,"ch11_type_code":null,"chapter":11,"court":"orbtrain","court_name":"orbtrain","created":"2019-05-01T14:40:05.384459Z","date_closed":null,"date_discharged":null,"date_filed":"11\/22\/2017","date_of_last_filing":"03\/05\/2019","date_plan_confirmed":null,"date_terminated":null,"disabled":0,"disposition":null,"has_asset":1,"is_business_bankruptcy":null,"is_ok_to_list_publicly":false,"judge_name":"Peter C McKittrick","jurisdiction":null,"jury_demand":null,"lead_case_uuid":null,"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:17-bk-30057"}},"modified":"2019-05-01T15:19:39.964875Z","nature_of_debt":null,"nature_of_suit_code":null,"ncl_parties":[],"referred_to":null,"schedule_ab":null,"timestamp":"2019-05-01T15:19:39.964870Z","title":"PiclepackingBusiness Picklepuss Steinfieldsmithjon","uri_id":85058472},"history":[{"date_entered":"11\/22\/2017","date_filed":"11\/22\/2017","date_terminated":null,"description":"Chapter 11 Voluntary Petition - case upload","docket_no":"1","docket_seq":0,"order_docket_no":"1","sequence_number":"1","timestamp":"2019-05-01T15:19:38.349303Z","title":"Chapter 11 Voluntary Petition - case upload "}],"receipts":{"client_code":"","cost":"0.10","criteria":"17-30057-pcm11","datetime":"05\/01\/2019 08:19:39","description":"History\/Documents","pages":"1","timestamp":"2019-05-01T15:19:38.349303Z","user_id":"irtraining"}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"history":{"items":{"properties":{"date_entered":{"type":"string"},"date_filed":{"type":"string"},"date_terminated":{"type":"string"},"description":{"type":"string"},"docket_no":{"type":"string"},"docket_seq":{"type":"string"},"order_docket_no":{"type":"string"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_chapter_id>3<\/case_chapter_id>\n    <case_court_id>221<\/case_court_id>\n    <case_id_external>460025<\/case_id_external>\n    <case_no>3:17-bk-30057<\/case_no>\n    <case_petition_id>1<\/case_petition_id>\n    <case_title>PiclepackingBusiness Picklepuss Steinfieldsmithjon<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <cause\/>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter>11<\/chapter>\n    <court>orbtrain<\/court>\n    <court_name>orbtrain<\/court_name>\n    <created>2019-05-01T14:40:05.384459Z<\/created>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>11\/22\/2017<\/date_filed>\n    <date_of_last_filing>03\/05\/2019<\/date_of_last_filing>\n    <date_plan_confirmed\/>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>1<\/has_asset>\n    <is_business_bankruptcy\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Peter C McKittrick<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <lead_case_uuid\/>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:17-bk-30057<\/href>\n      <\/self>\n    <\/links>\n    <modified>2019-05-01T15:19:39.964875Z<\/modified>\n    <nature_of_debt\/>\n    <nature_of_suit_code\/>\n    <referred_to\/>\n    <schedule_ab\/>\n    <timestamp>2019-05-01T15:19:39.964870Z<\/timestamp>\n    <title>PiclepackingBusiness Picklepuss Steinfieldsmithjon<\/title>\n    <uri_id>85058472<\/uri_id>\n  <\/case>\n  <history>\n    <date_entered>11\/22\/2017<\/date_entered>\n    <date_filed>11\/22\/2017<\/date_filed>\n    <date_terminated\/>\n    <description>Chapter 11 Voluntary Petition - case upload<\/description>\n    <docket_no>1<\/docket_no>\n    <docket_seq>0<\/docket_seq>\n    <order_docket_no>1<\/order_docket_no>\n    <sequence_number>1<\/sequence_number>\n    <timestamp>2019-05-01T15:19:38.349303Z<\/timestamp>\n    <title>Chapter 11 Voluntary Petition - case upload <\/title>\n  <\/history>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>17-30057-pcm11<\/criteria>\n    <datetime>05\/01\/2019 08:19:39<\/datetime>\n    <description>History\/Documents<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T15:19:38.349303Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case History","tags":["query"],"x-courtapi-resource":"history","x-courtapi-source":"pacer","x-courtdrive-async-desc":"History update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_history","x-mojo-to":"PACER::Query#pacer_query_history"}},"\/cases\/pacer\/{court_code}\/{case_number}\/key-documents\/petition.json":{"get":{"description":"Get the Case Petition Metadata","responses":{"200":{"content":{"application\/json":{"example":{"links":{"case":{"properties":{"href":{"type":"string"}},"type":"object"},"petition_pdf":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"petition":{"authorized_representative_of_debtor":"James Vosotas","describe_debtor_business":"None or None of the above","estimated_assets":"Unknown","estimated_liabilities":"Unknown","estimated_number_of_creditors":"1-49","location_place_of_business":null,"naics":{"code":null,"industry":null},"principal_place_of_business":{"city":"Boca Raton","country":"US","postal_code":"33431","state":"FL","street":"771 NE Marine Dr"},"title":"Authorized Representative","website":null}},"schema":{"properties":{"links":{"properties":{"case":{"properties":{"href":{"type":"string"}},"type":"object"},"petition_pdf":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"petition":{"properties":{"authorized_representative_of_debtor":{"type":"string"},"describe_debtor_business":{"type":"string"},"estimated_assets":{"type":"string"},"estimated_number_of_creditors":{"type":"string"},"location_place_of_business":{"properties":{"city":{"type":"string"},"country":{"type":"string"},"postal_code":{"type":"string"},"state":{"type":"string"},"street":{"type":"string"}},"type":"object"},"naics":{"properties":{"code":{"type":"integer"},"industry":{"type":"string"}},"type":"object"},"principal_place_of_business":{"properties":{"city":{"type":"string"},"country":{"type":"string"},"postal_code":{"type":"string"},"state":{"type":"string"},"street":{"type":"string"}},"type":"object"},"title":{"type":"string"},"website":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <petition>\n    <authorized_representative_of_debtor>James Vosotas<\/authorized_representative_of_debtor>\n    <describe_debtor_business>None or None of the above<\/describe_debtor_business>\n    <estimated_assets>Unknown<\/estimated_assets>\n    <estimated_liabilities>Unknown<\/estimated_assets>\n    <estimated_number_of_creditors>1-49<\/estimated_number_of_creditors>\n    <location_place_of_business>\n      <city>Boca Raton<\/city>\n      <country>US<\/country>\n      <postal_code>33431<\/postal_code>\n      <state>FL<\/state>\n      <street>771 NE Marine Dr<\/street>\n    <\/location_place_of_business>\n    <naics>\n      <\/code>\n      <\/industry>\n    <\/naics>\n    <principal_place_of_business>\n      <city>Boca Raton<\/city>\n      <country><\/country>\n      <postal_code>33431<\/postal_code>\n      <state>FL<\/state>\n      <street>771 NE Marine Dr<\/street>\n    <\/principal_place_of_business>\n    <title>Authorized Representative<\/title>\n    <\/website>\n  <\/petition>\n  <links>\n    <case>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-31088<\/href>\n    <\/case>\n    <petition_pdf>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-31088\/key-documents\/petition.pdf<\/href>\n    <\/petition_pdf>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-31088\/key-documents\/petition.json<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"Case petition data"},"400":{"description":"Petitions are available for bankruptcy cases only"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"403":{"description":"Plan does not include access to petitions."},"404":{"description":"Petition Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get Case Petition","tags":["case","key-documents","petitions"],"x-courtapi-plans":["Court Pro","Court Elite","Court Enterprise","Enterprise Sandbox"],"x-courtapi-resource":"petition","x-courtapi-source":"local","x-courtdrive-async-desc":"Case Petition of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_case_petition","x-mojo-to":"PACER::Case::Petition#get_case_petition"},"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}]},"\/cases\/pacer\/{court_code}\/{case_number}\/key-documents\/petition.pdf":{"get":{"description":"Get JSON containing the links to the petition PDFs","responses":{"200":{"content":{"application\/json":{"example":{"document":{"download_url":"https:\/\/storage.courtapi.com","is_cached":true,"ocr_link":"https:\/\/storage.courtapi.com","preview_url":"https:\/\/storage.courtapi.com"},"links":{"case":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-31088"},"petition":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-31088\/key-documents\/petition.json"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-31088\/key-documents\/petition.pdf"}},"origin":"cache"},"schema":{"properties":{"document":{"properties":{"download_url":{"type":"string"},"is_cached":{"type":"boolean"},"ocr_link":{"type":"string"},"preview_url":{"type":"string"}},"type":"object"},"links":{"properties":{"case":{"properties":{"href":{"type":"string"}},"type":"object"},"petition":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"origin":{"type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <document>\n    <download_url>https:\/\/storage-courtapi-com<\/download_url>\n    <is_cached>true<\/is_cached>\n    <ocr_link>https:\/\/storage-courtapi-com<\/ocr_link>\n    <preview_url>https:\/\/storage-courtapi-com<\/preview_url>\n  <\/document>\n  <origin>cache<\/origin>\n  <links>\n    <case>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-31088<\/href>\n    <\/case>\n    <petition>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-31088\/key-documents\/petition.json<\/href>\n    <\/petition>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-31088\/key-documents\/petition.pdf<\/href>\n    <\/self>\n  <\/links>\n  <origin>cache<\/origin>\n<\/result>\n"}},"description":"Case petition pdf result"},"400":{"description":"Petitions are available for bankruptcy cases only"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"403":{"description":"Plan does not include access to petitions."},"404":{"description":"Petition PDF Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get Case Petition PDF Links","tags":["case","key-documents","petitions"],"x-courtapi-plans":["Court Pro","Court Elite","Court Enterprise","Enterprise Sandbox"],"x-courtapi-resource":"petition","x-courtapi-source":"local","x-courtdrive-async-desc":"Case Petition PDF of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_case_petition_pdf","x-mojo-to":"PACER::Case::Petition#get_case_petition_pdf"},"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}]},"\/cases\/pacer\/{court_code}\/{case_number}\/key-documents\/schedule-{type}":{"get":{"description":"Get JSON format data from schedule documents. Billing consumes one API call per result entry, with a minimum charge of one API call when there are no results.\n","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"in":"path","name":"type","required":true,"schema":{"enum":["d","ef","top20"],"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"schema":{"type":"object"}}},"description":"OK"},"400":{"description":"Internal errors"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"403":{"description":"Access denied"},"404":{"description":"Case Not Found in Database"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get Case Schedule Document Data","tags":["case","key-documents"],"x-courtapi-plans":["Court Enterprise","Enterprise Sandbox"],"x-courtapi-resource":"schedule-json","x-courtapi-source":"local","x-courtdrive-async-desc":"Schedule-{{type}} document for {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_case_key_documents_schedule_json","x-mojo-to":"PACER::Case::KeyDocuments#schedule_json"}},"\/cases\/pacer\/{court_code}\/{case_number}\/key-documents\/schedule-{type}.pdf":{"get":{"description":"Get JSON with links to the Case Schedule Documents\n","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"in":"path","name":"type","required":true,"schema":{"enum":["a","ab","d","e","ef","f","top20"],"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"document":{"download_url":"http:\/\/storage.courtapi.com\/...","is_cached":true,"preview_url":"http:\/\/storage.courtapi.com\/\/...","schedule_type":"ab"},"links":{"case":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:22-bk-12345"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:22-bk-12345\/key-documents\/schedule-ab.pdf"}},"origin":"cache"},"schema":{"properties":{"document":{"properties":{"download_url":{"type":"string"},"preview_url":{"type":"string"},"schedule_type":{"enum":["a","ab","d","e","ef","f","top20"],"type":"string"}},"type":"object"},"links":{"properties":{"case":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"origin":{"type":"string"}},"type":"object"}},"text\/xml":{"example":"<result>\n  <document>\n    <preview_url>http:\/\/storage.courtapi.com\/...<\/preview_url>\n    <download_url>http:\/\/storage.courtapi.com\/...<\/download_url>\n    <schedule_type>ab<\/schedule_type>\n    <is_cached>true<\/is_cached>\n  <\/document>\n  <origin>cache<\/origin>\n  <links>\n    <case>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:22-bk-12345<\/href>\n    <\/case>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:22-bk-12345\/key-documents\/schedule-ab.pdf<\/href>\n    <\/self>\n  <\/links>\n<\/result>\n"}},"description":"Case Schedule Documents"},"400":{"description":"Internal errors"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"403":{"content":{"application\/json":{"example":{"error":{"details":"You must suscribe one of the following plans to access this endpoint: court pro, court elite, court enterprise\n","status":403},"status":"forbidden"},"schema":{"properties":{"error":{"properties":{"details":{"type":"string"},"status":{"type":"integer"}},"type":"object"},"status":{"type":"string"}},"type":"object"}}},"description":"Access denied"},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found in Database"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get Case Schedule Document PDFs","tags":["case","key-documents"],"x-courtapi-plans":["Court Elite","Court Enterprise","Court Pro","Enterprise Sandbox","Sandbox"],"x-courtapi-resource":"schedule-document","x-courtapi-source":"local","x-courtdrive-async-desc":"Schedule-{{type}} document for {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_case_key_documents_schedule","x-mojo-to":"PACER::Case::KeyDocuments#schedule"}},"\/cases\/pacer\/{court_code}\/{case_number}\/key-documents\/schedule-{type}.txt":{"get":{"description":"Get JSON with links to the Case Schedule Documents\n","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"in":"path","name":"type","required":true,"schema":{"enum":["a","ab","d","e","ef","f","top20"],"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"document":{"schedule_type":"ab","text":"Sample text"},"links":{"case":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:22-bk-12345"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:22-bk-12345\/key-documents\/schedule-ab.pdf"}}},"schema":{"properties":{"document":{"properties":{"schedule_type":{"enum":["a","ab","d","e","ef","f","top20"],"type":"string"},"text":{"type":"string"}},"type":"object"},"links":{"properties":{"case":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}}},"description":"Case Schedule Documents"},"400":{"description":"Internal errors"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"403":{"content":{"application\/json":{"example":{"error":{"details":"You must suscribe one of the following plans to access this endpoint: court pro, court elite, court enterprise\n","status":403},"status":"forbidden"},"schema":{"properties":{"error":{"properties":{"details":{"type":"string"},"status":{"type":"integer"}},"type":"object"},"status":{"type":"string"}},"type":"object"}}},"description":"Access denied"},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found in Database"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get Case Schedule Document PDF OCR","tags":["case","key-documents"],"x-courtapi-plans":["Court Elite","Court Enterprise","Court Pro","Enterprise Sandbox","Sandbox"],"x-courtapi-resource":"schedule-document","x-courtapi-source":"local","x-courtdrive-async-desc":"Schedule-{{type}} document OCR for {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_case_key_documents_schedule_ocr","x-mojo-to":"PACER::Case::KeyDocuments#schedule_ocr"}},"\/cases\/pacer\/{court_code}\/{case_number}\/notice":{"get":{"description":"Case Notice of Bankruptcy Filings","operationId":"getNotice","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"civil","case_no":"3:92-cv-30321","case_title":"UNITED STATES v. INTERNATL FIDELITY","case_type":"cv","cause":null,"ch11_type":null,"chapter":null,"court_code":"flndce","date_closed":"04\/11\/1997","date_discharged":null,"date_filed":"08\/25\/1992","date_of_last_filing":"09\/08\/2000","date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":false,"is_ok_to_list_publicly":false,"judge_name":"LACEY A COLLIER","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2022-01-21T04:57:14.362364Z","naics_code":130,"nature_of_debt":"~","nature_of_suit_code":130,"petition_type":null,"plan_confirmed":null,"referred_to":null},"links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30279"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30279\/notice","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30279\/notice"}},"notice":{"html":null,"timestamp":null}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"notice":{"properties":{"html":{"type":"string"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>civil<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>3:92-cv-30279<\/case_no>\n    <case_title>USA v. SMITH, et al<\/case_title>\n    <case_type>cv<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter\/>\n    <court_code>flndce<\/court_code>\n    <date_closed>06\/29\/1994<\/date_closed>\n    <date_discharged\/>\n    <date_filed>07\/23\/1992<\/date_filed>\n    <date_of_last_filing\/>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name\/>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2019-04-29T08:58:08.482640Z<\/modified>\n    <nature_of_suit_code>891<\/nature_of_suit_code>\n    <petition_type\/>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <links>\n    <menu>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30279<\/href>\n    <\/menu>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30279\/notice<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:92-cv-30279\/notice<\/href>\n    <\/self>\n  <\/links>\n  <notice>\n    <html\/>\n    <timestamp\/>\n  <\/notice>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Case Notice of Bankruptcy Filings","tags":["case"],"x-courtapi-resource":"notice","x-courtapi-source":"local","x-courtdrive-async-desc":"Case notice of bankruptcy filings for {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_notice","x-mojo-to":"PACER::Case#notice"},"post":{"description":"PACER Query Case Notice","operationId":"updateNotice","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":null,"case_chapter_id":1,"case_court_id":221,"case_id_external":449308,"case_no":"3:14-bk-30029","case_petition_id":1,"case_title":"Henock Hagos and Adhanet Habtay Mehretab","case_type_id":1,"cause":null,"ch11_type":null,"ch11_type_code":null,"chapter":7,"court":"orbtrain","court_name":"orbtrain","created":"2019-05-01T09:00:30.562568Z","date_closed":null,"date_discharged":"04\/08\/2014","date_filed":"01\/06\/2014","date_of_last_filing":"04\/29\/2019","date_plan_confirmed":null,"date_terminated":null,"disabled":0,"disposition":null,"has_asset":0,"is_business_bankruptcy":null,"is_ok_to_list_publicly":false,"judge_name":"Trish M Brown","jurisdiction":null,"jury_demand":null,"lead_case_uuid":null,"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029"}},"modified":"2019-05-01T09:00:30.562568Z","nature_of_debt":null,"nature_of_suit_code":null,"ncl_parties":[],"referred_to":null,"schedule_ab":null,"timestamp":"2019-05-01T09:00:30.562570Z","title":"Henock Hagos and Adhanet Habtay Mehretab","uri_id":85058464},"notice":"<p align=\"center\">United States Bankruptcy Court<br \/> District of Oregon<br \/><\/p> <table cellpadding=\"2\"><tr><td> <h3 align=\"left\">Notice of Bankruptcy Case Filing<\/h3><br \/> A bankruptcy case concerning the debtor(s) listed below was filed on 01\/06\/2014 under Chapter 7 of the United States Bankruptcy Code, and entered on 01\/06\/2014 at 11:07 AM.   <p id=\"3\"> <B>Henock Hagos<\/B> <BR>10535 E Burnside, &#035;23 <BR>Portland, OR 97216 <br>SSN \/ ITIN: xxx-xx-0783 <br><em>fdba<\/em> <B>Henock Hagos Amway Distributor<\/B> <\/p> <p id=\"6\"> <B>Adhanet Habtay Mehretab<\/B> <BR>10535 E Burnside, &#035;23 <BR>Portland, OR 97216 <br>SSN \/ ITIN: xxx-xx-7587 <br><em>fdba<\/em> <B>Adhanet Mehretab Med. Trans.<\/B> <\/p> <\/TD><TD valign=top> <!-- <IMG align=right SRC='https:\/\/ecf-train.orb.uscourts.gov\/cgi-bin\/SealFly.pl?01\/06\/2014&11:07+AM'> --> <IMG align=right SRC='https:\/\/ecf-train.orb.uscourts.gov\/cgi-bin\/SealFly.pl'> <\/td><\/tr><\/table> <table cellpadding=10><tr><td>The case was filed by the debtor's attorney:<\/td><td>The bankruptcy trustee is:<\/td><\/tr><tr><td valign=\"top\"> <p class=\"3\"><B>THEODORE J PITEO<\/B> <BR>Michael D. O&#039;Brien & Associates <BR>9200 SE Sunnybrook Blvd &#035;150 <BR>Clackamas, OR 97015 <BR>(503) 786-3800<\/p> <\/td><td valign=top><B>Amy E Mitchell<\/B> <BR>POB 2289 <BR>Lake Oswego, OR 97035 <BR>(503) 675-9955<\/td><\/tr><\/table>The case was assigned case number 14-30029-tmb7 to Judge Trish M Brown. <p> In most instances, the filing of the bankruptcy case automatically stays certain collection and other actions against the debtor and the debtor's property. Under certain circumstances, the stay may be limited to 30 days or not exist at all, although the debtor can request the court to extend or impose a stay. If you attempt to collect a debt or take other action in violation of the Bankruptcy Code, you may be penalized. Consult a lawyer to determine your rights in this case. <\/p> <p>If you would like to view the bankruptcy petition and other documents filed by the debtor, they are available at our <i>Internet<\/i> home page https:\/\/ecf.orb.circ9.dcn\/ or at the Clerk's Office, 1050 SW 6th Ave. &#035;700, Portland, OR 97204., or at https:\/\/ecf.orb.uscourts.gov with a PACER login which may be obtained at http:\/\/www.pacer.gov. <\/p> <p>You may be a creditor of the debtor. If so, you will receive an additional notice from the court setting forth important deadlines. <\/p> <br> <TABLE CELLPADDING=2> <TR> <TD width=65%><\/TD> <TD><H3>U.S. Bankruptcy Court<\/H3><\/TD> <\/TR> <\/TABLE> ","receipts":{"client_code":"","cost":"0.10","criteria":"14-30029-tmb7","datetime":"05\/01\/2019 02:07:42","description":"Notice of Filing","pages":"1","timestamp":"2019-05-01T09:07:41.287450Z","user_id":"irtraining"}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"notice":{"type":"string"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_chapter_id>1<\/case_chapter_id>\n    <case_court_id>221<\/case_court_id>\n    <case_id_external>449308<\/case_id_external>\n    <case_no>3:14-bk-30029<\/case_no>\n    <case_petition_id>1<\/case_petition_id>\n    <case_title>Henock Hagos and Adhanet Habtay Mehretab<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <cause\/>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter>7<\/chapter>\n    <court>orbtrain<\/court>\n    <court_name>orbtrain<\/court_name>\n    <created>2019-05-01T09:00:30.562568Z<\/created>\n    <date_closed\/>\n    <date_discharged>04\/08\/2014<\/date_discharged>\n    <date_filed>01\/06\/2014<\/date_filed>\n    <date_of_last_filing>04\/29\/2019<\/date_of_last_filing>\n    <date_plan_confirmed\/>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>0<\/has_asset>\n    <is_business_bankruptcy\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Trish M Brown<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <lead_case_uuid\/>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029<\/href>\n      <\/self>\n    <\/links>\n    <modified>2019-05-01T09:00:30.562568Z<\/modified>\n    <nature_of_debt\/>\n    <nature_of_suit_code\/>\n    <referred_to\/>\n    <schedule_ab\/>\n    <timestamp>2019-05-01T09:00:30.562570Z<\/timestamp>\n    <title>Henock Hagos and Adhanet Habtay Mehretab<\/title>\n    <uri_id>85058464<\/uri_id>\n  <\/case>\n  <notice>&lt;p align=\"center\"&gt;United States Bankruptcy Court&lt;br \/&gt; District of Oregon&lt;br \/&gt;&lt;\/p&gt; &lt;table cellpadding=\"2\"&gt;&lt;tr&gt;&lt;td&gt; &lt;h3 align=\"left\"&gt;Notice of Bankruptcy Case Filing&lt;\/h3&gt;&lt;br \/&gt; A bankruptcy case concerning the debtor(s) listed below was filed on 01\/06\/2014 under Chapter 7 of the United States Bankruptcy Code, and entered on 01\/06\/2014 at 11:07 AM.   &lt;p id=\"3\"&gt; &lt;B&gt;Henock Hagos&lt;\/B&gt; &lt;BR&gt;10535 E Burnside, &amp;#035;23 &lt;BR&gt;Portland, OR 97216 &lt;br&gt;SSN \/ ITIN: xxx-xx-0783 &lt;br&gt;&lt;em&gt;fdba&lt;\/em&gt; &lt;B&gt;Henock Hagos Amway Distributor&lt;\/B&gt; &lt;\/p&gt; &lt;p id=\"6\"&gt; &lt;B&gt;Adhanet Habtay Mehretab&lt;\/B&gt; &lt;BR&gt;10535 E Burnside, &amp;#035;23 &lt;BR&gt;Portland, OR 97216 &lt;br&gt;SSN \/ ITIN: xxx-xx-7587 &lt;br&gt;&lt;em&gt;fdba&lt;\/em&gt; &lt;B&gt;Adhanet Mehretab Med. Trans.&lt;\/B&gt; &lt;\/p&gt; &lt;\/TD&gt;&lt;TD valign=top&gt; &lt;!-- &lt;IMG align=right SRC='https:\/\/ecf-train.orb.uscourts.gov\/cgi-bin\/SealFly.pl?01\/06\/2014&amp;11:07+AM'&gt; --&gt; &lt;IMG align=right SRC='https:\/\/ecf-train.orb.uscourts.gov\/cgi-bin\/SealFly.pl'&gt; &lt;\/td&gt;&lt;\/tr&gt;&lt;\/table&gt; &lt;table cellpadding=10&gt;&lt;tr&gt;&lt;td&gt;The case was filed by the debtor's attorney:&lt;\/td&gt;&lt;td&gt;The bankruptcy trustee is:&lt;\/td&gt;&lt;\/tr&gt;&lt;tr&gt;&lt;td valign=\"top\"&gt; &lt;p class=\"3\"&gt;&lt;B&gt;THEODORE J PITEO&lt;\/B&gt; &lt;BR&gt;Michael D. O&amp;#039;Brien &amp; Associates &lt;BR&gt;9200 SE Sunnybrook Blvd &amp;#035;150 &lt;BR&gt;Clackamas, OR 97015 &lt;BR&gt;(503) 786-3800&lt;\/p&gt; &lt;\/td&gt;&lt;td valign=top&gt;&lt;B&gt;Amy E Mitchell&lt;\/B&gt; &lt;BR&gt;POB 2289 &lt;BR&gt;Lake Oswego, OR 97035 &lt;BR&gt;(503) 675-9955&lt;\/td&gt;&lt;\/tr&gt;&lt;\/table&gt;The case was assigned case number 14-30029-tmb7 to Judge Trish M Brown. &lt;p&gt; In most instances, the filing of the bankruptcy case automatically stays certain collection and other actions against the debtor and the debtor's property. Under certain circumstances, the stay may be limited to 30 days or not exist at all, although the debtor can request the court to extend or impose a stay. If you attempt to collect a debt or take other action in violation of the Bankruptcy Code, you may be penalized. Consult a lawyer to determine your rights in this case. &lt;\/p&gt; &lt;p&gt;If you would like to view the bankruptcy petition and other documents filed by the debtor, they are available at our &lt;i&gt;Internet&lt;\/i&gt; home page https:\/\/ecf.orb.circ9.dcn\/ or at the Clerk's Office, 1050 SW 6th Ave. &amp;#035;700, Portland, OR 97204., or at https:\/\/ecf.orb.uscourts.gov with a PACER login which may be obtained at http:\/\/www.pacer.gov. &lt;\/p&gt; &lt;p&gt;You may be a creditor of the debtor. If so, you will receive an additional notice from the court setting forth important deadlines. &lt;\/p&gt; &lt;br&gt; &lt;TABLE CELLPADDING=2&gt; &lt;TR&gt; &lt;TD width=65%&gt;&lt;\/TD&gt; &lt;TD&gt;&lt;H3&gt;U.S. Bankruptcy Court&lt;\/H3&gt;&lt;\/TD&gt; &lt;\/TR&gt; &lt;\/TABLE&gt; <\/notice>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>14-30029-tmb7<\/criteria>\n    <datetime>05\/01\/2019 02:07:42<\/datetime>\n    <description>Notice of Filing<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T09:07:41.287450Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Notice","tags":["query"],"x-courtapi-resource":"notice","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Notice update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_notice","x-mojo-to":"PACER::Query#pacer_query_notice"}},"\/cases\/pacer\/{court_code}\/{case_number}\/parties":{"get":{"description":"All parties for case","operationId":"getParties","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"civil","case_no":"3:92-cv-30321","case_title":"UNITED STATES v. INTERNATL FIDELITY","case_type":"cv","cause":null,"ch11_type":null,"chapter":null,"court_code":"flndce","date_closed":"04\/11\/1997","date_discharged":null,"date_filed":"08\/25\/1992","date_of_last_filing":"09\/08\/2000","date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":false,"is_ok_to_list_publicly":false,"judge_name":"LACEY A COLLIER","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2022-01-21T04:57:14.362364Z","naics_code":130,"nature_of_debt":"~","nature_of_suit_code":130,"petition_type":null,"plan_confirmed":null,"referred_to":null},"links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:12-bk-12859"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:12-bk-12859\/parties","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:12-bk-12859\/parties"}},"parties":[{"associated":[{"address":"Pepper Hamilton LLP\nHercules Plaza, Suite 5100\n1313 Market Street\nWilmington, DE 19801\nAssigned: 12\/05\/12","email":"carignaj@pepperlaw.com","fax":"302-421-8390","lead":null,"name":"James C. Carignan","phone":"302-777-6500"}],"party":{"added_date":"12\/05\/2012","address":null,"case_party_id":3480,"email":null,"fax":null,"labels":[],"modified":"2013-09-19 16:36:15.677312+00","name":"39000 Associates, LLC","phone":null,"role":"Interested Party"}}],"timestamp":"2013-09-19T16:36:27.781130Z"},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"associated":{"items":{"properties":{"address":{"type":"string"},"email":{"type":"string"},"fax":{"type":"string"},"lead":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"}},"type":"object"},"type":"array"},"party":{"properties":{"added_date":{"type":"string"},"address":{"type":"string"},"email":{"type":"string"},"fax":{"type":"string"},"labels":{"items":{"type":"string"},"type":"array"},"modified":{"format":"date-time","type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"}},"type":"object"}},"type":"object"},"type":"array"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"}},"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{"schema":{"format":"binary","type":"string"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>1:12-bk-12859<\/case_no>\n    <case_title>B456 Systems, Inc.<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter>11<\/chapter>\n    <court_code>debke<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>10\/16\/2012<\/date_filed>\n    <date_of_last_filing>06\/02\/2015<\/date_of_last_filing>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>No<\/has_asset>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Kevin J. Carey<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2017-07-09T05:13:32.653410Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type>v<\/petition_type>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <links>\n    <menu>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:12-bk-12859<\/href>\n    <\/menu>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:12-bk-12859\/parties<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:12-bk-12859\/parties<\/href>\n    <\/self>\n  <\/links>\n  <parties>\n    <associated>\n      <address>Pepper Hamilton LLP\nHercules Plaza, Suite 5100 1313 Market Street Wilmington, DE 19801 Assigned: 12\/05\/12<\/address>\n      <email>carignaj@pepperlaw.com<\/email>\n      <fax>302-421-8390<\/fax>\n      <lead\/>\n      <name>James C. Carignan<\/name>\n      <phone>302-777-6500<\/phone>\n    <\/associated>\n    <party>\n      <added_date>12\/05\/2012<\/added_date>\n      <address\/>\n      <case_party_id>3480<\/case_party_id>\n      <email\/>\n      <fax\/>\n      <labels\/>\n      <modified>2013-09-19 16:36:15.677312+00<\/modified>\n      <name>39000 Associates, LLC<\/name>\n      <phone\/>\n      <role>Interested Party<\/role>\n    <\/party>\n  <\/parties>\n  <timestamp>2013-09-19T16:36:27.781130Z<\/timestamp>\n<\/result>\n"},"text\/csv":{"example":"Name,Company,Street,P.O. Box,City,State,Zip,Phone,Email\n\"39000 Associates, LLC\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"\n","schema":{"type":"string"}}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"All parties for case","tags":["case"],"x-courtapi-resource":"parties","x-courtapi-source":"local","x-courtdrive-async-desc":"Parties of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_parties","x-mojo-to":["PACER::Case#parties",{},["format",["json","csv","xlsx"]]]},"post":{"description":"PACER Query Case Parties","operationId":"updateParties","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":null,"case_chapter_id":1,"case_court_id":221,"case_id_external":449308,"case_no":"3:14-bk-30029","case_petition_id":1,"case_title":"Henock Hagos and Adhanet Habtay Mehretab","case_type_id":1,"cause":null,"ch11_type":null,"ch11_type_code":null,"chapter":7,"court":"orbtrain","court_name":"orbtrain","created":"2019-05-01T09:00:30.562568Z","date_closed":null,"date_discharged":"04\/08\/2014","date_filed":"01\/06\/2014","date_of_last_filing":"04\/29\/2019","date_plan_confirmed":null,"date_terminated":null,"disabled":0,"disposition":null,"has_asset":0,"is_business_bankruptcy":null,"is_ok_to_list_publicly":false,"judge_name":"Trish M Brown","jurisdiction":null,"jury_demand":null,"lead_case_uuid":null,"links":{"self":{"href":"https:\/\/courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029"}},"modified":"2019-05-01T14:44:57.733401Z","nature_of_debt":null,"nature_of_suit_code":null,"ncl_parties":[],"referred_to":null,"schedule_ab":null,"timestamp":"2019-05-01T14:44:57.733400Z","title":"Henock Hagos and Adhanet Habtay Mehretab","uri_id":85058464},"parties":[{"associated":[{"address":"Michael D. O'Brien & Associates\n9200 SE Sunnybrook Blvd #150\nClackamas, OR 97015","assigned_date":"01\/06\/14","lead":"LEAD ATTORNEY","name":"THEODORE J PITEO","phone":"503-786-3800","role":"LEAD ATTORNEY"}],"party":{"added_date":"01\/06\/2014","address":"10535 E Burnside, #23\nPortland, OR 97216","labels":[],"name":"Henock Hagos","role":"Debtor","ssn":"xxx-xx-0783"}}],"receipts":{"client_code":"","cost":"0.10","criteria":"14-30029-tmb7","datetime":"05\/01\/2019 07:44:57","description":"Party List","pages":"1","timestamp":"2019-05-01T14:44:56.113567Z","user_id":"irtraining"}},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"parties":{"items":{"properties":{"associated":{"items":{"properties":{"address":{"type":"string"},"assigned_date":{"type":"string"},"lead":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"}},"type":"object"},"type":"array"},"party":{"properties":{"added_date":{"type":"string"},"address":{"type":"string"},"labels":{"items":{"type":"string"},"type":"array"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"}},"type":"object"}},"type":"object"},"type":"array"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_chapter_id>1<\/case_chapter_id>\n    <case_court_id>221<\/case_court_id>\n    <case_id_external>449308<\/case_id_external>\n    <case_no>3:14-bk-30029<\/case_no>\n    <case_petition_id>1<\/case_petition_id>\n    <case_title>Henock Hagos and Adhanet Habtay Mehretab<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <cause\/>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter>7<\/chapter>\n    <court>orbtrain<\/court>\n    <court_name>orbtrain<\/court_name>\n    <created>2019-05-01T09:00:30.562568Z<\/created>\n    <date_closed\/>\n    <date_discharged>04\/08\/2014<\/date_discharged>\n    <date_filed>01\/06\/2014<\/date_filed>\n    <date_of_last_filing>04\/29\/2019<\/date_of_last_filing>\n    <date_plan_confirmed\/>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>0<\/has_asset>\n    <is_business_bankruptcy\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Trish M Brown<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <lead_case_uuid\/>\n    <links>\n      <self>\n        <href>https:\/\/courtapi.com\/cases\/pacer\/orbtrain\/3:14-bk-30029<\/href>\n      <\/self>\n    <\/links>\n    <modified>2019-05-01T14:44:57.733401Z<\/modified>\n    <nature_of_debt\/>\n    <nature_of_suit_code\/>\n    <referred_to\/>\n    <schedule_ab\/>\n    <timestamp>2019-05-01T14:44:57.733400Z<\/timestamp>\n    <title>Henock Hagos and Adhanet Habtay Mehretab<\/title>\n    <uri_id>85058464<\/uri_id>\n  <\/case>\n  <parties>\n    <associated>\n      <address>Michael D. O'Brien &amp; Associates\n9200 SE Sunnybrook Blvd #150 Clackamas, OR 97015<\/address>\n      <assigned_date>01\/06\/14<\/assigned_date>\n      <lead>LEAD ATTORNEY<\/lead>\n      <name>THEODORE J PITEO<\/name>\n      <phone>503-786-3800<\/phone>\n      <role>LEAD ATTORNEY<\/role>\n    <\/associated>\n    <party>\n      <added_date>01\/06\/2014<\/added_date>\n      <address>10535 E Burnside, #23\nPortland, OR 97216<\/address>\n      <labels\/>\n      <name>Henock Hagos<\/name>\n      <role>Debtor<\/role>\n      <ssn>xxx-xx-0783<\/ssn>\n    <\/party>\n  <\/parties>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>14-30029-tmb7<\/criteria>\n    <datetime>05\/01\/2019 07:44:57<\/datetime>\n    <description>Party List<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T14:44:56.113567Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Parties","tags":["query"],"x-courtapi-resource":"parties","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Parties update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_parties","x-mojo-to":"PACER::Query#pacer_query_parties"}},"\/cases\/pacer\/{court_code}\/{case_number}\/schedule":{"get":{"description":"Schedule for case","operationId":"getSchedule","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"civil","case_no":"3:92-cv-30321","case_title":"UNITED STATES v. INTERNATL FIDELITY","case_type":"cv","cause":null,"ch11_type":null,"chapter":null,"court_code":"flndce","date_closed":"04\/11\/1997","date_discharged":null,"date_filed":"08\/25\/1992","date_of_last_filing":"09\/08\/2000","date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":false,"is_ok_to_list_publicly":false,"judge_name":"LACEY A COLLIER","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2022-01-21T04:57:14.362364Z","naics_code":130,"nature_of_debt":"~","nature_of_suit_code":130,"petition_type":null,"plan_confirmed":null,"referred_to":null},"links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/azbtest\/0:05-bk-00014"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/azbtest\/0:05-bk-00014\/schedule","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/azbtest\/0:05-bk-00014\/schedule"}},"schedule":[{"date_due_set":"02\/03\/2016","date_event_filed":"01\/07\/2016","date_satisfied":"02\/02\/2016","date_terminated":null,"doc_no":"29","event_name":"Hearing","hearing_judge":"Opel, Robert N","modified":"2019-04-29T09:00:56.929798Z"},{"date_due_set":"03\/12\/2016","date_event_filed":"02\/17\/2016","date_satisfied":null,"date_terminated":null,"doc_no":"37","event_name":"Objections Due","hearing_judge":"","modified":"2019-04-29T09:00:56.956411Z"}],"timestamp":"2019-04-29T09:00:56.956410Z"},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"schedule":{"items":{"properties":{"date_due_set":{"type":"string"},"date_event_filed":{"type":"string"},"date_satisfied":{"type":"string"},"doc_no":{"type":"number"},"event_name":{"type":"string"},"hearing_judge":{"type":"string"},"modified":{"format":"date-time","type":"string"}},"type":"object"},"type":"array"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>0:05-bk-00014<\/case_no>\n    <case_title>ADA SMITH<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter\/>\n    <court_code>azbtest<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed\/>\n    <date_of_last_filing\/>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name\/>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2019-04-29T09:00:56.549140Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type\/>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <links>\n    <menu>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/azbtest\/0:05-bk-00014<\/href>\n    <\/menu>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/azbtest\/0:05-bk-00014\/schedule<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/azbtest\/0:05-bk-00014\/schedule<\/href>\n    <\/self>\n  <\/links>\n  <schedule>\n    <date_due_set>02\/03\/2016<\/date_due_set>\n    <date_event_filed>01\/07\/2016<\/date_event_filed>\n    <date_satisfied>02\/02\/2016<\/date_satisfied>\n    <date_terminated\/>\n    <doc_no>29<\/doc_no>\n    <event_name>Hearing<\/event_name>\n    <hearing_judge>Opel, Robert N<\/hearing_judge>\n    <modified>2019-04-29T09:00:56.929798Z<\/modified>\n  <\/schedule>\n  <schedule>\n    <date_due_set>03\/12\/2016<\/date_due_set>\n    <date_event_filed>02\/17\/2016<\/date_event_filed>\n    <date_satisfied\/>\n    <date_terminated\/>\n    <doc_no>37<\/doc_no>\n    <event_name>Objections Due<\/event_name>\n    <hearing_judge><\/hearing_judge>\n    <modified>2019-04-29T09:00:56.956411Z<\/modified>\n  <\/schedule>\n  <timestamp>2019-04-29T09:00:56.956410Z<\/timestamp>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Schedule for case","tags":["case"],"x-courtapi-resource":"schedule","x-courtapi-source":"local","x-courtdrive-async-desc":"Case schedule for {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_schedule","x-mojo-to":"PACER::Case#schedule"},"post":{"description":"PACER Query Case Schedule","operationId":"updateSchedule","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":null,"case_chapter_id":3,"case_court_id":221,"case_id_external":460025,"case_no":"3:17-bk-30057","case_petition_id":1,"case_title":"PiclepackingBusiness Picklepuss Steinfieldsmithjon","case_type_id":1,"cause":null,"ch11_type":null,"ch11_type_code":null,"chapter":11,"court":"orbtrain","court_name":"orbtrain","created":"2019-05-01T14:40:05.384459Z","date_closed":null,"date_discharged":null,"date_filed":"11\/22\/2017","date_of_last_filing":"03\/05\/2019","date_plan_confirmed":null,"date_terminated":null,"disabled":0,"disposition":null,"has_asset":1,"is_business_bankruptcy":null,"is_ok_to_list_publicly":false,"judge_name":"Peter C McKittrick","jurisdiction":null,"jury_demand":null,"lead_case_uuid":null,"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:17-bk-30057"}},"modified":"2019-05-01T14:53:02.917881Z","nature_of_debt":null,"nature_of_suit_code":null,"ncl_parties":[],"referred_to":null,"schedule_ab":null,"timestamp":"2019-05-01T14:53:02.917880Z","title":"PiclepackingBusiness Picklepuss Steinfieldsmithjon","uri_id":85058472},"receipts":{"client_code":"","cost":"0.10","criteria":"17-30057-pcm11","datetime":"05\/01\/2019 07:53:02","description":"Deadline\/Schedule","pages":"1","timestamp":"2019-05-01T14:53:01.345632Z","user_id":"irtraining"},"schedule":[{"date_due_set":"11\/29\/2017","date_event_filed":"11\/22\/2017","date_satisfied":"","date_terminated":"","doc_no":"1","event_name":"Case Tickler","hearing_judge":""}]},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"schedule":{"items":{"properties":{"date_due_set":{"type":"string"},"date_event_filed":{"type":"string"},"date_satisfied":{"type":"string"},"date_terminated":{"type":"string"},"doc_no":{"type":"integer"},"event_name":{"type":"string"},"hearing_judge":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_chapter_id>3<\/case_chapter_id>\n    <case_court_id>221<\/case_court_id>\n    <case_id_external>460025<\/case_id_external>\n    <case_no>3:17-bk-30057<\/case_no>\n    <case_petition_id>1<\/case_petition_id>\n    <case_title>PiclepackingBusiness Picklepuss Steinfieldsmithjon<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <cause\/>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter>11<\/chapter>\n    <court>orbtrain<\/court>\n    <court_name>orbtrain<\/court_name>\n    <created>2019-05-01T14:40:05.384459Z<\/created>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>11\/22\/2017<\/date_filed>\n    <date_of_last_filing>03\/05\/2019<\/date_of_last_filing>\n    <date_plan_confirmed\/>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>1<\/has_asset>\n    <is_business_bankruptcy\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Peter C McKittrick<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <lead_case_uuid\/>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:17-bk-30057<\/href>\n      <\/self>\n    <\/links>\n    <modified>2019-05-01T14:53:02.917881Z<\/modified>\n    <nature_of_debt\/>\n    <nature_of_suit_code\/>\n    <referred_to\/>\n    <schedule_ab\/>\n    <timestamp>2019-05-01T14:53:02.917880Z<\/timestamp>\n    <title>PiclepackingBusiness Picklepuss Steinfieldsmithjon<\/title>\n    <uri_id>85058472<\/uri_id>\n  <\/case>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>17-30057-pcm11<\/criteria>\n    <datetime>05\/01\/2019 07:53:02<\/datetime>\n    <description>Deadline\/Schedule<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T14:53:01.345632Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n  <schedule>\n    <date_due_set>11\/29\/2017<\/date_due_set>\n    <date_event_filed>11\/22\/2017<\/date_event_filed>\n    <date_satisfied><\/date_satisfied>\n    <date_terminated><\/date_terminated>\n    <doc_no>1<\/doc_no>\n    <event_name>Case Tickler<\/event_name>\n    <hearing_judge><\/hearing_judge>\n  <\/schedule>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Schedule","tags":["query"],"x-courtapi-resource":"schedule","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Schedule update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_schedule","x-mojo-to":"PACER::Query#pacer_query_schedule"}},"\/cases\/pacer\/{court_code}\/{case_number}\/status_pending":{"get":{"description":"Pending status for case","operationId":"getPendingStatus","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"civil","case_no":"3:92-cv-30321","case_title":"UNITED STATES v. INTERNATL FIDELITY","case_type":"cv","cause":null,"ch11_type":null,"chapter":null,"court_code":"flndce","date_closed":"04\/11\/1997","date_discharged":null,"date_filed":"08\/25\/1992","date_of_last_filing":"09\/08\/2000","date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":false,"is_ok_to_list_publicly":false,"judge_name":"LACEY A COLLIER","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2022-01-21T04:57:14.362364Z","naics_code":130,"nature_of_debt":"~","nature_of_suit_code":130,"petition_type":null,"plan_confirmed":null,"referred_to":null},"links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:09-bk-50026"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:09-bk-50026\/status_pending","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:09-bk-50026\/status_pending"}},"status":[{"empty":"There Are No Pending Status Records For This Case."}],"timestamp":null},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"status_pending":{"items":{"properties":{"date_status_begin":{"type":"string"},"docket_no":{"type":"number"},"docket_related_uri":{"type":"string"},"has_pdf_link_on_pacer":{"type":"boolean"},"modified":{"format":"date-time","type":"string"},"status":{"type":"string"},"status_set_by":{"type":"string"},"time_in_status":{"type":"string"}},"type":"object"},"type":"array"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_category>bankruptcy<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>1:09-bk-50026<\/case_no>\n    <case_title>Motors Liquidation Company<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter>11<\/chapter>\n    <court_code>nysbke<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>06\/01\/2009<\/date_filed>\n    <date_of_last_filing\/>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>No<\/has_asset>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Robert E. Gerber<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2017-07-09T05:13:32.653410Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type>v<\/petition_type>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <links>\n    <menu>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:09-bk-50026<\/href>\n    <\/menu>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:09-bk-50026\/status_pending<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:09-bk-50026\/status_pending<\/href>\n    <\/self>\n  <\/links>\n  <status>\n    <empty>There Are No Pending Status Records For This Case.<\/empty>\n  <\/status>\n  <timestamp\/>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Pending status for case","tags":["case"],"x-courtapi-resource":"status-pending","x-courtapi-source":"local","x-courtdrive-async-desc":"Case pending status for {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_status_pending","x-mojo-to":"PACER::Case#status_pending"},"post":{"description":"PACER Query Case Status Pending","operationId":"updatePendingStatus","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":null,"case_chapter_id":3,"case_court_id":221,"case_id_external":460025,"case_no":"3:17-bk-30057","case_petition_id":1,"case_title":"PiclepackingBusiness Picklepuss Steinfieldsmithjon","case_type_id":1,"cause":null,"ch11_type":null,"ch11_type_code":null,"chapter":11,"court":"orbtrain","court_name":"orbtrain","created":"2019-05-01T14:40:05.384459Z","date_closed":null,"date_discharged":null,"date_filed":"11\/22\/2017","date_of_last_filing":"03\/05\/2019","date_plan_confirmed":null,"date_terminated":null,"disabled":0,"disposition":null,"has_asset":1,"is_business_bankruptcy":null,"is_ok_to_list_publicly":false,"judge_name":"Peter C McKittrick","jurisdiction":null,"jury_demand":null,"lead_case_uuid":null,"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:17-bk-30057"}},"modified":"2019-05-01T14:56:45.100929Z","nature_of_debt":null,"nature_of_suit_code":null,"ncl_parties":[],"referred_to":null,"schedule_ab":null,"timestamp":"2019-05-01T14:56:45.100930Z","title":"PiclepackingBusiness Picklepuss Steinfieldsmithjon","uri_id":85058472},"receipts":{"client_code":"","cost":"0.10","criteria":"17-30057-pcm11","datetime":"05\/01\/2019 07:56:44","description":"Status","pages":"1","timestamp":"2019-05-01T14:56:43.480959Z","user_id":"irtraining"},"status_pending":[{"date_status_begin":"11\/22\/2017","docket_no":"1","has_pdf_link_on_pacer":1,"status":"Awaiting Confirmation of Plan","status_set_by":"Chapter 11 Voluntary Petition - case upload","time_in_status":"525 days"}]},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"status_pending":{"items":{"properties":{"date_status_begin":{"type":"string"},"docket_no":{"type":"number"},"docket_related_uri":{"type":"string"},"has_pdf_link_on_pacer":{"type":"boolean"},"status":{"type":"string"},"status_set_by":{"type":"string"},"time_in_status":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_chapter_id>3<\/case_chapter_id>\n    <case_court_id>221<\/case_court_id>\n    <case_id_external>460025<\/case_id_external>\n    <case_no>3:17-bk-30057<\/case_no>\n    <case_petition_id>1<\/case_petition_id>\n    <case_title>PiclepackingBusiness Picklepuss Steinfieldsmithjon<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <cause\/>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter>11<\/chapter>\n    <court>orbtrain<\/court>\n    <court_name>orbtrain<\/court_name>\n    <created>2019-05-01T14:40:05.384459Z<\/created>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>11\/22\/2017<\/date_filed>\n    <date_of_last_filing>03\/05\/2019<\/date_of_last_filing>\n    <date_plan_confirmed\/>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>1<\/has_asset>\n    <is_business_bankruptcy\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Peter C McKittrick<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <lead_case_uuid\/>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:17-bk-30057<\/href>\n      <\/self>\n    <\/links>\n    <modified>2019-05-01T14:56:45.100929Z<\/modified>\n    <nature_of_debt\/>\n    <nature_of_suit_code\/>\n    <referred_to\/>\n    <schedule_ab\/>\n    <timestamp>2019-05-01T14:56:45.100930Z<\/timestamp>\n    <title>PiclepackingBusiness Picklepuss Steinfieldsmithjon<\/title>\n    <uri_id>85058472<\/uri_id>\n  <\/case>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>17-30057-pcm11<\/criteria>\n    <datetime>05\/01\/2019 07:56:44<\/datetime>\n    <description>Status<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T14:56:43.480959Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n  <status_pending>\n    <date_status_begin>11\/22\/2017<\/date_status_begin>\n    <docket_no>1<\/docket_no>\n    <has_pdf_link_on_pacer>1<\/has_pdf_link_on_pacer>\n    <status>Awaiting Confirmation of Plan<\/status>\n    <status_set_by>Chapter 11 Voluntary Petition - case upload<\/status_set_by>\n    <time_in_status>525 days<\/time_in_status>\n  <\/status_pending>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Status Pending","tags":["query"],"x-courtapi-resource":"status-pending","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Status Pending update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_status_pending","x-mojo-to":"PACER::Query#pacer_query_status_pending"}},"\/cases\/pacer\/{court_code}\/{case_number}\/trustees":{"get":{"description":"Trustees for case","operationId":"getTrustees","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"example":{"case":{"assets":"Unknown","assigned_to":null,"case_category":"civil","case_no":"3:92-cv-30321","case_title":"UNITED STATES v. INTERNATL FIDELITY","case_type":"cv","cause":null,"ch11_type":null,"chapter":null,"court_code":"flndce","date_closed":"04\/11\/1997","date_discharged":null,"date_filed":"08\/25\/1992","date_of_last_filing":"09\/08\/2000","date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":false,"is_ok_to_list_publicly":false,"judge_name":"LACEY A COLLIER","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2022-01-21T04:57:14.362364Z","naics_code":130,"nature_of_debt":"~","nature_of_suit_code":130,"petition_type":null,"plan_confirmed":null,"referred_to":null},"links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/0:17-bk-10576"},"pacer-update":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/0:17-bk-10576\/trustees","method":"POST"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/0:17-bk-10576\/trustees"}},"timestamp":"2019-04-29T08:57:23.066100Z","trustees":[{"address":"185 Admiral Cochrane Dr.\nSuite 240\nAnnapolis, MD 21401","assigned_date":null,"email":"grigsbyecf@ch13md.com","fax":null,"modified":"2019-04-29 08:57:23.066101+00","name":"Nancy Spencer Grigsby","phone":"301-805-4700","role":"Trustee"}]},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"pacer-update":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"},"trustees":{"items":{"properties":{"address":{"type":"string"},"assigned_date":{"type":"string"},"email":{"type":"string"},"fax":{"type":"string"},"modified":{"format":"date-time","type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <assets>Unknown<\/assets>\n    <assigned_to>Judge Wendelin I. Lipp<\/assigned_to>\n    <case_category>bankruptcy<\/case_category>\n    <case_header_last_refreshed>2019-04-29T08:58:08.482640Z<\/case_header_last_refreshed>\n    <case_no>0:17-bk-10576<\/case_no>\n    <case_title>Jacqueline S Nelson<\/case_title>\n    <case_type>bk<\/case_type>\n    <cause\/>\n    <ch11_type\/>\n    <chapter\/>\n    <court_code>mdbke<\/court_code>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>01\/16\/2017<\/date_filed>\n    <date_of_last_filing\/>\n    <date_terminated\/>\n    <disposition\/>\n    <has_asset>No<\/has_asset>\n    <is_ok_to_list_publicly\/>\n    <judge_name\/>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <modified>2019-04-29T08:57:23.838070Z<\/modified>\n    <nature_of_suit_code\/>\n    <petition_type\/>\n    <plan_confirmed\/>\n    <referred_to\/>\n  <\/case>\n  <links>\n    <menu>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/0:17-bk-10576<\/href>\n    <\/menu>\n    <pacer-update>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/0:17-bk-10576\/trustees<\/href>\n      <method>POST<\/method>\n    <\/pacer-update>\n    <self>\n      <href>https:\/\/v1.courtapi.com\/cases\/pacer\/mdbke\/0:17-bk-10576\/trustees<\/href>\n    <\/self>\n  <\/links>\n  <timestamp>2019-04-29T08:57:23.066100Z<\/timestamp>\n  <trustees>\n    <address>185 Admiral Cochrane Dr.\nSuite 240 Annapolis, MD 21401<\/address>\n    <assigned_date\/>\n    <email>grigsbyecf@ch13md.com<\/email>\n    <fax\/>\n    <modified>2019-04-29 08:57:23.066101+00<\/modified>\n    <name>Nancy Spencer Grigsby<\/name>\n    <phone>301-805-4700<\/phone>\n    <role>Trustee<\/role>\n  <\/trustees>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Trustees for case","tags":["case"],"x-courtapi-resource":"trustees","x-courtapi-source":"local","x-courtdrive-async-desc":"Trustees of {{court_code}}\/{{case_number}}","x-mojo-name":"localdb_case_trustees","x-mojo-to":"PACER::Case#trustees"},"post":{"description":"PACER Query Case Trustees","operationId":"updateTrustees","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"case":{"appeal_case_uuid":null,"assets":"Unknown","assigned_to":null,"case_chapter_id":1,"case_court_id":221,"case_id_external":460186,"case_no":"6:18-bk-60032","case_petition_id":1,"case_title":"Trendy N. Testing, Jr.","case_type_id":1,"cause":null,"ch11_type":null,"ch11_type_code":null,"chapter":7,"court":"orbtrain","court_name":"orbtrain","created":"2019-05-01T15:03:30.566006Z","date_closed":null,"date_discharged":null,"date_filed":"11\/16\/2018","date_of_last_filing":"02\/19\/2019","date_plan_confirmed":null,"date_terminated":null,"disabled":0,"disposition":null,"has_asset":0,"is_business_bankruptcy":null,"is_ok_to_list_publicly":false,"judge_name":"Thomas M Renn","jurisdiction":null,"jury_demand":null,"lead_case_uuid":null,"links":{"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:18-bk-60032"}},"modified":"2019-05-01T15:03:33.315465Z","nature_of_debt":null,"nature_of_suit_code":null,"ncl_parties":[],"referred_to":null,"schedule_ab":null,"timestamp":"2019-05-01T15:03:33.315460Z","title":"Trendy N. Testing, Jr.","uri_id":85058487},"receipts":{"client_code":"","cost":"0.10","criteria":"18-60032-tmr7","datetime":"05\/01\/2019 08:03:33","description":"Trustee List","pages":"1","timestamp":"2019-05-01T15:03:31.895152Z","user_id":"irtraining"},"trustees":[{"address":"Chapter 7 Trustee\nPOB 280\nWilsonville, OR 97070","assigned_date":"11\/16\/2018","name":"Vanesa Pancic","phone":"503-729-8676","role":"tr"}]},"schema":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"receipts":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"trustees":{"items":{"properties":{"address":{"type":"string"},"assigned_date":{"type":"string"},"fax":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"},"terminated_date":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <case>\n    <appeal_case_uuid\/>\n    <assets>Unknown<\/assets>\n    <assigned_to\/>\n    <case_chapter_id>1<\/case_chapter_id>\n    <case_court_id>221<\/case_court_id>\n    <case_id_external>460186<\/case_id_external>\n    <case_no>6:18-bk-60032<\/case_no>\n    <case_petition_id>1<\/case_petition_id>\n    <case_title>Trendy N. Testing, Jr.<\/case_title>\n    <case_type_id>1<\/case_type_id>\n    <cause\/>\n    <ch11_type\/>\n    <ch11_type_code\/>\n    <chapter>7<\/chapter>\n    <court>orbtrain<\/court>\n    <court_name>orbtrain<\/court_name>\n    <created>2019-05-01T15:03:30.566006Z<\/created>\n    <date_closed\/>\n    <date_discharged\/>\n    <date_filed>11\/16\/2018<\/date_filed>\n    <date_of_last_filing>02\/19\/2019<\/date_of_last_filing>\n    <date_plan_confirmed\/>\n    <date_terminated\/>\n    <disabled>0<\/disabled>\n    <disposition\/>\n    <has_asset>0<\/has_asset>\n    <is_business_bankruptcy\/>\n    <is_ok_to_list_publicly\/>\n    <judge_name>Thomas M Renn<\/judge_name>\n    <jurisdiction\/>\n    <jury_demand\/>\n    <lead_case_uuid\/>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:18-bk-60032<\/href>\n      <\/self>\n    <\/links>\n    <modified>2019-05-01T15:03:33.315465Z<\/modified>\n    <nature_of_debt\/>\n    <nature_of_suit_code\/>\n    <referred_to\/>\n    <schedule_ab\/>\n    <timestamp>2019-05-01T15:03:33.315460Z<\/timestamp>\n    <title>Trendy N. Testing, Jr.<\/title>\n    <uri_id>85058487<\/uri_id>\n  <\/case>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>18-60032-tmr7<\/criteria>\n    <datetime>05\/01\/2019 08:03:33<\/datetime>\n    <description>Trustee List<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T15:03:31.895152Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n  <trustees>\n    <address>Chapter 7 Trustee\nPOB 280 Wilsonville, OR 97070<\/address>\n    <assigned_date>11\/16\/2018<\/assigned_date>\n    <name>Vanesa Pancic<\/name>\n    <phone>503-729-8676<\/phone>\n    <role>tr<\/role>\n  <\/trustees>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"cases":{"description":"A non-exhaustive list of potential matches when an exact `{case_number}` could not be found in the database or on the court (see `pacer_lookup_performed`).","items":{"properties":{"case_no":{"description":"Case Number","type":"string"},"case_title":{"description":"Case Title","type":"string"},"links":{"properties":{"self":{"properties":{"href":{"description":"Link to CourtAPI case menu root for this potential matching case","type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"error":{"type":"string"},"pacer_lookup_performed":{"description":"If exact case number can not be found in the database, CourtAPI may attempt to look it up using free case number lookup on the court directly. If PACER lookup has been performed, `pacer_lookup_performed` will be returned as `true`. For appellate courts and criminal cases, PACER lookup will not be performed, and `pacer_lookup_performed` property will not be returned at all.","type":"boolean"}},"type":"object"}}},"description":"Case Not Found"},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Query Case Trustees","tags":["query"],"x-courtapi-resource":"trustees","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Trustees update of {{court_code}}\/{{case_number}}","x-mojo-name":"pacer_query_trustees","x-mojo-to":"PACER::Query#pacer_query_trustees"}},"\/courtdrive\/cases\/pacer\/{court_code}\/{case_number}\/docket-widget":{"get":{"operationId":"getCourtDriveDocketWidget","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"href":{"description":"URL to the CourtDrive docket widget","type":"string"}},"type":"object"}}},"description":"OK"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"403":{"description":"CourtDrive account is not linked to your CourtAPI account"},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Returns a link which can be used to embed the CourtDrive docket widget in an iframe","tags":["case"],"x-courtapi-resource":"courtdrive-docket","x-courtapi-source":"local","x-courtdrive-async-desc":"CourtDrive case docket link for {{court_code}}\/{{case_number}}","x-mojo-name":"courtdrive_case_docket_widget","x-mojo-to":"PACER::Case::Docket#courtdrive_case_docket_widget"}},"\/courtdrive\/cases\/pacer\/{court_code}\/{case_number}\/dockets":{"get":{"description":"Go to the case docket on the CourtDrive web site.","operationId":"getCourtDriveDocket","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"},"x-mojo-placeholder":"#"}],"responses":{"302":{"description":"Redirect to the case docket on the CourtDrive web site."},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Link to the Case Docket on the CourtDrive web site.","tags":["case"],"x-courtapi-free-call":true,"x-courtapi-resource":"courtdrive-docket","x-courtapi-source":"local","x-courtdrive-async-desc":"CourtDrive case docket link for {{court_code}}\/{{case_number}}","x-mojo-name":"courtdrive_case_dockets","x-mojo-to":"PACER::Case::Docket#courtdrive_case_dockets"}},"\/courts\/pacer":{"get":{"description":"All PACER Courts","operationId":"getCourts","parameters":[{"description":"Court Type","in":"query","name":"type","schema":{"enum":["district","national","bankruptcy","appellate"],"type":"string"}},{"description":"Filter Test Courts","in":"query","name":"test","schema":{"type":"boolean"}}],"responses":{"200":{"content":{"application\/json":{"example":{"courts":[{"code":"citdce","links":{"self":{"href":"https:\/\/v1.courtapi.com\/courts\/pacer\/citdce"}},"name":"U.S. Court of International Trade"},{"code":"cofce","links":{"self":{"href":"https:\/\/v1.courtapi.com\/courts\/pacer\/cofce"}},"name":"US Court of Federal Claims"},{"code":"jpml","links":{"self":{"href":"https:\/\/v1.courtapi.com\/courts\/pacer\/jpml"}},"name":"Judicial Panel on Multidistrict Litigation"}]}},"application\/xml":{"example":"<result>\n   <courts>\n      <element>\n         <code>citdce<\/code>\n         <links>\n            <self>\n               <href>https:\/\/v1.courtapi.com\/courts\/pacer\/citdce<\/href>\n            <\/self>\n         <\/links>\n         <name>U.S. Court of International Trade<\/name>\n      <\/element>\n      <element>\n         <code>cofce<\/code>\n         <links>\n            <self>\n               <href>https:\/\/v1.courtapi.com\/courts\/pacer\/cofce<\/href>\n            <\/self>\n         <\/links>\n         <name>US Court of Federal Claims<\/name>\n      <\/element>\n      <element>\n         <code>jpml<\/code>\n         <links>\n            <self>\n               <href>https:\/\/v1.courtapi.com\/courts\/pacer\/jpml<\/href>\n            <\/self>\n         <\/links>\n         <name>Judicial Panel on Multidistrict Litigation<\/name>\n      <\/element>\n   <\/courts>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"All PACER Courts","tags":["courts"],"x-courtapi-resource":"courts","x-courtapi-source":"local","x-courtdrive-async-desc":"List PACER courts","x-mojo-name":"courts_pacer_all_courts","x-mojo-to":"Courts#all_courts"}},"\/courts\/pacer\/{court_code}":{"get":{"description":"PACER Court Details","operationId":"getCourtDetails","responses":{"200":{"content":{"application\/json":{"example":{"abbr":"mnbke","case_types":["ap","bk","mp"],"citation":"Bankr.D.Minn.","links":{"cases_report_bk":{"href":"https:\/\/v1.courtapi.com\/courts\/pacer\/mnbke\/cases\/report\/bankruptcy"},"cases_search":{"href":"https:\/\/v1.courtapi.com\/courts\/pacer\/mnbke\/cases\/search"}},"name":"Minnesota Bankruptcy Court","subdomain":"ecf.mnb.uscourts.gov","timezone":"US\/Central","type":"bankruptcy"}},"application\/xml":{"example":"<result>\n   <abbr>mnbke<\/abbr>\n   <case_types>\n      <element>ap<\/element>\n      <element>bk<\/element>\n      <element>mp<\/element>\n   <\/case_types>\n   <citation>Bankr.D.Minn.<\/citation>\n   <links>\n      <cases_report_bk>\n         <href>https:\/\/v1.courtapi.com\/courts\/pacer\/mnbke\/cases\/report\/bankruptcy<\/href>\n      <\/cases_report_bk>\n      <cases_search>\n         <href>https:\/\/v1.courtapi.com\/courts\/pacer\/mnbke\/cases\/search<\/href>\n      <\/cases_search>\n   <\/links>\n   <name>Minnesota Bankruptcy Court<\/name>\n   <subdomain>ecf.mnb.uscourts.gov<\/subdomain>\n   <timezone>US\/Central<\/timezone>\n   <type>bankruptcy<\/type>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Court Details","tags":["courts"],"x-courtdrive-async-desc":"PACER court details for {{court_code}}","x-mojo-name":"courts_pacer_by_court_code","x-mojo-to":"Courts#court"},"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}}]},"\/courts\/pacer\/{court_code}\/cases\/report\/bankruptcy":{"post":{"description":"Returns detailed information on matching cases.","operationId":"searchBankruptcyCases","parameters":[{"description":"Court Code (must be a Bankruptcy Court)","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}},{"description":"If given and set to `true`, include the csv header","in":"query","name":"include_csv_header","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"asset_notice":{"description":"Asset Notice","type":"string"},"case_type":{"description":"Case Type","items":{"type":"string"},"type":"array"},"chapter":{"description":"Chapter","items":{"type":"string"},"type":"array"},"closed_cases":{"description":"Closed cases","type":"boolean"},"date_from":{"description":"Date From (MM\/DD\/YYYY)","type":"string"},"date_to":{"description":"Date To (MM\/DD\/YYYY)","type":"string"},"date_type":{"description":"Date Type","enum":["filed","entered","discharged","dismissed","closed","converted","reopened","transferred","split"],"type":"string"},"involuntary":{"description":"Involuntary","type":"boolean"},"max_cost_cents":{"description":"Maximum PACER cost in cents","type":"integer"},"nature_of_business":{"description":"Nature of Business","type":"string"},"nature_of_debt":{"description":"Nature of Debt","type":"string"},"open_cases":{"description":"Open cases","type":"boolean"},"pacer_client":{"description":"PACER Client Code","type":"string"},"party_info":{"description":"Party information","type":"boolean"},"proseonly":{"description":"Pro se cases only","type":"boolean"},"smallbusiness":{"description":"Small Business Cases","type":"boolean"},"type_of_debtor":{"description":"Type of Debtor","type":"string"},"voluntary":{"description":"Voluntary","type":"boolean"}},"required":["date_type","date_from","date_to","max_cost_cents"],"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_no":"3:19-bk-30027","case_title":"Callie Fleur and Brock Ohlee","chapter":7,"court_code":"orbtrain","date_closed":null,"date_filed":"04\/30\/2019","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:19-bk-30027\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:19-bk-30027"}},"timestamp":"2019-05-01T07:53:31.194240Z","title":"Callie Fleur and Brock Ohlee"}],"parties":null,"receipts":[{"client_code":"","cost":"0.10","criteria":"Ch: 7 Attorney: All Ent Fr: 04\/29\/2019 Ent To: 04\/30\/2019 Format: data only","datetime":"Wed May 1 00:53:29 2019","description":"Cases Filed Rpt","pages":"1","timestamp":null,"user_id":"irtraining"}]},"schema":{"properties":{"cases":{"items":{"properties":{"attorneys":{"items":{"properties":{"associated":{"items":{"properties":{"address":{"type":"string"},"email":{"type":"string"},"fax":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"}},"type":"object"},"type":"array"},"attorney":{"properties":{"address":{"type":"string"},"assigned_date":{"pattern":"\\d{2}\/\\d{2}\/\\d{4}","type":"string"},"email":{"type":"string"},"fax":{"type":"string"},"lead":{"type":"string"},"modified":{"format":"date-time","type":"string"},"name":{"type":"string"},"phone":{"type":"string"}},"type":"object"}}},"type":"array"},"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"lead_bk_case_no":{"type":"string"},"lead_bk_case_title":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"parties":{"items":{"properties":{"added_date":{"type":"string"},"address":{"type":"string"},"case_party_id":{"type":"number"},"email":{"type":"string"},"fax":{"type":"string"},"modified":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_no>3:19-bk-30027<\/case_no>\n    <case_title>Callie Fleur and Brock Ohlee<\/case_title>\n    <chapter>7<\/chapter>\n    <court_code>orbtrain<\/court_code>\n    <date_closed\/>\n    <date_filed>04\/30\/2019<\/date_filed>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:19-bk-30027\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/3:19-bk-30027<\/href>\n      <\/self>\n    <\/links>\n    <timestamp>2019-05-01T07:53:31.194240Z<\/timestamp>\n    <title>Callie Fleur and Brock Ohlee<\/title>\n  <\/cases>\n  <parties\/>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>Ch: 7 Attorney: All Ent Fr: 04\/29\/2019 Ent To: 04\/30\/2019 Format: data only<\/criteria>\n    <datetime>Wed May 1 00:53:29 2019<\/datetime>\n    <description>Cases Filed Rpt<\/description>\n    <pages>1<\/pages>\n    <timestamp\/>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Local Court Bankruptcy Cases Report","tags":["pacer_case_lookup"],"x-courtapi-resource":"case","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Bankruptcy court cases report at {{court_code}}","x-mojo-name":"courts_pacer_cases_report_bk","x-mojo-to":"Courts::Search#localcourtreport"}},"\/courts\/pacer\/{court_code}\/cases\/report\/civil":{"post":{"description":"Local Court Civil Cases Report","operationId":"locateCivilCases","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}},{"description":"If given and set to `true`, include the csv header","in":"query","name":"include_csv_header","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_flags":{"description":"Case flags","items":{"type":"string"},"type":"array"},"case_type":{"description":"Case Type","items":{"enum":["cv","mc","md"],"type":"string"},"type":"array"},"cause":{"description":"Cause of Action","items":{"type":"string"},"type":"array"},"closed_cases":{"description":"Closed cases","type":"boolean"},"date_from":{"description":"Date From (MM\/DD\/YYYY)","type":"string"},"date_to":{"description":"Date To (MM\/DD\/YYYY)","type":"string"},"jurisdic":{"description":"jurisdiction","items":{"type":"string"},"type":"array"},"max_cost_cents":{"description":"Maximum PACER cost in cents","type":"integer"},"nature_of_suit":{"description":"Nature of Suit","items":{"type":"string"},"type":"array"},"office":{"description":"Office","items":{"type":"string"},"type":"array"},"open_cases":{"description":"Open cases","type":"boolean"},"pacer_client":{"description":"PACER Client Code","type":"string"},"terminal_digit":{"description":"Terminal digit(s)","type":"string"}},"required":["date_from","date_to","max_cost_cents"],"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_no":"1:07-cv-00035","case_title":"Anson v. United States of America et al","chapter":null,"court_code":"dctest","date_closed":null,"date_filed":"01\/24\/2007","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/dctest\/1:07-cv-00035\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/dctest\/1:07-cv-00035"}},"timestamp":"2020-03-17T17:37:08.614970Z","title":"Anson v. United States of America et al"}],"links":{},"parties":[],"receipts":[{"client_code":"","cost":0.1,"criteria":"Filed From: '01\/24\/2007' Filed To: '01\/24\/2007'","datetime":"Tue Mar 17 12:37:06 2020","description":"Civil Cases Report","pages":1,"timestamp":null,"user_id":"irtraining:7031747:0"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"lead_bk_case_no":{"type":"string"},"lead_bk_case_title":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"parties":{"items":{"properties":{"added_date":{"type":"string"},"address":{"type":"string"},"case_party_id":{"type":"number"},"email":{"type":"string"},"fax":{"type":"string"},"modified":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <date_filed>01\/24\/2007<\/date_filed>\n    <court_code>dctest<\/court_code>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/dctest\/1:07-cv-00035\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/dctest\/1:07-cv-00035<\/href>\n      <\/self>\n    <\/links>\n    <lead_bk_case_no\/>\n    <case_title>Anson v. United States of America et al<\/case_title>\n    <title>Anson v. United States of America et al<\/title>\n    <date_closed\/>\n    <chapter\/>\n    <lead_bk_case_title\/>\n    <case_no>1:07-cv-00035<\/case_no>\n    <timestamp>2020-03-17T17:43:50.223520Z<\/timestamp>\n  <\/cases>\n  <links\/>\n  <receipts>\n    <datetime>Tue Mar 17 12:43:45 2020<\/datetime>\n    <client_code\/>\n    <user_id>irtraining:7031747:0<\/user_id>\n    <pages>1<\/pages>\n    <cost>0.10<\/cost>\n    <description>Civil Cases Report<\/description>\n    <criteria>Filed From: '01\/24\/2007' Filed To: '01\/24\/2007'<\/criteria>\n    <timestamp\/>\n  <\/receipts>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Local Court Civil Cases Report","tags":["pacer_case_lookup"],"x-courtapi-resource":"case","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Civil cases report at {{court_code}}","x-mojo-name":"courts_pacer_cases_report_cv","x-mojo-to":"Courts::Search#localcourtreport_cv"}},"\/courts\/pacer\/{court_code}\/cases\/report\/criminal":{"post":{"description":"Local Court Criminal Cases Report","operationId":"searchCriminalCases","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"If given and set to `true`, the request will run asynchronously","in":"query","name":"async","schema":{"type":"boolean"}},{"description":"If given and set to `true`, include the csv header","in":"query","name":"include_csv_header","schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_flags":{"description":"Case flags","items":{"type":"string"},"type":"array"},"case_type":{"description":"Case Type","items":{"enum":["cr","mr","po","mj"],"type":"string"},"type":"array"},"citation":{"description":"Citation","type":"string"},"date_from":{"description":"Date From (MM\/DD\/YYYY)","type":"string"},"date_to":{"description":"Date To (MM\/DD\/YYYY)","type":"string"},"max_cost_cents":{"description":"Maximum PACER cost in cents","type":"integer"},"office":{"description":"Office","items":{"type":"string"},"type":"array"},"pacer_client":{"description":"PACER Client Code","type":"string"},"pending_citations":{"description":"Pending Citations","type":"boolean"},"pending_defendants":{"description":"Pending defendants","type":"boolean"},"terminal_digit":{"description":"Terminal digit(s)","type":"integer"},"terminated_citations":{"description":"Disposed Citations","type":"boolean"},"terminated_defendants":{"description":"Terminated defendants","type":"boolean"}},"required":["date_from","date_to","max_cost_cents"],"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_no":"4:13-cr-00037","case_title":"USA v. FLETCHER","chapter":null,"court_code":"flndce","date_closed":"02\/11\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00037\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00037"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. FLETCHER"},{"case_no":"4:13-cr-00038","case_title":"USA v. DENNISON","chapter":null,"court_code":"flndce","date_closed":"08\/16\/2013","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00038\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00038"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. DENNISON"},{"case_no":"4:13-cr-00039","case_title":"USA v. WHITE et al","chapter":null,"court_code":"flndce","date_closed":"02\/12\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. WHITE et al"},{"case_no":"4:13-cr-00039","case_title":"USA v. WHITE et al","chapter":null,"court_code":"flndce","date_closed":"01\/17\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. WHITE et al"},{"case_no":"4:13-cr-00039","case_title":"USA v. WHITE et al","chapter":null,"court_code":"flndce","date_closed":"01\/17\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. WHITE et al"},{"case_no":"4:13-cr-00039","case_title":"USA v. WHITE et al","chapter":null,"court_code":"flndce","date_closed":"01\/17\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. WHITE et al"},{"case_no":"4:13-cr-00039","case_title":"USA v. WHITE et al","chapter":null,"court_code":"flndce","date_closed":"03\/17\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. WHITE et al"},{"case_no":"4:13-cr-00039","case_title":"USA v. WHITE et al","chapter":null,"court_code":"flndce","date_closed":"02\/17\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. WHITE et al"},{"case_no":"4:13-cr-00040","case_title":"USA v. RICHARDSON et al","chapter":null,"court_code":"flndce","date_closed":"11\/04\/2013","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. RICHARDSON et al"},{"case_no":"4:13-cr-00040","case_title":"USA v. RICHARDSON et al","chapter":null,"court_code":"flndce","date_closed":"11\/04\/2013","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. RICHARDSON et al"},{"case_no":"4:13-cr-00040","case_title":"USA v. RICHARDSON et al","chapter":null,"court_code":"flndce","date_closed":"11\/04\/2013","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. RICHARDSON et al"},{"case_no":"4:13-cr-00040","case_title":"USA v. RICHARDSON et al","chapter":null,"court_code":"flndce","date_closed":"11\/04\/2013","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. RICHARDSON et al"},{"case_no":"4:13-cr-00041","case_title":"USA v. BISHOP et al","chapter":null,"court_code":"flndce","date_closed":null,"date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. BISHOP et al"},{"case_no":"4:13-cr-00041","case_title":"USA v. BISHOP et al","chapter":null,"court_code":"flndce","date_closed":"01\/15\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. BISHOP et al"},{"case_no":"4:13-cr-00041","case_title":"USA v. BISHOP et al","chapter":null,"court_code":"flndce","date_closed":"01\/15\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. BISHOP et al"},{"case_no":"4:13-cr-00041","case_title":"USA v. BISHOP et al","chapter":null,"court_code":"flndce","date_closed":"03\/06\/2019","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. BISHOP et al"},{"case_no":"4:13-cr-00041","case_title":"USA v. BISHOP et al","chapter":null,"court_code":"flndce","date_closed":"01\/15\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. BISHOP et al"},{"case_no":"4:13-cr-00041","case_title":"USA v. BISHOP et al","chapter":null,"court_code":"flndce","date_closed":"01\/15\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. BISHOP et al"},{"case_no":"4:13-cr-00041","case_title":"USA v. BISHOP et al","chapter":null,"court_code":"flndce","date_closed":"01\/15\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. BISHOP et al"},{"case_no":"4:13-cr-00041","case_title":"USA v. BISHOP et al","chapter":null,"court_code":"flndce","date_closed":"01\/15\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. BISHOP et al"},{"case_no":"4:13-cr-00041","case_title":"USA v. BISHOP et al","chapter":null,"court_code":"flndce","date_closed":"01\/15\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. BISHOP et al"},{"case_no":"4:13-cr-00042","case_title":"USA v. SUEHR","chapter":null,"court_code":"flndce","date_closed":"10\/25\/2013","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00042\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00042"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. SUEHR"},{"case_no":"4:13-cr-00043","case_title":"USA v. HUGGINS","chapter":null,"court_code":"flndce","date_closed":null,"date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00043\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00043"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. HUGGINS"},{"case_no":"4:13-cr-00044","case_title":"USA v. WATSON","chapter":null,"court_code":"flndce","date_closed":null,"date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00044\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00044"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. WATSON"},{"case_no":"4:13-cr-00045","case_title":"USA v. LUPER","chapter":null,"court_code":"flndce","date_closed":"10\/15\/2013","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00045\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00045"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. LUPER"},{"case_no":"4:13-cr-00046","case_title":"USA v. BELL","chapter":null,"court_code":"flndce","date_closed":"10\/22\/2013","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00046\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00046"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. BELL"},{"case_no":"5:13-cr-00014","case_title":"USA v. BOSTWICK","chapter":null,"court_code":"flndce","date_closed":"12\/18\/2013","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00014\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00014"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. BOSTWICK"},{"case_no":"5:13-cr-00015","case_title":"USA v. FRANCIS","chapter":null,"court_code":"flndce","date_closed":"02\/19\/2014","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00015\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00015"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. FRANCIS"},{"case_no":"5:13-cr-00016","case_title":"USA v. MALCOLM","chapter":null,"court_code":"flndce","date_closed":"12\/18\/2013","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00016\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00016"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. MALCOLM"},{"case_no":"5:13-cr-00017","case_title":"USA v. REYES-BARRAGAN","chapter":null,"court_code":"flndce","date_closed":"10\/09\/2013","date_filed":"04\/03\/2013","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00017\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00017"}},"timestamp":"2020-03-18T15:44:04.781320Z","title":"USA v. REYES-BARRAGAN"}],"links":{},"parties":[],"receipts":[{"client_code":"","cost":0.3,"criteria":"Filed From: '04\/03\/2013' Filed To: '04\/03\/2013'","datetime":"Wed Mar 18 10:44:04 2020","description":"Criminal Cases Report","pages":3,"timestamp":null,"user_id":"in2117info"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"lead_bk_case_no":{"type":"string"},"lead_bk_case_title":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"parties":{"items":{"properties":{"added_date":{"type":"string"},"address":{"type":"string"},"case_party_id":{"type":"number"},"email":{"type":"string"},"fax":{"type":"string"},"modified":{"type":"string"},"name":{"type":"string"},"phone":{"type":"string"},"role":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <case_title>USA v. FLETCHER<\/case_title>\n    <case_no>4:13-cr-00037<\/case_no>\n    <date_closed>02\/11\/2014<\/date_closed>\n    <court_code>flndce<\/court_code>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00037<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00037\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <chapter\/>\n    <title>USA v. FLETCHER<\/title>\n  <\/cases>\n  <cases>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00038<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00038\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <court_code>flndce<\/court_code>\n    <title>USA v. DENNISON<\/title>\n    <chapter\/>\n    <lead_bk_case_title\/>\n    <case_title>USA v. DENNISON<\/case_title>\n    <lead_bk_case_no\/>\n    <case_no>4:13-cr-00038<\/case_no>\n    <date_closed>08\/16\/2013<\/date_closed>\n  <\/cases>\n  <cases>\n    <chapter\/>\n    <title>USA v. WHITE et al<\/title>\n    <court_code>flndce<\/court_code>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039<\/href>\n      <\/self>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <date_closed>02\/12\/2014<\/date_closed>\n    <case_no>4:13-cr-00039<\/case_no>\n    <lead_bk_case_no\/>\n    <case_title>USA v. WHITE et al<\/case_title>\n    <lead_bk_case_title\/>\n  <\/cases>\n  <cases>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <court_code>flndce<\/court_code>\n    <title>USA v. WHITE et al<\/title>\n    <chapter\/>\n    <case_title>USA v. WHITE et al<\/case_title>\n    <lead_bk_case_title\/>\n    <lead_bk_case_no\/>\n    <case_no>4:13-cr-00039<\/case_no>\n    <date_closed>01\/17\/2014<\/date_closed>\n  <\/cases>\n  <cases>\n    <court_code>flndce<\/court_code>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <chapter\/>\n    <title>USA v. WHITE et al<\/title>\n    <lead_bk_case_no\/>\n    <case_title>USA v. WHITE et al<\/case_title>\n    <lead_bk_case_title\/>\n    <case_no>4:13-cr-00039<\/case_no>\n    <date_closed>01\/17\/2014<\/date_closed>\n  <\/cases>\n  <cases>\n    <title>USA v. WHITE et al<\/title>\n    <chapter\/>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <court_code>flndce<\/court_code>\n    <date_closed>01\/17\/2014<\/date_closed>\n    <case_no>4:13-cr-00039<\/case_no>\n    <lead_bk_case_title\/>\n    <case_title>USA v. WHITE et al<\/case_title>\n    <lead_bk_case_no\/>\n  <\/cases>\n  <cases>\n    <case_no>4:13-cr-00039<\/case_no>\n    <date_closed>03\/17\/2014<\/date_closed>\n    <lead_bk_case_no\/>\n    <case_title>USA v. WHITE et al<\/case_title>\n    <lead_bk_case_title\/>\n    <chapter\/>\n    <title>USA v. WHITE et al<\/title>\n    <court_code>flndce<\/court_code>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039<\/href>\n      <\/self>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n  <\/cases>\n  <cases>\n    <title>USA v. WHITE et al<\/title>\n    <chapter\/>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00039<\/href>\n      <\/self>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <court_code>flndce<\/court_code>\n    <case_no>4:13-cr-00039<\/case_no>\n    <date_closed>02\/17\/2014<\/date_closed>\n    <case_title>USA v. WHITE et al<\/case_title>\n    <lead_bk_case_title\/>\n    <lead_bk_case_no\/>\n  <\/cases>\n  <cases>\n    <court_code>flndce<\/court_code>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040<\/href>\n      <\/self>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <chapter\/>\n    <title>USA v. RICHARDSON et al<\/title>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <case_title>USA v. RICHARDSON et al<\/case_title>\n    <case_no>4:13-cr-00040<\/case_no>\n    <date_closed>11\/04\/2013<\/date_closed>\n  <\/cases>\n  <cases>\n    <lead_bk_case_no\/>\n    <case_title>USA v. RICHARDSON et al<\/case_title>\n    <lead_bk_case_title\/>\n    <case_no>4:13-cr-00040<\/case_no>\n    <date_closed>11\/04\/2013<\/date_closed>\n    <court_code>flndce<\/court_code>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <chapter\/>\n    <title>USA v. RICHARDSON et al<\/title>\n  <\/cases>\n  <cases>\n    <case_no>4:13-cr-00040<\/case_no>\n    <date_closed>11\/04\/2013<\/date_closed>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <case_title>USA v. RICHARDSON et al<\/case_title>\n    <chapter\/>\n    <title>USA v. RICHARDSON et al<\/title>\n    <court_code>flndce<\/court_code>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n  <\/cases>\n  <cases>\n    <lead_bk_case_title\/>\n    <case_title>USA v. RICHARDSON et al<\/case_title>\n    <lead_bk_case_no\/>\n    <case_no>4:13-cr-00040<\/case_no>\n    <date_closed>11\/04\/2013<\/date_closed>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00040\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <court_code>flndce<\/court_code>\n    <title>USA v. RICHARDSON et al<\/title>\n    <chapter\/>\n  <\/cases>\n  <cases>\n    <chapter\/>\n    <title>USA v. BISHOP et al<\/title>\n    <court_code>flndce<\/court_code>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041<\/href>\n      <\/self>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <date_closed\/>\n    <case_no>4:13-cr-00041<\/case_no>\n    <lead_bk_case_no\/>\n    <case_title>USA v. BISHOP et al<\/case_title>\n    <lead_bk_case_title\/>\n  <\/cases>\n  <cases>\n    <court_code>flndce<\/court_code>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <chapter\/>\n    <title>USA v. BISHOP et al<\/title>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <case_title>USA v. BISHOP et al<\/case_title>\n    <date_closed>01\/15\/2014<\/date_closed>\n    <case_no>4:13-cr-00041<\/case_no>\n  <\/cases>\n  <cases>\n    <case_title>USA v. BISHOP et al<\/case_title>\n    <lead_bk_case_title\/>\n    <lead_bk_case_no\/>\n    <case_no>4:13-cr-00041<\/case_no>\n    <date_closed>01\/15\/2014<\/date_closed>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041<\/href>\n      <\/self>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <court_code>flndce<\/court_code>\n    <title>USA v. BISHOP et al<\/title>\n    <chapter\/>\n  <\/cases>\n  <cases>\n    <chapter\/>\n    <title>USA v. BISHOP et al<\/title>\n    <court_code>flndce<\/court_code>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041<\/href>\n      <\/self>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <case_no>4:13-cr-00041<\/case_no>\n    <date_closed>03\/06\/2019<\/date_closed>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <case_title>USA v. BISHOP et al<\/case_title>\n  <\/cases>\n  <cases>\n    <chapter\/>\n    <title>USA v. BISHOP et al<\/title>\n    <court_code>flndce<\/court_code>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <date_closed>01\/15\/2014<\/date_closed>\n    <case_no>4:13-cr-00041<\/case_no>\n    <lead_bk_case_no\/>\n    <case_title>USA v. BISHOP et al<\/case_title>\n    <lead_bk_case_title\/>\n  <\/cases>\n  <cases>\n    <chapter\/>\n    <title>USA v. BISHOP et al<\/title>\n    <court_code>flndce<\/court_code>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041<\/href>\n      <\/self>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <case_no>4:13-cr-00041<\/case_no>\n    <date_closed>01\/15\/2014<\/date_closed>\n    <lead_bk_case_no\/>\n    <case_title>USA v. BISHOP et al<\/case_title>\n    <lead_bk_case_title\/>\n  <\/cases>\n  <cases>\n    <date_closed>01\/15\/2014<\/date_closed>\n    <case_no>4:13-cr-00041<\/case_no>\n    <case_title>USA v. BISHOP et al<\/case_title>\n    <lead_bk_case_title\/>\n    <lead_bk_case_no\/>\n    <title>USA v. BISHOP et al<\/title>\n    <chapter\/>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <court_code>flndce<\/court_code>\n  <\/cases>\n  <cases>\n    <title>USA v. BISHOP et al<\/title>\n    <chapter\/>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041<\/href>\n      <\/self>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <court_code>flndce<\/court_code>\n    <case_no>4:13-cr-00041<\/case_no>\n    <date_closed>01\/15\/2014<\/date_closed>\n    <case_title>USA v. BISHOP et al<\/case_title>\n    <lead_bk_case_title\/>\n    <lead_bk_case_no\/>\n  <\/cases>\n  <cases>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00041<\/href>\n      <\/self>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <court_code>flndce<\/court_code>\n    <title>USA v. BISHOP et al<\/title>\n    <chapter\/>\n    <case_title>USA v. BISHOP et al<\/case_title>\n    <lead_bk_case_title\/>\n    <lead_bk_case_no\/>\n    <case_no>4:13-cr-00041<\/case_no>\n    <date_closed>01\/15\/2014<\/date_closed>\n  <\/cases>\n  <cases>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00042<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00042\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <court_code>flndce<\/court_code>\n    <title>USA v. SUEHR<\/title>\n    <chapter\/>\n    <case_title>USA v. SUEHR<\/case_title>\n    <lead_bk_case_title\/>\n    <lead_bk_case_no\/>\n    <date_closed>10\/25\/2013<\/date_closed>\n    <case_no>4:13-cr-00042<\/case_no>\n  <\/cases>\n  <cases>\n    <chapter\/>\n    <title>USA v. HUGGINS<\/title>\n    <court_code>flndce<\/court_code>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00043\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00043<\/href>\n      <\/self>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <date_closed\/>\n    <case_no>4:13-cr-00043<\/case_no>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <case_title>USA v. HUGGINS<\/case_title>\n  <\/cases>\n  <cases>\n    <date_closed\/>\n    <case_no>4:13-cr-00044<\/case_no>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <case_title>USA v. WATSON<\/case_title>\n    <chapter\/>\n    <title>USA v. WATSON<\/title>\n    <court_code>flndce<\/court_code>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00044\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00044<\/href>\n      <\/self>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <date_filed>04\/03\/2013<\/date_filed>\n  <\/cases>\n  <cases>\n    <case_no>4:13-cr-00045<\/case_no>\n    <date_closed>10\/15\/2013<\/date_closed>\n    <case_title>USA v. LUPER<\/case_title>\n    <lead_bk_case_title\/>\n    <lead_bk_case_no\/>\n    <title>USA v. LUPER<\/title>\n    <chapter\/>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00045\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00045<\/href>\n      <\/self>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <court_code>flndce<\/court_code>\n  <\/cases>\n  <cases>\n    <case_title>USA v. BELL<\/case_title>\n    <lead_bk_case_title\/>\n    <lead_bk_case_no\/>\n    <date_closed>10\/22\/2013<\/date_closed>\n    <case_no>4:13-cr-00046<\/case_no>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00046<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:13-cr-00046\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <court_code>flndce<\/court_code>\n    <title>USA v. BELL<\/title>\n    <chapter\/>\n  <\/cases>\n  <cases>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <case_title>USA v. BOSTWICK<\/case_title>\n    <date_closed>12\/18\/2013<\/date_closed>\n    <case_no>5:13-cr-00014<\/case_no>\n    <court_code>flndce<\/court_code>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00014<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00014\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <chapter\/>\n    <title>USA v. BOSTWICK<\/title>\n  <\/cases>\n  <cases>\n    <lead_bk_case_no\/>\n    <case_title>USA v. FRANCIS<\/case_title>\n    <lead_bk_case_title\/>\n    <case_no>5:13-cr-00015<\/case_no>\n    <date_closed>02\/19\/2014<\/date_closed>\n    <court_code>flndce<\/court_code>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00015<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00015\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <chapter\/>\n    <title>USA v. FRANCIS<\/title>\n  <\/cases>\n  <cases>\n    <lead_bk_case_no\/>\n    <case_title>USA v. MALCOLM<\/case_title>\n    <lead_bk_case_title\/>\n    <date_closed>12\/18\/2013<\/date_closed>\n    <case_no>5:13-cr-00016<\/case_no>\n    <court_code>flndce<\/court_code>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00016<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00016\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <chapter\/>\n    <title>USA v. MALCOLM<\/title>\n  <\/cases>\n  <cases>\n    <chapter\/>\n    <title>USA v. REYES-BARRAGAN<\/title>\n    <court_code>flndce<\/court_code>\n    <links>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00017<\/href>\n      <\/self>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:13-cr-00017\/dockets<\/href>\n      <\/dockets>\n    <\/links>\n    <timestamp>2020-03-18T15:45:25.686100Z<\/timestamp>\n    <date_filed>04\/03\/2013<\/date_filed>\n    <case_no>5:13-cr-00017<\/case_no>\n    <date_closed>10\/09\/2013<\/date_closed>\n    <lead_bk_case_no\/>\n    <case_title>USA v. REYES-BARRAGAN<\/case_title>\n    <lead_bk_case_title\/>\n  <\/cases>\n  <receipts>\n    <user_id>in2117info<\/user_id>\n    <timestamp\/>\n    <client_code\/>\n    <description>Criminal Cases Report<\/description>\n    <pages>3<\/pages>\n    <cost>0.30<\/cost>\n    <criteria>Filed From: '04\/03\/2013' Filed To: '04\/03\/2013'<\/criteria>\n    <datetime>Wed Mar 18 10:45:25 2020<\/datetime>\n  <\/receipts>\n  <links\/>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Local Court Criminal Cases Report","tags":["pacer_case_lookup"],"x-courtapi-resource":"case","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Criminal cases report at {{court_code}}","x-mojo-name":"courts_pacer_cases_report_cr","x-mojo-to":"Courts::Search#localcourtreport_cr"}},"\/courts\/pacer\/{court_code}\/cases\/search":{"post":{"description":"Query Court for cases that match the specified filters.","operationId":"searchCourtCases","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_no":{"description":"Case Number (o:yy-tp-nnnnn)","type":"string"},"cause_of_action":{"description":"Cause of Action","type":"string"},"closed_cases":{"description":"Closed cases","type":"boolean"},"filed_from":{"description":"Filed From Date (MM\/DD\/YYYY)","type":"string"},"filed_to":{"description":"Filed To Date (MM\/DD\/YYYY)","type":"string"},"first_name":{"description":"First Name","type":"string"},"last_business_name":{"description":"Last \/ Business Name","type":"string"},"last_entry_from":{"description":"Last Entry From Date (MM\/DD\/YYYY)","type":"string"},"last_entry_to":{"description":"Last Entry To Date (MM\/DD\/YYYY)","type":"string"},"middle_name":{"description":"Middle Name","type":"string"},"nos":{"description":"Nature of Suit","type":"string"},"open_cases":{"description":"Open cases","type":"boolean"},"pacer_client":{"description":"PACER Client Code","type":"string"},"party_exact":{"description":"Exact matches only","type":"boolean"},"person_type":{"description":"Person Type","enum":["pty","aty"],"type":"string"},"ssntin":{"description":"SSN \/ ITIN","type":"string"},"tax_id_ein":{"description":"Tax ID \/ EIN","type":"integer"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_no":"6:14-bk-63618","case_title":"Joseph Wayne Sample and Sarah Lynn Sample","chapter":7,"court_code":"orbtrain","date_closed":null,"date_filed":"10\/15\/2014","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618"}},"timestamp":"2018-09-24T17:37:18.440870Z","title":"Joseph Wayne Sample and Sarah Lynn Sample"}],"parties":[],"receipts":[]},"schema":{"properties":{"cases":{"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"lead_bk_case_no":{"type":"string"},"lead_bk_case_title":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"redacted_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"lead_bk_case_no":{"type":"string"},"lead_bk_case_title":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n   <cases>\n      <element>\n         <case_no>6:14-bk-63618<\/case_no>\n         <case_title>Joseph Wayne Sample and Sarah Lynn Sample<\/case_title>\n         <chapter>7<\/chapter>\n         <court_code>orbtrain<\/court_code>\n         <date_closed null=\"true\" \/>\n         <date_filed>10\/15\/2014<\/date_filed>\n         <lead_bk_case_no null=\"true\" \/>\n         <lead_bk_case_title null=\"true\" \/>\n         <links>\n            <dockets>\n               <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618\/dockets<\/href>\n            <\/dockets>\n            <self>\n               <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618<\/href>\n            <\/self>\n         <\/links>\n         <timestamp>2018-09-24T17:37:18.440870Z<\/timestamp>\n         <title>Joseph Wayne Sample and Sarah Lynn Sample<\/title>\n      <\/element>\n   <\/cases>\n   <parties \/>\n   <receipts \/>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Local Court Case Search","tags":["pacer_case_lookup"],"x-courtapi-resource":"case","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Case search at {{court_code}}","x-mojo-name":"courts_pacer_cases_search","x-mojo-to":"Courts::Search#localcasesearch"}},"\/courts\/pacer\/{court_code}\/cases\/search\/appellate":{"post":{"description":"Query an appellate court for cases that match the specified filters.","operationId":"searchAppellateCourtCases","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_no":{"description":"Case Number (y-n or yy-nnnnn)  (Case Number \/ Range from)","pattern":"^\\d{1,2}-\\d{1,5}$","type":"string"},"case_no_to":{"description":"Case Number (y-n or yy-nnnnn)  (Case Number \/ Range to)","pattern":"^\\d{1,2}-\\d{1,5}$","type":"string"},"case_type":{"description":"Case Type","type":"string"},"closed_cases":{"description":"Closed cases","type":"boolean"},"closed_from":{"description":"Cases Closed From Date (MM\/DD\/YYYY)","type":"string"},"closed_to":{"description":"Cases Closed To Date (MM\/DD\/YYYY)","type":"string"},"docket_activity_from":{"description":"Docket Activity From Date (MM\/DD\/YYYY)","type":"string"},"docket_activity_to":{"description":"Docket Activity To Date (MM\/DD\/YYYY)","type":"string"},"filed_from":{"description":"Filed From Date (MM\/DD\/YYYY)","type":"string"},"filed_to":{"description":"Filed To Date (MM\/DD\/YYYY)","type":"string"},"nos":{"description":"Nature of Suit","type":"string"},"open_cases":{"description":"Open cases","type":"boolean"},"origin":{"description":"Origin","type":"string"},"origin_case_no":{"description":"Originating Case Number","type":"string"},"pacer_client":{"description":"PACER Client Code","type":"string"},"party_exact":{"description":"Exact matches only","type":"boolean"},"party_name":{"description":"Party \/ Attorney Name","type":"string"},"search_attorney":{"description":"Attorney","type":"boolean"},"search_party":{"description":"Party","type":"boolean"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_no":"15-05073","case_title":"Brian Vance v. USA","chapter":null,"court_code":"06caetrain","date_closed":null,"date_filed":"01\/23\/2015","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/06caetrain\/15-05073\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/06caetrain\/15-05073"}},"timestamp":"2019-05-01T07:46:18.469420Z","title":"Brian Vance v. USA"}],"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}}},"parties":[],"receipts":[{"client_code":"","cost":"0.10","criteria":"Case: 15-5073 (XML)","datetime":"05\/01\/2019 03:46:11","description":"Case Selection Table","pages":"1","timestamp":null,"user_id":"irtraining"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"lead_bk_case_no":{"type":"string"},"lead_bk_case_title":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"lead_bk_case_no":{"type":"string"},"lead_bk_case_title":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_no>15-05073<\/case_no>\n    <case_title>Brian Vance v. USA<\/case_title>\n    <chapter\/>\n    <court_code>06caetrain<\/court_code>\n    <date_closed\/>\n    <date_filed>01\/23\/2015<\/date_filed>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/06caetrain\/15-05073\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/06caetrain\/15-05073<\/href>\n      <\/self>\n    <\/links>\n    <timestamp>2019-05-01T07:46:18.469420Z<\/timestamp>\n    <title>Brian Vance v. USA<\/title>\n  <\/cases>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n  <\/links>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>Case: 15-5073 (XML)<\/criteria>\n    <datetime>05\/01\/2019 03:46:11<\/datetime>\n    <description>Case Selection Table<\/description>\n    <pages>1<\/pages>\n    <timestamp\/>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Local Appellate Court Case Search","tags":["pacer_case_lookup"],"x-courtapi-resource":"case","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Appellate case search at {{court_code}}","x-mojo-name":"courts_pacer_cases_search_appellate","x-mojo-to":"Courts::Search#localcasesearch_appellate"}},"\/courts\/pacer\/{court_code}\/cases\/search\/bankruptcy":{"post":{"description":"Query a bankruptcy court for cases that match the specified filters.","operationId":"searchBankruptcyCourtCases","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_no":{"description":"Case Number (o:yy-tp-nnnnn)","type":"string"},"closed_cases":{"description":"Closed cases","type":"boolean"},"filed_from":{"description":"Filed From Date (MM\/DD\/YYYY)","type":"string"},"filed_to":{"description":"Filed To Date (MM\/DD\/YYYY)","type":"string"},"first_name":{"description":"First Name","type":"string"},"last_business_name":{"description":"Last \/ Business Name","type":"string"},"last_entry_from":{"description":"Last Entry From Date (MM\/DD\/YYYY)","type":"string"},"last_entry_to":{"description":"Last Entry To Date (MM\/DD\/YYYY)","type":"string"},"middle_name":{"description":"Middle Name","type":"string"},"nos":{"description":"Nature of Suit","type":"string"},"open_cases":{"description":"Open cases","type":"boolean"},"pacer_client":{"description":"PACER Client Code","type":"string"},"person_type":{"description":"Person Type","enum":["pty","aty"],"type":"string"},"ssntin":{"description":"SSN \/ ITIN","type":"string"},"tax_id_ein":{"description":"Tax ID \/ EIN","type":"integer"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_no":"6:14-bk-63618","case_title":"Joseph Wayne Sample and Sarah Lynn Sample","chapter":7,"court_code":"orbtrain","date_closed":null,"date_filed":"10\/15\/2014","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618"}},"timestamp":"2018-09-24T17:37:18.440870Z","title":"Joseph Wayne Sample and Sarah Lynn Sample"}],"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}},"redacted_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf"}}},"parties":[{"case_no":"6:04-bk-68384","case_title":"Cristine Smith Jackson","chapter":13,"court_code":"orbtrain","date_closed":"07\/15\/1908","date_filed":"10\/25\/1904","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:04-bk-68384\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:04-bk-68384"}},"party_name":"Jackson, Cristine Smith","party_role":"Debtor","timestamp":"2019-05-01T07:16:21.347620Z","title":"Cristine Smith Jackson"}],"receipts":[{"client_code":"","cost":"0.10","criteria":"FName: Cristine MName: Smith","datetime":"05\/01\/2019 00:16:21","description":"Search","pages":"1","timestamp":"2019-05-01T07:16:18.413985Z","user_id":"irtraining"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"lead_bk_case_no":{"type":"string"},"lead_bk_case_title":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"redacted_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"lead_bk_case_no":{"type":"string"},"lead_bk_case_title":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_no>6:14-bk-63618<\/case_no>\n    <case_title>Joseph Wayne Sample and Sarah Lynn Sample<\/case_title>\n    <chapter>7<\/chapter>\n    <court_code>orbtrain<\/court_code>\n    <date_closed\/>\n    <date_filed>10\/15\/2014<\/date_filed>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618<\/href>\n      <\/self>\n    <\/links>\n    <timestamp>2018-09-24T17:37:18.440870Z<\/timestamp>\n    <title>Joseph Wayne Sample and Sarah Lynn Sample<\/title>\n  <\/cases>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n    <redacted_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf<\/href>\n      <\/pdf>\n    <\/redacted_screenshot>\n  <\/links>\n  <parties>\n    <case_no>6:04-bk-68384<\/case_no>\n    <case_title>Cristine Smith Jackson<\/case_title>\n    <chapter>13<\/chapter>\n    <court_code>orbtrain<\/court_code>\n    <date_closed>07\/15\/1908<\/date_closed>\n    <date_filed>10\/25\/1904<\/date_filed>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:04-bk-68384\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:04-bk-68384<\/href>\n      <\/self>\n    <\/links>\n    <party_name>Jackson, Cristine Smith<\/party_name>\n    <party_role>Debtor<\/party_role>\n    <timestamp>2019-05-01T07:16:21.347620Z<\/timestamp>\n    <title>Cristine Smith Jackson<\/title>\n  <\/parties>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>FName: Cristine MName: Smith<\/criteria>\n    <datetime>05\/01\/2019 00:16:21<\/datetime>\n    <description>Search<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T07:16:18.413985Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Local Bankruptcy Court Case Search","tags":["pacer_case_lookup"],"x-courtapi-resource":"case","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Bankruptcy court case search at {{court_code}}","x-mojo-name":"courts_pacer_cases_search_bankruptcy","x-mojo-to":"Courts::Search#localcasesearch_bankruptcy"}},"\/courts\/pacer\/{court_code}\/cases\/search\/by-case-number":{"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}}],"post":{"description":"This endpoint uses the case number search to find cases at the court on PACER.  No PACER charges apply when searching by case number alone.\n","operationId":"searchCourtCasesByCaseNumber","requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_no":{"description":"Case Number (o:yy-tp-nnnnn)","type":"string"}},"required":["case_no"],"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_no":"6:14-bk-63618","case_title":"Joseph Wayne Sample and Sarah Lynn Sample","chapter":7,"court_code":"orbtrain","date_closed":null,"date_filed":"10\/15\/2014","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618"}},"timestamp":"2018-09-24T17:37:18.440870Z","title":"Joseph Wayne Sample and Sarah Lynn Sample"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"lead_bk_case_no":{"type":"string"},"lead_bk_case_title":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"description":"search results matching criteria"},"400":{"description":"Bad Request"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Local Court Case Search By Case Number Only","tags":["pacer_case_lookup"],"x-courtapi-resource":"case","x-courtapi-source":"pacer","x-courtdrive-async-desc":"Case search by case number only at {{court_code}}","x-mojo-name":"courts_pacer_cases_search_by_case_number","x-mojo-to":"Courts::Search#free_localcasesearch"}},"\/courts\/pacer\/{court_code}\/cases\/search\/district":{"post":{"description":"Query a district court for cases that match the specified filters.","operationId":"searchDistrictCourtCases","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_no":{"description":"Case Number (o:yy-tp-nnnnn)","type":"string"},"cause_of_action":{"description":"Cause of Action","type":"string"},"closed_cases":{"description":"Closed cases","type":"boolean"},"filed_from":{"description":"Filed From Date (MM\/DD\/YYYY)","type":"string"},"filed_to":{"description":"Filed To Date (MM\/DD\/YYYY)","type":"string"},"first_name":{"description":"First Name","type":"string"},"last_business_name":{"description":"Last \/ Business Name","type":"string"},"last_entry_from":{"description":"Last Entry From Date (MM\/DD\/YYYY)","type":"string"},"last_entry_to":{"description":"Last Entry To Date (MM\/DD\/YYYY)","type":"string"},"middle_name":{"description":"Middle Name","type":"string"},"nos":{"description":"Nature of Suit","type":"string"},"open_cases":{"description":"Open cases","type":"boolean"},"pacer_client":{"description":"PACER Client Code","type":"string"},"party_exact":{"description":"Exact matches only","type":"boolean"},"person_type":{"description":"Person Type","enum":["pty","aty"],"type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_no":"0:19-cv-00201","case_title":"ABC Corporation v. XYZ Company","chapter":null,"court_code":"mndtrain","date_closed":null,"date_filed":"12\/19\/2012","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:19-cv-00201\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/mndtrain\/0:19-cv-00201"}},"timestamp":"2019-05-01T07:32:14.731540Z","title":"ABC Corporation v. XYZ Company"}],"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}}},"parties":[],"receipts":[]},"schema":{"properties":{"cases":{"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"lead_bk_case_no":{"type":"string"},"lead_bk_case_title":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"lead_bk_case_no":{"type":"string"},"lead_bk_case_title":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_no>6:14-bk-63618<\/case_no>\n    <case_title>Joseph Wayne Sample and Sarah Lynn Sample<\/case_title>\n    <chapter>7<\/chapter>\n    <court_code>orbtrain<\/court_code>\n    <date_closed\/>\n    <date_filed>10\/15\/2014<\/date_filed>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618<\/href>\n      <\/self>\n    <\/links>\n    <timestamp>2018-09-24T17:37:18.440870Z<\/timestamp>\n    <title>Joseph Wayne Sample and Sarah Lynn Sample<\/title>\n  <\/cases>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n    <redacted_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf<\/href>\n      <\/pdf>\n    <\/redacted_screenshot>\n  <\/links>\n  <parties>\n    <case_no>6:04-bk-68384<\/case_no>\n    <case_title>Cristine Smith Jackson<\/case_title>\n    <chapter>13<\/chapter>\n    <court_code>orbtrain<\/court_code>\n    <date_closed>07\/15\/1908<\/date_closed>\n    <date_filed>10\/25\/1904<\/date_filed>\n    <lead_bk_case_no\/>\n    <lead_bk_case_title\/>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:04-bk-68384\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:04-bk-68384<\/href>\n      <\/self>\n    <\/links>\n    <party_name>Jackson, Cristine Smith<\/party_name>\n    <party_role>Debtor<\/party_role>\n    <timestamp>2019-05-01T07:16:21.347620Z<\/timestamp>\n    <title>Cristine Smith Jackson<\/title>\n  <\/parties>\n  <receipts>\n    <client_code><\/client_code>\n    <cost>0.10<\/cost>\n    <criteria>FName: Cristine MName: Smith<\/criteria>\n    <datetime>05\/01\/2019 00:16:21<\/datetime>\n    <description>Search<\/description>\n    <pages>1<\/pages>\n    <timestamp>2019-05-01T07:16:18.413985Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Local District Court Case Search","tags":["pacer_case_lookup"],"x-courtapi-resource":"case","x-courtapi-source":"pacer","x-courtdrive-async-desc":"District court case search at {{court_code}}","x-mojo-name":"courts_pacer_cases_search_district","x-mojo-to":"Courts::Search#localcasesearch_district"}},"\/courts\/pacer\/{court_code}\/epoc\/info":{"get":{"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"attachment_size_limit":{"type":"integer"}},"required":["attachment_size_limit"],"type":"object"}}},"description":"Court info"},"400":{"content":{"application\/json":{"examples":{"Error from internal API":{"value":[{"error":{"detail":"Court does not support ePOC","status":400},"status":"fail"}]}},"schema":{"description":"Returned on internal API failures","properties":{"error":{"properties":{"detail":{"description":"Error message","type":"string"},"status":{"type":"integer"}},"type":"object"},"status":{"type":"string"}},"type":"object"}}},"description":"Bad request, invalid request syntax, wrong input"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Return court info","tags":["epoc"],"x-courtapi-resource":"epoc","x-courtapi-source":"pacer","x-mojo-name":"pacer_court_epoc_info","x-mojo-to":"PACER::Case::EPOC#epoc_info"},"parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}}]},"\/courts\/pacer\/{court_code}\/parties\/search\/district":{"post":{"description":"Query a district court for parties that match the specified filters.","operationId":"searchDistrictCourtParties","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"first_name":{"description":"First Name","type":"string"},"last_business_name":{"description":"Last \/ Business Name","type":"string"},"middle_name":{"description":"Middle Name","type":"string"},"pacer_client":{"description":"PACER Client Code","type":"string"},"party_exact":{"description":"Exact matches only","type":"boolean"},"person_type":{"description":"Person Type","enum":["pty","aty"],"type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"parties":[{"court_code":"flndtest","links":{"party_cases":{"href":"http:\/\/courtapi.dev.courtio.com\/courts\/pacer\/flndtest\/parties\/search\/district\/cases?party_cases_id=aHR0cHM6Ly9lY2YtdGVzdC5mbG5kLnVzY291cnRzLmdvdi9jZ2ktYmluL2lxdWVyeS5wbD80MzExOTA2NTMwMzQ3OTItTF8xXzEtMC0zNTQwMjItcHR5LWRmdCUyMC1kZWZlbmRhbnQ%3D","method":"POST"}},"party_name":"LYONS, ALEX CHRISTOPHER","party_role":"defendant","timestamp":1625129330.83783}],"receipts":[]},"schema":{"properties":{"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"court_code":{"type":"string"},"links":{"properties":{"party_cases":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"},"method":{"enum":["POST"],"type":"string"}},"type":"object"}},"type":"object"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"format":"date-time","type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n    <parties>\n        <court_code>flndtest<\/court_code>\n        <links>\n            <party_cases>\n                <href>https:\/\/v1.courtapi.com\/courts\/pacer\/flndtest\/parties\/search\/district\/cases?party_cases_id=aHR0cHM6Ly9lY2YtdGVzdC5mbG5kLnVzY291cnRzLmdvdi9jZ2ktYmluL2lxdWVyeS5wbD8xMDQ2ODk4Njk4OTAxMDktTF8xXzEtMC0zNTQwMjItcHR5LWRmdCUyMC1kZWZlbmRhbnQ%3D<\/href>\n                <method>POST<\/method>\n            <\/party_cases>\n        <\/links>\n        <party_name>LYONS, ALEX CHRISTOPHER<\/party_name>\n        <party_role>defendant<\/party_role>\n        <timestamp>1625129098.48893<\/timestamp>\n    <\/parties>\n    <links>\n        <original_screenshot>\n            <pdf>\n                <href>https:\/\/v1.courtapi.com\/source-data\/9790a411-0b34-4cc8-b104-7760153ce028\/screenshot-original.pdf<\/href>\n            <\/pdf>\n        <\/original_screenshot>\n    <\/links>\n    <receipts \/>\n<\/result>"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Local District Court Parties Search","tags":["pacer_case_lookup"],"x-courtapi-resource":"case","x-courtapi-source":"pacer","x-courtdrive-async-desc":"District court parties search at {{court_code}}","x-mojo-name":"courts_pacer_district_parties_search","x-mojo-to":"Courts::Search#localcasesearch_district_parties"}},"\/courts\/pacer\/{court_code}\/parties\/search\/district\/cases":{"post":{"description":"Query a district court for parties that match the specified filters.","operationId":"searchDistrictCourtPartyCases","parameters":[{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}},{"description":"Party Cases ID","in":"query","name":"party_cases_id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_client":{"description":"PACER Client Code","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_no":"6:14-bk-63618","case_title":"Joseph Wayne Sample and Sarah Lynn Sample","chapter":7,"court_code":"orbtrain","date_closed":null,"date_filed":"10\/15\/2014","lead_bk_case_no":null,"lead_bk_case_title":null,"links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbtrain\/6:14-bk-63618"}},"timestamp":"2018-09-24T17:37:18.440870Z","title":"Joseph Wayne Sample and Sarah Lynn Sample"}],"parties":[],"receipts":[]},"schema":{"properties":{"cases":{"items":{"properties":{"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"lead_bk_case_no":{"type":"string"},"lead_bk_case_title":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n    <links>\n        <original_screenshot>\n            <pdf>\n                <href>http:\/\/courtapi.dev.courtio.com\/source-data\/ab63953e-8034-43f0-8ed9-db9d3be4c030\/screenshot-original.pdf<\/href>\n            <\/pdf>\n        <\/original_screenshot>\n    <\/links>\n    <receipts>\n        <datetime>07\/01\/2021 04:36:52<\/datetime>\n        <cost>0.10<\/cost>\n        <client_code>\n        <\/client_code>\n        <timestamp>2021-07-01T08:36:51.183648Z<\/timestamp>\n        <pages>1<\/pages>\n        <user_id>irtraining<\/user_id>\n        <description>Search<\/description>\n        <criteria>Last Name: LYONS Type: pty<\/criteria>\n    <\/receipts>\n    <cases>\n        <date_filed>08\/23\/2005<\/date_filed>\n        <lead_bk_case_no\/>\n        <lead_bk_case_title\/>\n        <links>\n            <dockets>\n                <href>http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/flndtest\/1:05-cr-00036\/dockets<\/href>\n            <\/dockets>\n            <self>\n                <href>http:\/\/courtapi.dev.courtio.com\/cases\/pacer\/flndtest\/1:05-cr-00036<\/href>\n            <\/self>\n        <\/links>\n        <case_title>USA v. KEYE et al<\/case_title>\n        <date_closed>02\/14\/2008<\/date_closed>\n        <chapter\/>\n        <timestamp>2021-07-01T08:36:52.954025Z<\/timestamp>\n        <title>USA v. KEYE et al<\/title>\n        <court_code>flndtest<\/court_code>\n        <case_no>1:05-cr-00036<\/case_no>\n    <\/cases>\n<\/result>"}},"description":"search results matching criteria"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Local District Court Search Partiy Cases","tags":["pacer_case_lookup"],"x-courtapi-resource":"case","x-courtapi-source":"pacer","x-courtdrive-async-desc":"District court search party cases at {{court_code}}","x-mojo-name":"courts_pacer_district_party_cases","x-mojo-to":"Courts::Search#localcasesearch_district_party_cases"}},"\/emails\/firm\/pacer":{"get":{"description":"Returns the firm's deduplicated inbox of PACER NEFs (`court_system=PACER`).\nPage size defaults to 25 and is capped at 25 (CourtAPI billing rule).\n","parameters":[{"description":"Sort column and direction, expressed as `<column>,<asc|desc>`.\nAllowed columns are `subject` and `received`. Default is `received,desc`.\n","in":"query","name":"sort","required":false,"schema":{"default":"received,desc","pattern":"^(subject|received),(asc|desc)$","type":"string"}},{"description":"Page number (1-indexed)","in":"query","name":"page_number","required":false,"schema":{"default":1,"maximum":1000,"minimum":1,"type":"integer"}},{"description":"Page size. Defaults to 25 and is capped at 25 (CourtAPI billing rule:\nup to 25 emails = 1 API call).\n","in":"query","name":"page_size","required":false,"schema":{"default":25,"maximum":25,"minimum":1,"type":"integer"}}],"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"emails":{"items":{"properties":{"case_number":{"example":"1:14-bk-10557","nullable":true,"type":"string"},"case_title":{"example":"Sbarro LLC","nullable":true,"type":"string"},"case_uuid":{"example":"nysbke_247775","nullable":true,"type":"string"},"court_code":{"description":"PACER court code (e.g. `nysbke`) for `court_system=PACER` rows; absent for non-PACER cases","example":"nysbke","nullable":true,"type":"string"},"court_system":{"description":"The ECF court system the email originated from","example":"TYLERTECH","type":"string"},"date":{"description":"When the email was received","example":"2025-12-02T12:34:56Z","format":"date-time","type":"string"},"documents":{"description":"Documents attached to the email. Inlined here so a client can fetch the\npage of emails and the per-PDF download in just two round-trips.\n","items":{"properties":{"filename":{"description":"Suggested filename for download","example":"Motion_Filed.pdf","type":"string"},"filing_number":{"description":"Filing number on the case docket","example":12345,"type":"number"},"id":{"description":"The id of the document","example":983244543,"type":"integer"},"links":{"properties":{"pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["DELETE","GET","PATCH","POST","PUT"],"type":"string"}},"required":["href"],"type":"object"}},"type":"object"},"number":{"description":"Document part number within the filing","example":1,"type":"integer"},"pages":{"description":"Number of pages in the PDF, if known","example":3,"type":"integer"},"title":{"description":"Document title","example":"Motion Filed","type":"string"}},"required":["id","filing_number","number","links"],"type":"object"},"type":"array"},"from":{"description":"The \"From\" header on the original email","example":"noreply@texfile.tylertech.cloud","nullable":true,"type":"string"},"links":{"description":"Always includes `self` and `documents`. For `court_system=PACER` rows, also\nincludes a `case` link to `\/cases\/pacer\/{court_code}\/{case_number}`; the\n`case` link is absent for non-PACER rows.\n","properties":{"case":{"properties":{"href":{"example":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557","type":"string"}},"type":"object"},"documents":{"properties":{"href":{"example":"https:\/\/v1.courtapi.com\/emails\/123456\/documents","type":"string"}},"type":"object"},"self":{"properties":{"href":{"example":"https:\/\/v1.courtapi.com\/emails\/123456","type":"string"}},"type":"object"}},"required":["self","documents"],"type":"object"},"recipient":{"description":"The forwarding address that received the email","example":"firm-inbox-prefix@ecf.courtdrive.com","nullable":true,"type":"string"},"state":{"description":"2-letter state code derived from the case_uuid; `PACER` for PACER cases","example":"TX","nullable":true,"type":"string"},"subject":{"example":"Receipt of Submission - WD88501 - LINDA MCKINNEY, APEL V TERRENCE MCKINNEY, RES, Western Appellate","nullable":true,"type":"string"}},"required":["recipient","court_system","state","case_uuid","case_number","case_title","documents","links"],"type":"object"},"type":"array"},"links":{"properties":{"first":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"},"last":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"},"next":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"},"previous":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"},"self":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"}},"required":["self"],"type":"object"}},"required":["emails","links"],"type":"object"}}},"description":"OK"},"400":{"description":"Invalid input parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"description":"Application is not linked to a CourtDrive account"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"List firm inbox PACER emails","tags":["emails"],"x-courtapi-resource":"email","x-courtapi-source":"local","x-mojo-name":"emails_firm_pacer","x-mojo-to":"Emails#list_pacer"}},"\/emails\/firm\/state":{"get":{"description":"Returns the firm's deduplicated inbox of state and vendor-court emails\n(everything except `court_system=PACER`). Optionally filter by `state`,\nwhich may be supplied multiple times. Page size defaults to 25 and is\ncapped at 25 (CourtAPI billing rule).\n","parameters":[{"description":"Filter results to one or more states. Values are 2-letter US codes (plus\n`DC` and `PR`) — see the `ecf.state_type` enum in postgres for the full\nlist. Repeat the parameter to supply multiple states (e.g.\n`?state=NJ&state=PA`). When omitted, every non-PACER court system is\nincluded.\n","explode":true,"in":"query","name":"state","required":false,"schema":{"items":{"example":"NJ","pattern":"^[A-Z]{2}$","type":"string"},"type":"array"},"style":"form"},{"description":"Sort column and direction, expressed as `<column>,<asc|desc>`.\nAllowed columns are `subject` and `received`. Default is `received,desc`.\n","in":"query","name":"sort","required":false,"schema":{"default":"received,desc","pattern":"^(subject|received),(asc|desc)$","type":"string"}},{"description":"Page number (1-indexed)","in":"query","name":"page_number","required":false,"schema":{"default":1,"maximum":1000,"minimum":1,"type":"integer"}},{"description":"Page size. Defaults to 25 and is capped at 25 (CourtAPI billing rule:\nup to 25 emails = 1 API call).\n","in":"query","name":"page_size","required":false,"schema":{"default":25,"maximum":25,"minimum":1,"type":"integer"}}],"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"emails":{"items":{"properties":{"case_number":{"example":"1:14-bk-10557","nullable":true,"type":"string"},"case_title":{"example":"Sbarro LLC","nullable":true,"type":"string"},"case_uuid":{"example":"nysbke_247775","nullable":true,"type":"string"},"court_code":{"description":"PACER court code (e.g. `nysbke`) for `court_system=PACER` rows; absent for non-PACER cases","example":"nysbke","nullable":true,"type":"string"},"court_system":{"description":"The ECF court system the email originated from","example":"TYLERTECH","type":"string"},"date":{"description":"When the email was received","example":"2025-12-02T12:34:56Z","format":"date-time","type":"string"},"documents":{"description":"Documents attached to the email. Inlined here so a client can fetch the\npage of emails and the per-PDF download in just two round-trips.\n","items":{"properties":{"filename":{"description":"Suggested filename for download","example":"Motion_Filed.pdf","type":"string"},"filing_number":{"description":"Filing number on the case docket","example":12345,"type":"number"},"id":{"description":"The id of the document","example":983244543,"type":"integer"},"links":{"properties":{"pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["DELETE","GET","PATCH","POST","PUT"],"type":"string"}},"required":["href"],"type":"object"}},"type":"object"},"number":{"description":"Document part number within the filing","example":1,"type":"integer"},"pages":{"description":"Number of pages in the PDF, if known","example":3,"type":"integer"},"title":{"description":"Document title","example":"Motion Filed","type":"string"}},"required":["id","filing_number","number","links"],"type":"object"},"type":"array"},"from":{"description":"The \"From\" header on the original email","example":"noreply@texfile.tylertech.cloud","nullable":true,"type":"string"},"links":{"description":"Always includes `self` and `documents`. For `court_system=PACER` rows, also\nincludes a `case` link to `\/cases\/pacer\/{court_code}\/{case_number}`; the\n`case` link is absent for non-PACER rows.\n","properties":{"case":{"properties":{"href":{"example":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557","type":"string"}},"type":"object"},"documents":{"properties":{"href":{"example":"https:\/\/v1.courtapi.com\/emails\/123456\/documents","type":"string"}},"type":"object"},"self":{"properties":{"href":{"example":"https:\/\/v1.courtapi.com\/emails\/123456","type":"string"}},"type":"object"}},"required":["self","documents"],"type":"object"},"recipient":{"description":"The forwarding address that received the email","example":"firm-inbox-prefix@ecf.courtdrive.com","nullable":true,"type":"string"},"state":{"description":"2-letter state code derived from the case_uuid; `PACER` for PACER cases","example":"TX","nullable":true,"type":"string"},"subject":{"example":"Receipt of Submission - WD88501 - LINDA MCKINNEY, APEL V TERRENCE MCKINNEY, RES, Western Appellate","nullable":true,"type":"string"}},"required":["recipient","court_system","state","case_uuid","case_number","case_title","documents","links"],"type":"object"},"type":"array"},"links":{"properties":{"first":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"},"last":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"},"next":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"},"previous":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"},"self":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"}},"required":["self"],"type":"object"}},"required":["emails","links"],"type":"object"}}},"description":"OK"},"400":{"description":"Invalid input parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"description":"Application is not linked to a CourtDrive account"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"List firm inbox state emails","tags":["emails"],"x-courtapi-resource":"email","x-courtapi-source":"local","x-mojo-name":"emails_firm_state","x-mojo-to":"Emails#list_state"}},"\/emails\/{message_id}":{"get":{"description":"Returns the email with its processed body and the list of attached documents.","responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"email":{"properties":{"body":{"description":"Processed email body","example":"<html><body>email body<\/body><\/html>","nullable":true,"type":"string"},"case_number":{"example":"WD88501","nullable":true,"type":"string"},"case_title":{"example":"LINDA MCKINNEY v TERRENCE MCKINNEY","nullable":true,"type":"string"},"case_uuid":{"example":"tylertech_texfile_WD88501","nullable":true,"type":"string"},"court_code":{"description":"PACER court code (e.g. `nysbke`) for `court_system=PACER` rows; absent for non-PACER cases","example":"nysbke","nullable":true,"type":"string"},"court_system":{"description":"The ECF court system the email originated from","example":"TYLERTECH","type":"string"},"date":{"description":"When the email was received","example":"2025-12-02T12:34:56Z","format":"date-time","type":"string"},"documents":{"description":"Documents attached to the email","items":{"properties":{"filename":{"description":"Suggested filename for download","example":"Motion_Filed.pdf","type":"string"},"filing_number":{"description":"Filing number on the case docket","example":12345,"type":"number"},"id":{"description":"The id of the document","example":983244543,"type":"integer"},"links":{"properties":{"pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["DELETE","GET","PATCH","POST","PUT"],"type":"string"}},"required":["href"],"type":"object"}},"type":"object"},"number":{"description":"Document part number within the filing","example":1,"type":"integer"},"pages":{"description":"Number of pages in the PDF, if known","example":3,"type":"integer"},"title":{"description":"Document title","example":"Motion Filed","type":"string"}},"required":["id","filing_number","number","links"],"type":"object"},"type":"array"},"from":{"description":"The \"From\" header on the original email","example":"noreply@texfile.tylertech.cloud","nullable":true,"type":"string"},"links":{"description":"Always includes `self` and `documents`. For `court_system=PACER` rows, also\nincludes a `case` link to `\/cases\/pacer\/{court_code}\/{case_number}`; the\n`case` link is absent for non-PACER rows.\n","properties":{"case":{"properties":{"href":{"type":"string"}},"type":"object"},"documents":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"required":["self","documents"],"type":"object"},"recipient":{"description":"The forwarding address that received the email","example":"firm-inbox-prefix@ecf.courtdrive.com","nullable":true,"type":"string"},"state":{"description":"2-letter state code derived from the case_uuid; `PACER` for PACER cases","example":"TX","nullable":true,"type":"string"},"subject":{"example":"Receipt of Submission - WD88501 - LINDA MCKINNEY, APEL V TERRENCE MCKINNEY, RES, Western Appellate","nullable":true,"type":"string"}},"required":["court_system","state","case_uuid","case_number","case_title","documents","links"],"type":"object"}},"required":["email"],"type":"object"}}},"description":"OK"},"400":{"description":"Invalid input parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"description":"Email not found, or application not linked to a CourtDrive account"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get a single email","tags":["emails"],"x-courtapi-resource":"email","x-courtapi-source":"local","x-mojo-name":"show_email","x-mojo-to":"Emails#get_email"},"parameters":[{"description":"ECF Message Id","in":"path","name":"message_id","required":true,"schema":{"minimum":1,"type":"integer"}}]},"\/emails\/{message_id}\/documents":{"get":{"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"documents":{"items":{"properties":{"filename":{"description":"Suggested filename for download","example":"Motion_Filed.pdf","type":"string"},"filing_number":{"description":"Filing number on the case docket","example":12345,"type":"number"},"id":{"description":"The id of the document","example":983244543,"type":"integer"},"links":{"properties":{"pdf":{"properties":{"href":{"type":"string"},"method":{"enum":["DELETE","GET","PATCH","POST","PUT"],"type":"string"}},"required":["href"],"type":"object"}},"type":"object"},"number":{"description":"Document part number within the filing","example":1,"type":"integer"},"pages":{"description":"Number of pages in the PDF, if known","example":3,"type":"integer"},"title":{"description":"Document title","example":"Motion Filed","type":"string"}},"required":["id","filing_number","number","links"],"type":"object"},"type":"array"},"links":{"properties":{"email":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"required":["email","self"],"type":"object"}},"required":["documents","links"],"type":"object"}}},"description":"OK"},"400":{"description":"Invalid input parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"description":"Email not found, or application not linked to a CourtDrive account"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"List documents associated with an email","tags":["emails"],"x-courtapi-resource":"email-documents","x-courtapi-source":"local","x-mojo-name":"list_email_documents","x-mojo-to":"Emails#email_documents"},"parameters":[{"description":"ECF Message Id","in":"path","name":"message_id","required":true,"schema":{"minimum":1,"type":"integer"}}]},"\/emails\/{message_id}\/documents\/{case_document_id}":{"get":{"description":"Returns metadata for the document. When the PDF has been cached, the\nresponse also includes signed `download_url` and `preview_url` values\n(`origin=cache`); otherwise the URLs are omitted (`origin=pending`).\n","responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"document":{"properties":{"download_url":{"description":"Signed URL to download the PDF (only when `origin=cache`)","format":"uri","type":"string"},"filename":{"type":"string"},"filing_number":{"type":"number"},"id":{"type":"integer"},"links":{"properties":{"email":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"required":["email","self"],"type":"object"},"number":{"type":"integer"},"origin":{"description":"`cache` means the PDF is downloaded and `download_url`\/`preview_url` are\npopulated. `pending` means it has not yet been fetched; only the\nmetadata is available.\n","enum":["cache","pending"],"type":"string"},"pages":{"type":"integer"},"preview_url":{"description":"Signed URL to view the PDF inline (only when `origin=cache`)","format":"uri","type":"string"},"title":{"type":"string"}},"required":["id","filing_number","number","origin","links"],"type":"object"},"links":{"properties":{"email":{"properties":{"href":{"type":"string"},"method":{"enum":["DELETE","GET","PATCH","POST","PUT"],"type":"string"}},"required":["href"],"type":"object"}},"required":["email"],"type":"object"}},"required":["document","links"],"type":"object"}}},"description":"OK"},"400":{"description":"Invalid input parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"description":"Document not found, or application not linked to a CourtDrive account"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get email document with download URLs","tags":["emails"],"x-courtapi-resource":"email-document","x-courtapi-source":"local","x-mojo-name":"get_email_document","x-mojo-to":"Emails#document_pdf"},"parameters":[{"description":"ECF Message Id","in":"path","name":"message_id","required":true,"schema":{"minimum":1,"type":"integer"}},{"description":"ECF Case Document Id","in":"path","name":"case_document_id","required":true,"schema":{"minimum":1,"type":"integer"}}]},"\/pacer\/bankruptcy-debtors":{"get":{"operationId":"getBankruptcyDebtors","parameters":[{"description":"Date Filed From (MM\/DD\/YYYY)","in":"query","name":"date_filed_from","required":true,"schema":{"type":"string"}},{"description":"Date Filed To (MM\/DD\/YYYY)","in":"query","name":"date_filed_to","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"schema":{"items":{"properties":{"party_address_1":{"type":"string"},"party_address_2":{"type":"string"},"party_address_3":{"type":"string"},"party_city":{"type":"string"},"party_country":{"type":"string"},"party_first_name":{"type":"string"},"party_generation":{"type":"string"},"party_last_name":{"type":"string"},"party_middle_name":{"type":"string"},"party_office":{"type":"string"},"party_phone":{"type":"string"},"party_postal_code":{"type":"string"},"party_role":{"example":"Debtor","type":"string"},"party_state":{"type":"string"},"ssn":{"example":"xxx-xx-1234","type":"string"},"tax_id":{"type":"string"}},"type":"object"},"type":"array"}}},"description":"OK"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get PACER bankruptcy debtors from localdb","x-mojo-name":"localdb_bankruptcy_debtors","x-mojo-to":"BankruptcyDebtors#get"}},"\/pacer\/credentials":{"delete":{"description":"Delete Credentials","operationId":"deleteCredentials","responses":{"200":{"content":{"application\/json":{"example":{"app_id":"test","pacer_user":"username"}},"application\/xml":{"example":"<result>\n  <app_id>test<\/app_id>\n  <pacer_user>username<\/pacer_user>\n<\/result>\n"}},"description":"App ID and PACER User Name"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Delete Credentials","tags":["pacer_credentials"],"x-courtapi-free-call":true,"x-courtapi-resource":"credentials","x-courtapi-source":"local","x-courtdrive-async-desc":"Delete PACER credentials","x-mojo-name":"pacer_credentials_delete","x-mojo-to":"PACER::Credentials#delete"},"get":{"description":"Get Credentials","operationId":"getCredentials","responses":{"200":{"content":{"application\/json":{"example":{"app_id":"test","pacer_user":"username"}},"application\/xml":{"example":"<result>\n  <app_id>test<\/app_id>\n  <pacer_user>username<\/pacer_user>\n<\/result>\n"}},"description":"App ID and PACER User Name"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get Credentials","tags":["pacer_credentials"],"x-courtapi-free-call":true,"x-courtapi-resource":"credentials","x-courtapi-source":"local","x-courtdrive-async-desc":"Get PACER credentials","x-mojo-name":"pacer_credentials_get","x-mojo-to":"PACER::Credentials#get"},"post":{"description":"Create\/Update Credentials","operationId":"saveCredentials","requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_pass":{"description":"PACER Password","type":"string"},"pacer_user":{"description":"PACER User Name","type":"string"},"validate":{"description":"validate credentials (default is to validate)","type":"boolean"}},"required":["pacer_user","pacer_pass"],"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"app_id":"test","pacer_user":"username"}},"application\/xml":{"example":"<result>\n  <app_id>test<\/app_id>\n  <pacer_user>username<\/pacer_user>\n<\/result>\n"}},"description":"Account Info"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Create\/Update Credentials","tags":["pacer_credentials"],"x-courtapi-free-call":true,"x-courtapi-resource":"credentials","x-courtapi-source":"local","x-courtdrive-async-desc":"Create or update PACER Credentials for {{pacer_user}}","x-mojo-name":"pacer_credentials_update_insert","x-mojo-to":"PACER::Credentials#update_insert"}},"\/pacer\/credentials\/check-filer-status":{"post":{"description":"Check PACER Account Filer Status","operationId":"checkFilerStatus","requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"client_code":{"description":"PACER Client Code","type":"string"},"pacer_pass":{"description":"PACER Password","type":"string"},"pacer_user":{"description":"PACER User Name","type":"string"},"training":{"default":false,"description":"PACER Training System Credentials","type":"boolean"}},"required":["pacer_user","pacer_pass"],"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"error_description":"abc-123","has_e_filer_privileges":false,"is_training":false,"valid":true},"schema":{"properties":{"error_description":{"type":"string"},"has_e_filer_privileges":{"type":"boolean"},"is_training":{"type":"boolean"},"valid":{"type":"boolean"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <valid>true<\/valid>\n  <has_e_filer_privileges>false<\/has_e_filer_privileges>\n  <is_training>false<\/is_training>\n  <error_description>abc-123<\/error_description>\n<\/result>\n"}},"description":"OK"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Check PACER Account Filer Status","tags":["pacer_credentials"],"x-courtapi-free-call":true,"x-courtapi-resource":"credentials","x-courtapi-source":"local","x-courtdrive-async-desc":"Check PACER Account Filer Status","x-mojo-name":"check_filer_status","x-mojo-to":"PACER::Credentials#check_filer_status"}},"\/pacer\/credentials\/validate":{"post":{"description":"Validate Credentials","operationId":"checkPacerCredentials","requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"pacer_pass":{"description":"PACER Password","type":"string"},"pacer_user":{"description":"PACER User Name","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"client_code_format":"AAA-NNN","client_code_message":"abc-123","has_e_filer_privileges":false,"is_client_code_required":true,"valid":true},"schema":{"properties":{"client_code_format":{"type":"string"},"client_code_message":{"type":"string"},"error_message":{"type":"string"},"has_e_filer_privileges":{"type":"boolean"},"is_client_code_required":{"type":"boolean"},"valid":{"type":"boolean"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <valid>true<\/valid>\n  <has_e_filer_privileges>false<\/has_e_filer_privileges>\n  <is_client_code_required>true<\/is_client_code_required>\n  <client_code_format>AAA-NNN<\/client_code_format>\n  <client_code_message>abc-123<\/client_code_message>\n<\/result>\n"}},"description":"OK"},"400":{"description":"bad input parameter"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Validate Credentials","tags":["pacer_credentials"],"x-courtapi-free-call":true,"x-courtapi-resource":"credentials","x-courtapi-source":"local","x-courtdrive-async-desc":"Validate PACER credentials","x-mojo-name":"pacer_credentials_validate","x-mojo-to":"PACER::Credentials#validate_credentials"}},"\/pacer\/key-documents\/petitions\/search":{"get":{"parameters":[{"description":"Search keywords","in":"query","name":"keys","schema":{"type":"string"}},{"explode":true,"in":"query","name":"region_code","schema":{"items":{"enum":["01","02","03","04","05","06","07","08","09",10,11,"AK","AL","alm","aln","als","AR","are","arw","AZ","CA","cac","cae","CAFC","can","cas","CIT","CO","COFC","CT","DC","DE","FL","flm","fln","fls","GA","gam","gan","gas","GU","HI","IA","ian","ias","ID","IL","ilc","iln","ils","IN","inn","ins","JPML","KS","KY","kye","kyw","LA","lae","lam","law","MA","MD","ME","MI","mie","miw","MN","MO","moe","mow","MS","msn","mss","MT","NC","nce","ncm","ncw","ND","NE","NH","NJ","NM","nmi","NV","NY","nye","nyn","nys","nyw","OH","ohn","ohs","OK","oke","okn","okw","OR","PA","pae","pam","paw","PR","RI","SC","SD","TN","tne","tnm","tnw","TX","txe","txn","txs","txw","UT","VA","vae","vaw","VI","VT","WA","wae","waw","WI","wie","wiw","WV","wvn","wvs","WY"],"type":"string"},"type":"array"},"style":"form"},{"explode":true,"in":"query","name":"chapter","schema":{"items":{"type":"string"},"type":"array"},"style":"form"},{"explode":true,"in":"query","name":"case_type","schema":{"items":{"enum":["ap","mp","bk"],"type":"string"},"type":"array"},"style":"form"},{"explode":true,"in":"query","name":"naics_code","schema":{"items":{"minimum":1,"type":"integer"},"type":"array"},"style":"form"},{"explode":true,"in":"query","name":"assets","schema":{"items":{"enum":["$0 to $50,000","$50,001 to $100,000","$100,001 to $500,000","$500,001 to $1 million","$1,000,001 to $10 million","$10,000,001 to $50 million","$50,000,001 to $100 million","$100,000,001 to $500 million","$500,000,001 to $1 billion","More than $1 billion","$1,000,000,001 to $10 billion","$10,000,000,001 to $50 billion","More than $50 billion"],"type":"string"},"type":"array"},"style":"form"},{"explode":true,"in":"query","name":"liabilities","schema":{"items":{"enum":["$0 to $50,000","$50,001 to $100,000","$100,001 to $500,000","$500,001 to $1 million","$1,000,001 to $10 million","$10,000,001 to $50 million","$50,000,001 to $100 million","$100,000,001 to $500 million","$500,000,001 to $1 billion","More than $1 billion","$1,000,000,001 to $10 billion","$10,000,000,001 to $50 billion","More than $50 billion"],"type":"string"},"type":"array"},"style":"form"},{"description":"Case Date Filed From (MM\/DD\/YYYY)","in":"query","name":"date_filed_from","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Case Date Filed To (MM\/DD\/YYYY)","in":"query","name":"date_filed_to","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Case Date Open From (MM\/DD\/YYYY)","in":"query","name":"date_open_from","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"description":"Case Date Open To (MM\/DD\/YYYY)","in":"query","name":"date_open_to","schema":{"pattern":"^\\d{1,2}\/\\d{1,2}\/\\d{4}$","type":"string"}},{"in":"query","name":"page_number","schema":{"minimum":1,"type":"integer"}},{"in":"query","name":"page_size","schema":{"maximum":25,"minimum":1,"type":"integer"}}],"responses":{"200":{"content":{"application\/json":{"example":{"links":{"first":"https:\/\/v1.courtapi.com\/example?page_number=1","last":"https:\/\/v1.courtapi.com\/example?page_number=4","next":"https:\/\/v1.courtapi.com\/example?page_number=3","previous":"https:\/\/v1.courtapi.com\/example?page_number=1","self":"https:\/\/v1.courtapi.com\/example?page_number=2"},"page":{"number":1,"size":25,"total_items":100,"total_pages":4},"results":[{"case":{"assets":"$100,001 to $500,000","assigned_to":"Wendy A. Kinsella","case_category":"bankruptcy","case_no":"5:22-bk-30294","case_title":"Fingerlakes Hospitality Group, LLC","case_type":"bk","cause":null,"ch11_type":"Debtor's aggregate noncontingent liquidated debts (excluding debts owed to insiders or affiliates) are less than $2,490,925 (amount subject to adjustment on 4\/01\/16 and every 3 years after that).","chapter":11,"court_code":"nynbke","date_closed":null,"date_discharged":null,"date_filed":"05\/13\/2022","date_of_last_filing":"05\/13\/2022","date_terminated":null,"disposition":null,"has_asset":"Yes","industry":"Traveler Accommodation","is_business_bankruptcy":"1","judge_name":"Wendy A. Kinsella","jurisdiction":null,"jury_demand":null,"liabilities":"$100,001 to $500,000","modified":"2022-05-14T14:33:33.586461Z","naics_code":7211,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"links":{"case":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/casbke\/3:14-bk-00092"},"petition":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/casbke\/3:14-bk-00092\/key-documents\/petition.json"},"petition_pdf":{"href":"http:\/\/v1.courtapi.com\/cases\/pacer\/casbke\/3:14-bk-00092\/key-documents\/petition.pdf"}}}]},"schema":{"properties":{"links":{"properties":{"first":{"properties":{"href":{"type":"string"}},"type":"object"},"last":{"properties":{"href":{"type":"string"}},"type":"object"},"next":{"properties":{"href":{"type":"string"}},"type":"object"},"previous":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"page":{"properties":{"number":{"type":"integer"},"size":{"type":"integer"},"total_items":{"type":"integer"},"total_pages":{"type":"integer"}},"type":"object"},"results":{"items":{"properties":{"case":{"example":{"assets":"Unknown","assigned_to":null,"case_category":"bankruptcy","case_header_last_refreshed":"2022-08-03T11:06:07+00:00","case_no":"1:14-bk-10557","case_title":"Sbarro LLC","case_type":"bk","cause":null,"ch11_type":null,"chapter":11,"court_code":"nysbke","date_closed":null,"date_discharged":null,"date_filed":"03\/10\/2014","date_of_last_filing":null,"date_terminated":null,"disposition":null,"has_asset":"No","industry":null,"is_business_bankruptcy":true,"is_ok_to_list_publicly":false,"is_single_asset_real_estate":false,"is_subchapter_v":false,"judge_name":"Martin Glenn","jurisdiction":null,"jury_demand":null,"liabilities":"Unknown","modified":"2017-07-09T05:13:32.653406Z","naics_code":null,"nature_of_debt":"Business","nature_of_suit_code":null,"petition_type":"v","plan_confirmed":null,"referred_to":null},"properties":{"assets":{"type":"string"},"assigned_to":{"type":"string"},"case_category":{"enum":["appellate","bankruptcy","civil","criminal","miscellaneous"],"type":"string"},"case_header_last_refreshed":{"type":"string"},"case_no":{"type":"string"},"case_title":{"type":"string"},"case_type":{"type":"string"},"cause":{"type":"string"},"ch11_type":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_discharged":{"type":"string"},"date_filed":{"type":"string"},"date_of_last_filing":{"type":"string"},"date_terminated":{"type":"string"},"disposition":{"type":"string"},"has_asset":{"type":"boolean"},"industry":{"type":"string"},"is_ok_to_list_publicly":{"type":"boolean"},"is_single_asset_real_estate":{"type":"boolean"},"is_subchapter_v":{"type":"boolean"},"judge_name":{"type":"string"},"jurisdiction":{"type":"string"},"jury_demand":{"type":"string"},"liabilities":{"type":"string"},"modified":{"format":"date-time","type":"string"},"nature_of_debt":{"type":"string"},"nature_of_suit_code":{"type":"number"},"petition_type":{"type":"string"},"plan_confirmed":{"type":"string"},"referred_to":{"type":"string"}},"type":"object"},"links":{"properties":{"case":{"properties":{"href":{"type":"string"}},"type":"object"},"petition":{"properties":{"href":{"type":"string"}},"type":"object"},"petition_pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"warnings":{"items":{"type":"string"},"type":"array"}},"type":"object"}}},"description":"OK"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Search PACER Bankruptcy Petitions\n","tags":["key-documents","petitions"],"x-courtapi-plans":["Court Pro","Court Elite","Court Enterprise","Enterprise Sandbox"],"x-courtapi-resource":"petition","x-courtapi-source":"local","x-courtdrive-async-desc":"Bankruptcy Petition Search","x-mojo-name":"pacer_petitions_search","x-mojo-to":"PACER::Petitions#search"}},"\/pacer\/ncl\/all":{"post":{"description":"PACER NCL All Courts Case Search","operationId":"locateAllCases","parameters":[{"description":"How to sort NCL results. Valid sort fields depend on the search type. Party searches (name\/SSN criteria) support: court_id, case_no, party_name, last_name, first_name — these have no filing-date sort, so for most-recent-first use case_no with sort_reverse=true. Case searches (no party criteria) support: court_id, case_no, case_title, nos, chapter, date_filed, date_closed.","in":"query","name":"sort_field","required":false,"schema":{"type":"string"}},{"description":"Reverse the sort direction (with case_no, true = newest cases first).","in":"query","name":"sort_reverse","required":false,"schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_no":{"description":"Case Number (o:yy-tp-nnnnn)","type":"string"},"case_title":{"type":"string"},"case_type":{"items":{"type":"string"},"type":"array"},"closed_from":{"description":"Closed From Date (MM\/DD\/YYYY)","type":"string"},"closed_to":{"description":"Closed To Date (MM\/DD\/YYYY)","type":"string"},"court_code":{"description":"Court Code","type":"string"},"filed_from":{"description":"Filed From Date (MM\/DD\/YYYY)","type":"string"},"filed_to":{"description":"Filed To Date (MM\/DD\/YYYY)","type":"string"},"first_name":{"description":"Party first name.  Do not use if using `party_name` field.","type":"string"},"last_name":{"description":"Party last name.  Do not use if using `party_name` field.","type":"string"},"middle_name":{"description":"Party middle name.  Do not use if using `party_name` field.","type":"string"},"pacer_client":{"description":"PACER Client Code","type":"string"},"party_exact":{"description":"Exact Party Name Matches Only","type":"boolean"},"party_name":{"deprecated":true,"description":"Party Name (`last, first`, or `last, first middle`). Do not use if using `last_name`, `first_name`, and `middle_name` fields.  The individual fields are preferred.\n","type":"string"},"party_role":{"items":{"type":"string"},"type":"array"},"region_code":{"description":"PACER Region Code","items":{"enum":["01","02","03","04","05","06","07","08","09","10","11","AK","AL","AR","AZ","CA","CAFC","CIT","CO","COF","COFC","CT","DC","DCCA","DE","FL","GA","GU","HI","IA","ID","IL","IN","JPML","KS","KY","LA","MA","MD","ME","MI","MN","MO","MS","MT","NC","ND","NE","NH","NJ","NM","NV","NY","OH","OK","OR","PA","PR","RI","SC","SD","TN","TX","UT","VA","VI","VT","WA","WI","WV","WY","alm","aln","als","are","arw","cac","cae","can","cas","flm","fln","fls","gam","gan","gas","ian","ias","ilc","iln","ils","inn","ins","kye","kyw","lae","lam","law","mie","miw","moe","mow","msn","mss","nce","ncm","ncw","nmi","nye","nyn","nys","nyw","ohn","ohs","oke","okn","okw","pae","pam","paw","tne","tnm","tnw","txe","txn","txs","txw","vae","vaw","wae","waw","wie","wiw","wvn","wvs"],"type":"string"},"type":"array"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_id":254658,"case_no":"3:07-bk-33055","case_title":"Megan Jean Archambault","chapter":7,"court_code":"orbke","date_closed":"11\/13\/2007","date_filed":"08\/01\/2007","disposition":"Standard Discharge 11\/13\/2007","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33055\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33055"}},"normalized_case_no":"3:07-bk-33055","timestamp":"2019-05-08T15:43:41.141006Z","title":"Megan Jean Archambault"},{"case_id":254659,"case_no":"3:07-bk-33056","case_title":"Raymond Anson Kitchell and Candice Suzanne Kitchell","chapter":7,"court_code":"orbke","date_closed":"01\/14\/2008","date_filed":"08\/01\/2007","disposition":"Standard Discharge 01\/14\/2008","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33056\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33056"}},"normalized_case_no":"3:07-bk-33056","timestamp":"2019-05-08T15:43:41.141006Z","title":"Raymond Anson Kitchell and Candice Suzanne Kitchell"}],"config":{"pages":{"1":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=1"},"2":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=2"},"next":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=2"}},"search_id":"string","sort":{"active":{"sort_field":"court_id","sort_reverse":0},"available":["cs_title","court_id","cs_chapter","cs_date_filed","cs_date_term"]}},"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}},"redacted_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf"}}},"parties":[{"case_id":"100037","case_no":"3:97-bk-37879","case_title":"Shirley W. West","chapter":"7","court_code":"orbke","date_closed":"01\/14\/1998","date_filed":"09\/25\/1997","disposition":"Standard Discharge 01\/14\/1998","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:97-bk-37879\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:97-bk-37879"}},"normalized_case_no":"3:97-bk-37879","party_name":"SMITH, DALE L","party_role":"aty","timestamp":"2019-05-02T19:09:17.858541Z","title":"Shirley W. West"}],"receipts":[{"client_code":"~","cost":0.1,"criteria":"filed 08\/01\/2007 to 08\/03\/2007 All Courts Page: 1","datetime":"05\/08\/2019 10:43:41 86246","description":"Bankruptcy Case Search","message":"","pages":1,"timestamp":"2019-05-08T15:43:41.141006Z","user_id":"irtraining"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"nature_of_suit_code":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"config":{"properties":{"pages":{"properties":{"next":{"type":"string"}},"type":"object"},"search_id":{"type":"string"},"sort":{"properties":{"active":{"properties":{"field":{"type":"string"},"is_reverse":{"type":"boolean"}},"type":"object"},"available":{"items":{"type":"string"},"type":"array"}},"type":"object"}},"type":"object"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"redacted_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"disposition":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"normalized_case_no":{"type":"string"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"message":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_id>254658<\/case_id>\n    <case_no>3:07-bk-33055<\/case_no>\n    <case_title>Megan Jean Archambault<\/case_title>\n    <chapter>7<\/chapter>\n    <court_code>orbke<\/court_code>\n    <date_closed>11\/13\/2007<\/date_closed>\n    <date_filed>08\/01\/2007<\/date_filed>\n    <disposition>Standard Discharge 11\/13\/2007<\/disposition>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33055\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33055<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>3:07-bk-33055<\/normalized_case_no>\n    <timestamp>2019-05-08T15:43:41.141Z<\/timestamp>\n    <title>Megan Jean Archambault<\/title>\n  <\/cases>\n  <cases>\n    <case_id>254659<\/case_id>\n    <case_no>3:07-bk-33056<\/case_no>\n    <case_title>Raymond Anson Kitchell and Candice Suzanne Kitchell<\/case_title>\n    <chapter>7<\/chapter>\n    <court_code>orbke<\/court_code>\n    <date_closed>01\/14\/2008<\/date_closed>\n    <date_filed>08\/01\/2007<\/date_filed>\n    <disposition>Standard Discharge 01\/14\/2008<\/disposition>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33056\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33056<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>3:07-bk-33056<\/normalized_case_no>\n    <timestamp>2019-05-08T15:43:41.141Z<\/timestamp>\n    <title>Raymond Anson Kitchell and Candice Suzanne Kitchell<\/title>\n  <\/cases>\n  <config>\n    <pages>\n      <_1>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=1<\/href>\n      <\/_1>\n      <_2>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=2<\/href>\n      <\/_2>\n      <next>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=2<\/href>\n      <\/next>\n    <\/pages>\n    <search_id>string<\/search_id>\n    <sort>\n      <active>\n        <sort_field>court_id<\/sort_field>\n        <sort_reverse>0<\/sort_reverse>\n      <\/active>\n      <available>cs_title<\/available>\n      <available>court_id<\/available>\n      <available>cs_chapter<\/available>\n      <available>cs_date_filed<\/available>\n      <available>cs_date_term<\/available>\n    <\/sort>\n  <\/config>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n    <redacted_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf<\/href>\n      <\/pdf>\n    <\/redacted_screenshot>\n  <\/links>\n  <parties>\n    <case_id>100037<\/case_id>\n    <case_no>3:97-bk-37879<\/case_no>\n    <case_title>Shirley W. West<\/case_title>\n    <chapter>7<\/chapter>\n    <court_code>orbke<\/court_code>\n    <date_closed>01\/14\/1998<\/date_closed>\n    <date_filed>09\/25\/1997<\/date_filed>\n    <disposition>Standard Discharge 01\/14\/1998<\/disposition>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:97-bk-37879\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:97-bk-37879<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>3:97-bk-37879<\/normalized_case_no>\n    <party_name>SMITH, DALE L<\/party_name>\n    <party_role>aty<\/party_role>\n    <timestamp>2019-05-02T19:09:17.858541Z<\/timestamp>\n    <title>Shirley W. West<\/title>\n  <\/parties>\n  <receipts>\n    <client_code\/>\n    <cost>0.1<\/cost>\n    <criteria>filed 08\/01\/2007 to 08\/03\/2007 All Courts Page: 1<\/criteria>\n    <datetime>05\/08\/2019 10:43:41 86246<\/datetime>\n    <description>Bankruptcy Case Search<\/description>\n    <message><\/message>\n    <pages>1<\/pages>\n    <timestamp>2019-05-08T15:43:41.141Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER NCL All Courts Case Search","tags":["ncl"],"x-courtapi-resource":"cases","x-courtapi-source":"pacer","x-courtdrive-async-desc":"PACER NCL All Courts Case Search","x-mojo-name":"pacer_ncl_all","x-mojo-to":"PACER::API#pacer_ncl_all"}},"\/pacer\/ncl\/all\/{search_id}":{"get":{"description":"PACER limits NCL results to about 50 cases per page. Use this endpoint to navigate search results by paging and sorting.","operationId":"getAllCourtsSearchResults","parameters":[{"in":"path","name":"search_id","required":true,"schema":{"type":"string"}},{"description":"The result page number to fetch","in":"query","name":"page_no","required":true,"schema":{"default":1,"minimum":1,"type":"integer"}},{"description":"How to sort NCL results. Valid sort fields depend on the search type. Party searches (name\/SSN criteria) support: court_id, case_no, party_name, last_name, first_name — these have no filing-date sort, so for most-recent-first use case_no with sort_reverse=true. Case searches (no party criteria) support: court_id, case_no, case_title, nos, chapter, date_filed, date_closed.","in":"query","name":"sort_field","schema":{"type":"string"}},{"description":"Reverse the sort direction (with case_no, true = newest cases first).","in":"query","name":"sort_reverse","schema":{"type":"boolean"}},{"in":"query","name":"resultset","schema":{"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_id":358029,"case_no":"3:95-ap-03511","case_title":"Smith's Home Furnishings, Inc. and Federated Publications Inc","chapter":"~","court_code":"orbke","date_closed":"03\/25\/1996","date_filed":"10\/04\/1995","disposition":"~","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03511\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03511"}},"normalized_case_no":"3:95-ap-03511","timestamp":"2019-05-08T16:03:45.481341Z","title":"Smith's Home Furnishings, Inc. and Federated Publications Inc"},{"case_id":358036,"case_no":"3:95-ap-03524","case_title":"Smith's Home Furnishings, Inc. and National Advertising Co","chapter":"~","court_code":"orbke","date_closed":"03\/25\/1996","date_filed":"10\/10\/1995","disposition":"~","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03524\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03524"}},"normalized_case_no":"3:95-ap-03524","timestamp":"2019-05-08T16:03:45.481341Z","title":"Smith's Home Furnishings, Inc. and National Advertising Co"}],"config":{"pages":{"1":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/all\/{search_id}?page_no=1"},"2":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/all\/{search_id}?page_no=2"},"previous":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/all\/{search_id}?page_no=1"}},"search_id":"string","sort":{"active":{"sort_field":"court_id","sort_reverse":0},"available":["cs_title","court_id","cs_chapter","cs_date_filed","cs_date_term"]}},"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}},"redacted_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf"}}},"parties":[],"receipts":[{"client_code":"~","cost":0,"criteria":"Case Title smith All Courts Page: 2","datetime":"05\/08\/2019 11:03:15 86248","description":"Bankruptcy Case Search","message":"You have previously been billed for this page.","pages":1,"timestamp":"2019-05-08T16:03:45.481341Z","user_id":"irtraining"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"nature_of_suit_code":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"config":{"properties":{"pages":{"properties":{"next":{"type":"string"}},"type":"object"},"search_id":{"type":"string"},"sort":{"properties":{"active":{"properties":{"field":{"type":"string"},"is_reverse":{"type":"boolean"}},"type":"object"},"available":{"items":{"type":"string"},"type":"array"}},"type":"object"}},"type":"object"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"redacted_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"disposition":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"normalized_case_no":{"type":"string"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"message":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_id>358029<\/case_id>\n    <case_no>3:95-ap-03511<\/case_no>\n    <case_title>Smith's Home Furnishings, Inc. and Federated Publications Inc<\/case_title>\n    <chapter\/>\n    <court_code>orbke<\/court_code>\n    <date_closed>03\/25\/1996<\/date_closed>\n    <date_filed>10\/04\/1995<\/date_filed>\n    <disposition\/>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03511\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03511<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>3:95-ap-03511<\/normalized_case_no>\n    <timestamp>2019-05-08T16:03:45.481Z<\/timestamp>\n    <title>Smith's Home Furnishings, Inc. and Federated Publications Inc<\/title>\n  <\/cases>\n  <cases>\n    <case_id>358036<\/case_id>\n    <case_no>3:95-ap-03524<\/case_no>\n    <case_title>Smith's Home Furnishings, Inc. and National Advertising Co<\/case_title>\n    <chapter\/>\n    <court_code>orbke<\/court_code>\n    <date_closed>03\/25\/1996<\/date_closed>\n    <date_filed>10\/10\/1995<\/date_filed>\n    <disposition\/>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03524\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03524<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>3:95-ap-03524<\/normalized_case_no>\n    <timestamp>2019-05-08T16:03:45.481Z<\/timestamp>\n    <title>Smith's Home Furnishings, Inc. and National Advertising Co<\/title>\n  <\/cases>\n  <config>\n    <pages>\n      <_1>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/all\/{search_id}?page_no=1<\/href>\n      <\/_1>\n      <_2>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/all\/{search_id}?page_no=2<\/href>\n      <\/_2>\n      <previous>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/all\/{search_id}?page_no=1<\/href>\n      <\/previous>\n    <\/pages>\n    <search_id>string<\/search_id>\n    <sort>\n      <active>\n        <sort_field>court_id<\/sort_field>\n        <sort_reverse>0<\/sort_reverse>\n      <\/active>\n      <available>cs_title<\/available>\n      <available>court_id<\/available>\n      <available>cs_chapter<\/available>\n      <available>cs_date_filed<\/available>\n      <available>cs_date_term<\/available>\n    <\/sort>\n  <\/config>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n    <redacted_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf<\/href>\n      <\/pdf>\n    <\/redacted_screenshot>\n  <\/links>\n  <receipts>\n    <client_code\/>\n    <cost>0<\/cost>\n    <criteria>Case Title smith All Courts Page: 2<\/criteria>\n    <datetime>05\/08\/2019 11:03:15 86248<\/datetime>\n    <description>Bankruptcy Case Search<\/description>\n    <message>You have previously been billed for this page.<\/message>\n    <pages>1<\/pages>\n    <timestamp>2019-05-08T16:03:45.481Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER NCL All Courts Case Search Result Navigation","tags":["ncl"],"x-courtapi-resource":"cases","x-courtapi-source":"pacer","x-courtdrive-async-desc":"PACER NCL All Courts Case Search Result (page {{page_no}})","x-mojo-name":"pacer_ncl_all_view","x-mojo-to":"PACER::API#pacer_ncl_view"}},"\/pacer\/ncl\/appellate":{"post":{"description":"PACER NCL Appellate Case Search","operationId":"searchAppellateCases","parameters":[{"description":"How to sort NCL results. Valid sort fields depend on the search type. Party searches (name\/SSN criteria) support: court_id, case_no, party_name, last_name, first_name — these have no filing-date sort, so for most-recent-first use case_no with sort_reverse=true. Case searches (no party criteria) support: court_id, case_no, case_title, nos, chapter, date_filed, date_closed.","in":"query","name":"sort_field","required":false,"schema":{"type":"string"}},{"description":"Reverse the sort direction (with case_no, true = newest cases first).","in":"query","name":"sort_reverse","required":false,"schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_no":{"description":"Case Number (o:yy-tp-nnnnn)","type":"string"},"case_title":{"type":"string"},"case_type":{"items":{"type":"string"},"type":"array"},"closed_from":{"description":"Closed From Date (MM\/DD\/YYYY)","type":"string"},"closed_to":{"description":"Closed To Date (MM\/DD\/YYYY)","type":"string"},"court_code":{"description":"Court Code","type":"string"},"filed_from":{"description":"Filed From Date (MM\/DD\/YYYY)","type":"string"},"filed_to":{"description":"Filed To Date (MM\/DD\/YYYY)","type":"string"},"first_name":{"description":"Party first name.  Do not use if using `party_name` field.","type":"string"},"last_name":{"description":"Party last name.  Do not use if using `party_name` field.","type":"string"},"middle_name":{"description":"Party middle name.  Do not use if using `party_name` field.","type":"string"},"nos":{"items":{"enum":[1110,1120,1130,1140,1150,1151,1152,1153,1190,1195,1196,1210,1220,1230,1240,1245,1290,1340,1350,1360,1370,1371,1380,1385,1410,1422,1423,1430,1440,1441,1442,1443,1444,1445,1446,1450,1470,1480,1490,1610,1620,1625,1630,1640,1650,1660,1690,1710,1720,1730,1740,1790,1791,1830,1840,1850,1862,1863,1870,1871,1890,1891,1892,1893,1894,1950,1990,1999,2110,2120,2130,2140,2150,2151,2152,2153,2190,2195,2196,2210,2220,2230,2240,2245,2290,2310,2315,2320,2330,2340,2345,2350,2355,2360,2362,2365,2368,2370,2371,2380,2385,2410,2422,2423,2430,2440,2441,2442,2443,2444,2445,2446,2450,2460,2462,2463,2465,2480,2490,2510,2530,2535,2540,2550,2555,2610,2620,2625,2630,2640,2650,2660,2690,2710,2720,2730,2740,2790,2791,2810,2830,2850,2860,2861,2862,2863,2864,2865,2870,2871,2875,2890,2891,2892,2893,2894,2895,2900,2950,2990,2999,3110,3120,3130,3140,3150,3151,3160,3190,3196,3210,3220,3230,3240,3245,3290,3310,3315,3320,3330,3340,3345,3350,3355,3360,3365,3368,3370,3371,3380,3385,3400,3410,3422,3423,3430,3440,3441,3442,3443,3444,3445,3446,3450,3460,3470,3480,3490,3530,3535,3540,3550,3555,3710,3720,3730,3740,3790,3791,3810,3820,3830,3840,3850,3890,3891,3892,3893,3894,3895,3950,3990,3999,4110,4120,4140,4150,4160,4190,4195,4196,4210,4220,4230,4240,4245,4290,4310,4315,4320,4340,4345,4350,4355,4360,4362,4365,4368,4370,4371,4380,4385,4440,4441,4442,4443,4444,4445,4446,4470,4480,4490,4555,4950,4990,4999,5535,5990,5992,8350,"ZZZ"],"type":"string"},"type":"array"},"pacer_client":{"description":"PACER Client Code","type":"string"},"party_exact":{"description":"Exact Party Name Matches Only","type":"boolean"},"party_name":{"deprecated":true,"description":"Party Name (`last, first`, or `last, first middle`). Do not use if using `last_name`, `first_name`, and `middle_name` fields.  The individual fields are preferred.\n","type":"string"},"region_code":{"description":"PACER Region Code","items":{"enum":["01","02","03","04","05","06","07","08","09","10","11","AK","AL","AR","AZ","CA","CAFC","CIT","CO","COF","COFC","CT","DC","DCCA","DE","FL","GA","GU","HI","IA","ID","IL","IN","JPML","KS","KY","LA","MA","MD","ME","MI","MN","MO","MS","MT","NC","ND","NE","NH","NJ","NM","NV","NY","OH","OK","OR","PA","PR","RI","SC","SD","TN","TX","UT","VA","VI","VT","WA","WI","WV","WY","alm","aln","als","are","arw","cac","cae","can","cas","flm","fln","fls","gam","gan","gas","ian","ias","ilc","iln","ils","inn","ins","kye","kyw","lae","lam","law","mie","miw","moe","mow","msn","mss","nce","ncm","ncw","nmi","nye","nyn","nys","nyw","ohn","ohs","oke","okn","okw","pae","pam","paw","tne","tnm","tnw","txe","txn","txs","txw","vae","vaw","wae","waw","wie","wiw","wvn","wvs"],"type":"string"},"type":"array"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_id":"0271551","case_no":"02-71551","case_title":"Sapp, et al v. U.S. Immigration","court_code":"09cae","date_closed":"06\/05\/2003","date_filed":"06\/03\/2002","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71551\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71551"}},"nature_of_suit_code":1,"normalized_case_no":"02-71551","timestamp":"2019-05-08T22:03:00.559735Z","title":"Sapp, et al v. U.S. Immigration"},{"case_id":"0271552","case_no":"02-71552","case_title":"Hernandez Pureco, et al v. INS","court_code":"09cae","date_closed":"09\/13\/2002","date_filed":"06\/03\/2002","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71552\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71552"}},"nature_of_suit_code":1,"normalized_case_no":"02-71552","timestamp":"2019-05-08T22:03:00.559735Z","title":"Hernandez Pureco, et al v. INS"}],"config":{"pages":{"1":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=1"},"2":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=2"},"next":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=2"}},"search_id":"string","sort":{"active":{"sort_field":"court_id","sort_reverse":0},"available":["cs_title","court_id","nos","cs_date_filed","cs_date_term"]}},"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}}},"parties":[],"receipts":[{"client_code":"~","cost":0.1,"criteria":"filed 06\/01\/2002 to 10\/15\/2002 All Courts Page: 1","datetime":"05\/08\/2019 17:03:00 86258","description":"Appellate Case Search","message":"","pages":1,"timestamp":"2019-05-08T22:03:00.559735Z","user_id":"irtraining"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"nature_of_suit_code":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"config":{"properties":{"pages":{"properties":{"next":{"type":"string"}},"type":"object"},"search_id":{"type":"string"},"sort":{"properties":{"active":{"properties":{"field":{"type":"string"},"is_reverse":{"type":"boolean"}},"type":"object"},"available":{"items":{"type":"string"},"type":"array"}},"type":"object"}},"type":"object"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"normalized_case_no":{"type":"string"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"message":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_id>95081<\/case_id>\n    <case_no>02-71551<\/case_no>\n    <case_title>Sapp, et al v. U.S. Immigration<\/case_title>\n    <court_code>09cae<\/court_code>\n    <date_closed>06\/05\/2003<\/date_closed>\n    <date_filed>06\/03\/2002<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71551\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71551<\/href>\n      <\/self>\n    <\/links>\n    <nature_of_suit_code>1<\/nature_of_suit_code>\n    <normalized_case_no>02-71551<\/normalized_case_no>\n    <timestamp>2019-05-08T22:03:00.559Z<\/timestamp>\n    <title>Sapp, et al v. U.S. Immigration<\/title>\n  <\/cases>\n  <cases>\n    <case_id>95082<\/case_id>\n    <case_no>02-71552<\/case_no>\n    <case_title>Hernandez Pureco, et al v. INS<\/case_title>\n    <court_code>09cae<\/court_code>\n    <date_closed>09\/13\/2002<\/date_closed>\n    <date_filed>06\/03\/2002<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71552\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71552<\/href>\n      <\/self>\n    <\/links>\n    <nature_of_suit_code>1<\/nature_of_suit_code>\n    <normalized_case_no>02-71552<\/normalized_case_no>\n    <timestamp>2019-05-08T22:03:00.559Z<\/timestamp>\n    <title>Hernandez Pureco, et al v. INS<\/title>\n  <\/cases>\n  <config>\n    <pages>\n      <_1>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=1<\/href>\n      <\/_1>\n      <_2>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=2<\/href>\n      <\/_2>\n      <next>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=2<\/href>\n      <\/next>\n    <\/pages>\n    <search_id>string<\/search_id>\n    <sort>\n      <active>\n        <sort_field>court_id<\/sort_field>\n        <sort_reverse>0<\/sort_reverse>\n      <\/active>\n      <available>cs_title<\/available>\n      <available>court_id<\/available>\n      <available>nos<\/available>\n      <available>cs_date_filed<\/available>\n      <available>cs_date_term<\/available>\n    <\/sort>\n  <\/config>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n  <\/links>\n  <receipts>\n    <client_code\/>\n    <cost>0.1<\/cost>\n    <criteria>filed 06\/01\/2002 to 10\/15\/2002 All Courts Page: 1<\/criteria>\n    <datetime>05\/08\/2019 17:03:00 86258<\/datetime>\n    <description>Appellate Case Search<\/description>\n    <message><\/message>\n    <pages>1<\/pages>\n    <timestamp>2019-05-08T22:03:00.559Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER NCL Appellate Case Search","tags":["ncl"],"x-courtapi-resource":"cases","x-courtapi-source":"pacer","x-courtdrive-async-desc":"PACER NCL Appellate Case Search","x-mojo-name":"pacer_ncl_appellate","x-mojo-to":"PACER::API#pacer_ncl_appellate"}},"\/pacer\/ncl\/appellate\/{search_id}":{"get":{"description":"PACER limits NCL results to about 50 cases per page. Use this endpoint to navigate search results by paging and sorting.","operationId":"getAppellateSearchResults","parameters":[{"in":"path","name":"search_id","required":true,"schema":{"type":"string"}},{"description":"The result page number to fetch","in":"query","name":"page_no","required":true,"schema":{"default":1,"minimum":1,"type":"integer"}},{"description":"How to sort NCL results. Valid sort fields depend on the search type. Party searches (name\/SSN criteria) support: court_id, case_no, party_name, last_name, first_name — these have no filing-date sort, so for most-recent-first use case_no with sort_reverse=true. Case searches (no party criteria) support: court_id, case_no, case_title, nos, chapter, date_filed, date_closed.","in":"query","name":"sort_field","schema":{"type":"string"}},{"description":"Reverse the sort direction (with case_no, true = newest cases first).","in":"query","name":"sort_reverse","schema":{"type":"boolean"}},{"in":"query","name":"resultset","schema":{"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_id":"0271574","case_no":"02-71574","case_title":"Crosby, et al v. USDC-MOB","court_code":"09cae","date_closed":"07\/29\/2002","date_filed":"06\/04\/2002","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71574\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71574"}},"nature_of_suit_code":1,"normalized_case_no":"02-71574","timestamp":"2019-05-08T22:10:51.082537Z","title":"Crosby, et al v. USDC-MOB"},{"case_id":"0271575","case_no":"02-71575","case_title":"Epperson, et al v. USDC-NVL","court_code":"09cae","date_closed":"07\/29\/2002","date_filed":"06\/04\/2002","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71575\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71575"}},"nature_of_suit_code":1,"normalized_case_no":"02-71575","timestamp":"2019-05-08T22:10:51.082537Z","title":"Epperson, et al v. USDC-NVL"}],"config":{"pages":{"1":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=1"},"2":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=2"},"3":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=3"},"next":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=3"},"previous":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=1"}},"search_id":"string","sort":{"active":{"sort_field":"court_id","sort_reverse":0},"available":["cs_title","court_id","nos","cs_date_filed","cs_date_term"]}},"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}}},"parties":[],"receipts":[{"client_code":"~","cost":0.1,"criteria":"filed 06\/01\/2002 to 10\/15\/2002 All Courts Page: 2","datetime":"05\/08\/2019 17:10:51 86259","description":"Appellate Case Search","message":"","pages":1,"timestamp":"2019-05-08T22:10:51.082537Z","user_id":"irtraining"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"nature_of_suit_code":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"config":{"properties":{"pages":{"properties":{"next":{"type":"string"}},"type":"object"},"search_id":{"type":"string"},"sort":{"properties":{"active":{"properties":{"field":{"type":"string"},"is_reverse":{"type":"boolean"}},"type":"object"},"available":{"items":{"type":"string"},"type":"array"}},"type":"object"}},"type":"object"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"normalized_case_no":{"type":"string"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"message":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_id>95100<\/case_id>\n    <case_no>02-71574<\/case_no>\n    <case_title>Crosby, et al v. USDC-MOB<\/case_title>\n    <court_code>09cae<\/court_code>\n    <date_closed>07\/29\/2002<\/date_closed>\n    <date_filed>06\/04\/2002<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71574\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71574<\/href>\n      <\/self>\n    <\/links>\n    <nature_of_suit_code>1<\/nature_of_suit_code>\n    <normalized_case_no>02-71574<\/normalized_case_no>\n    <timestamp>2019-05-08T22:10:51.082Z<\/timestamp>\n    <title>Crosby, et al v. USDC-MOB<\/title>\n  <\/cases>\n  <cases>\n    <case_id>95101<\/case_id>\n    <case_no>02-71575<\/case_no>\n    <case_title>Epperson, et al v. USDC-NVL<\/case_title>\n    <court_code>09cae<\/court_code>\n    <date_closed>07\/29\/2002<\/date_closed>\n    <date_filed>06\/04\/2002<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71575\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/09cae\/02-71575<\/href>\n      <\/self>\n    <\/links>\n    <nature_of_suit_code>1<\/nature_of_suit_code>\n    <normalized_case_no>02-71575<\/normalized_case_no>\n    <timestamp>2019-05-08T22:10:51.082Z<\/timestamp>\n    <title>Epperson, et al v. USDC-NVL<\/title>\n  <\/cases>\n  <config>\n    <pages>\n      <_1>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=1<\/href>\n      <\/_1>\n      <_2>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=2<\/href>\n      <\/_2>\n      <_3>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=3<\/href>\n      <\/_3>\n      <next>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=3<\/href>\n      <\/next>\n      <previous>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/appellate\/{search_id}?page_no=1<\/href>\n      <\/previous>\n    <\/pages>\n    <search_id>string<\/search_id>\n    <sort>\n      <active>\n        <sort_field>court_id<\/sort_field>\n        <sort_reverse>0<\/sort_reverse>\n      <\/active>\n      <available>cs_title<\/available>\n      <available>court_id<\/available>\n      <available>nos<\/available>\n      <available>cs_date_filed<\/available>\n      <available>cs_date_term<\/available>\n    <\/sort>\n  <\/config>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n  <\/links>\n  <receipts>\n    <client_code\/>\n    <cost>0.1<\/cost>\n    <criteria>filed 06\/01\/2002 to 10\/15\/2002 All Courts Page: 2<\/criteria>\n    <datetime>05\/08\/2019 17:10:51 86259<\/datetime>\n    <description>Appellate Case Search<\/description>\n    <message><\/message>\n    <pages>1<\/pages>\n    <timestamp>2019-05-08T22:10:51.082Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER NCL Appellate Case Search Result Navigation","tags":["ncl"],"x-courtapi-resource":"cases","x-courtapi-source":"pacer","x-courtdrive-async-desc":"PACER NCL Appellate Case Search Result (page {{page_no}})","x-mojo-name":"pacer_ncl_appellate_view","x-mojo-to":"PACER::API#pacer_ncl_view"}},"\/pacer\/ncl\/bankruptcy":{"post":{"description":"PACER NCL Bankruptcy Case Search","operationId":"locateBankruptcyCases","parameters":[{"description":"How to sort NCL results. Valid sort fields depend on the search type. Party searches (name\/SSN criteria) support: court_id, case_no, party_name, last_name, first_name — these have no filing-date sort, so for most-recent-first use case_no with sort_reverse=true. Case searches (no party criteria) support: court_id, case_no, case_title, nos, chapter, date_filed, date_closed.","in":"query","name":"sort_field","required":false,"schema":{"type":"string"}},{"description":"Reverse the sort direction (with case_no, true = newest cases first).","in":"query","name":"sort_reverse","required":false,"schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_no":{"description":"Case Number (o:yy-tp-nnnnn)","type":"string"},"case_title":{"type":"string"},"case_type":{"items":{"type":"string"},"type":"array"},"chapter":{"items":{"type":"string"},"type":"array"},"closed_from":{"description":"Closed From Date (MM\/DD\/YYYY)","type":"string"},"closed_to":{"description":"Closed To Date (MM\/DD\/YYYY)","type":"string"},"court_code":{"description":"Court Code","type":"string"},"discharged_from":{"description":"Discharged From Date (MM\/DD\/YYYY)","type":"string"},"discharged_to":{"description":"Discharged To Date (MM\/DD\/YYYY)","type":"string"},"dismissed_from":{"description":"Dismissed From Date (MM\/DD\/YYYY)","type":"string"},"dismissed_to":{"description":"Dismissed To Date (MM\/DD\/YYYY)","type":"string"},"filed_from":{"description":"Filed From Date (MM\/DD\/YYYY)","type":"string"},"filed_to":{"description":"Filed To Date (MM\/DD\/YYYY)","type":"string"},"first_name":{"description":"Party first name.  Do not use if using `party_name` field.","type":"string"},"last_name":{"description":"Party last name.  Do not use if using `party_name` field.","type":"string"},"middle_name":{"description":"Party middle name.  Do not use if using `party_name` field.","type":"string"},"pacer_client":{"description":"PACER Client Code","type":"string"},"party_exact":{"description":"Exact Party Name Matches Only","type":"boolean"},"party_name":{"deprecated":true,"description":"Party Name (`last, first`, or `last, first middle`). Do not use if using `last_name`, `first_name`, and `middle_name` fields.  The individual fields are preferred.\n","type":"string"},"party_role":{"items":{"type":"string"},"type":"array"},"region_code":{"description":"PACER Region Code","items":{"enum":["01","02","03","04","05","06","07","08","09","10","11","AK","AL","AR","AZ","CA","CAFC","CIT","CO","COF","COFC","CT","DC","DCCA","DE","FL","GA","GU","HI","IA","ID","IL","IN","JPML","KS","KY","LA","MA","MD","ME","MI","MN","MO","MS","MT","NC","ND","NE","NH","NJ","NM","NV","NY","OH","OK","OR","PA","PR","RI","SC","SD","TN","TX","UT","VA","VI","VT","WA","WI","WV","WY","alm","aln","als","are","arw","cac","cae","can","cas","flm","fln","fls","gam","gan","gas","ian","ias","ilc","iln","ils","inn","ins","kye","kyw","lae","lam","law","mie","miw","moe","mow","msn","mss","nce","ncm","ncw","nmi","nye","nyn","nys","nyw","ohn","ohs","oke","okn","okw","pae","pam","paw","tne","tnm","tnw","txe","txn","txs","txw","vae","vaw","wae","waw","wie","wiw","wvn","wvs"],"type":"string"},"type":"array"},"ssn4":{"description":"Last 4 Digits of SSN. The last_name must also be provided when this field is used","type":"string"},"ssntin":{"description":"SSN or TIN. The last_name must also be provided when this field is used","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_id":254658,"case_no":"3:07-bk-33055","case_title":"Megan Jean Archambault","chapter":7,"court_code":"orbke","date_closed":"11\/13\/2007","date_filed":"08\/01\/2007","disposition":"Standard Discharge 11\/13\/2007","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33055\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33055"}},"normalized_case_no":"3:07-bk-33055","timestamp":"2019-05-08T15:43:41.141006Z","title":"Megan Jean Archambault"},{"case_id":254659,"case_no":"3:07-bk-33056","case_title":"Raymond Anson Kitchell and Candice Suzanne Kitchell","chapter":7,"court_code":"orbke","date_closed":"01\/14\/2008","date_filed":"08\/01\/2007","disposition":"Standard Discharge 01\/14\/2008","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33056\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33056"}},"normalized_case_no":"3:07-bk-33056","timestamp":"2019-05-08T15:43:41.141006Z","title":"Raymond Anson Kitchell and Candice Suzanne Kitchell"}],"config":{"pages":{"1":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=1"},"2":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=2"},"next":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=2"}},"search_id":"string","sort":{"active":{"sort_field":"court_id","sort_reverse":0},"available":["cs_title","court_id","cs_chapter","cs_date_filed","cs_date_term"]}},"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}},"redacted_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf"}}},"parties":[{"case_id":"100037","case_no":"3:97-bk-37879","case_title":"Shirley W. West","chapter":"7","court_code":"orbke","date_closed":"01\/14\/1998","date_filed":"09\/25\/1997","disposition":"Standard Discharge 01\/14\/1998","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:97-bk-37879\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:97-bk-37879"}},"normalized_case_no":"3:97-bk-37879","party_name":"SMITH, DALE L","party_role":"aty","timestamp":"2019-05-02T19:09:17.858541Z","title":"Shirley W. West"}],"receipts":[{"client_code":"~","cost":0.1,"criteria":"filed 08\/01\/2007 to 08\/03\/2007 All Courts Page: 1","datetime":"05\/08\/2019 10:43:41 86246","description":"Bankruptcy Case Search","message":"","pages":1,"timestamp":"2019-05-08T15:43:41.141006Z","user_id":"irtraining"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"nature_of_suit_code":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"config":{"properties":{"pages":{"properties":{"next":{"type":"string"}},"type":"object"},"search_id":{"type":"string"},"sort":{"properties":{"active":{"properties":{"field":{"type":"string"},"is_reverse":{"type":"boolean"}},"type":"object"},"available":{"items":{"type":"string"},"type":"array"}},"type":"object"}},"type":"object"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"redacted_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"disposition":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"normalized_case_no":{"type":"string"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"message":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_id>254658<\/case_id>\n    <case_no>3:07-bk-33055<\/case_no>\n    <case_title>Megan Jean Archambault<\/case_title>\n    <chapter>7<\/chapter>\n    <court_code>orbke<\/court_code>\n    <date_closed>11\/13\/2007<\/date_closed>\n    <date_filed>08\/01\/2007<\/date_filed>\n    <disposition>Standard Discharge 11\/13\/2007<\/disposition>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33055\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33055<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>3:07-bk-33055<\/normalized_case_no>\n    <timestamp>2019-05-08T15:43:41.141Z<\/timestamp>\n    <title>Megan Jean Archambault<\/title>\n  <\/cases>\n  <cases>\n    <case_id>254659<\/case_id>\n    <case_no>3:07-bk-33056<\/case_no>\n    <case_title>Raymond Anson Kitchell and Candice Suzanne Kitchell<\/case_title>\n    <chapter>7<\/chapter>\n    <court_code>orbke<\/court_code>\n    <date_closed>01\/14\/2008<\/date_closed>\n    <date_filed>08\/01\/2007<\/date_filed>\n    <disposition>Standard Discharge 01\/14\/2008<\/disposition>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33056\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:07-bk-33056<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>3:07-bk-33056<\/normalized_case_no>\n    <timestamp>2019-05-08T15:43:41.141Z<\/timestamp>\n    <title>Raymond Anson Kitchell and Candice Suzanne Kitchell<\/title>\n  <\/cases>\n  <config>\n    <pages>\n      <_1>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=1<\/href>\n      <\/_1>\n      <_2>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=2<\/href>\n      <\/_2>\n      <next>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=2<\/href>\n      <\/next>\n    <\/pages>\n    <search_id>string<\/search_id>\n    <sort>\n      <active>\n        <sort_field>court_id<\/sort_field>\n        <sort_reverse>0<\/sort_reverse>\n      <\/active>\n      <available>cs_title<\/available>\n      <available>court_id<\/available>\n      <available>cs_chapter<\/available>\n      <available>cs_date_filed<\/available>\n      <available>cs_date_term<\/available>\n    <\/sort>\n  <\/config>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n    <redacted_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf<\/href>\n      <\/pdf>\n    <\/redacted_screenshot>\n  <\/links>\n  <parties>\n    <case_id>100037<\/case_id>\n    <case_no>3:97-bk-37879<\/case_no>\n    <case_title>Shirley W. West<\/case_title>\n    <chapter>7<\/chapter>\n    <court_code>orbke<\/court_code>\n    <date_closed>01\/14\/1998<\/date_closed>\n    <date_filed>09\/25\/1997<\/date_filed>\n    <disposition>Standard Discharge 01\/14\/1998<\/disposition>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:97-bk-37879\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:97-bk-37879<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>3:97-bk-37879<\/normalized_case_no>\n    <party_name>SMITH, DALE L<\/party_name>\n    <party_role>aty<\/party_role>\n    <timestamp>2019-05-02T19:09:17.858541Z<\/timestamp>\n    <title>Shirley W. West<\/title>\n  <\/parties>\n  <receipts>\n    <client_code\/>\n    <cost>0.1<\/cost>\n    <criteria>filed 08\/01\/2007 to 08\/03\/2007 All Courts Page: 1<\/criteria>\n    <datetime>05\/08\/2019 10:43:41 86246<\/datetime>\n    <description>Bankruptcy Case Search<\/description>\n    <message><\/message>\n    <pages>1<\/pages>\n    <timestamp>2019-05-08T15:43:41.141Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER NCL Bankruptcy Case Search","tags":["ncl"],"x-courtapi-resource":"cases","x-courtapi-source":"pacer","x-courtdrive-async-desc":"PACER NCL Bankruptcy Case Search","x-mojo-name":"pacer_ncl_bankruptcy","x-mojo-to":"PACER::API#pacer_ncl_bankruptcy"}},"\/pacer\/ncl\/bankruptcy\/{search_id}":{"get":{"description":"PACER limits NCL results to about 50 cases per page. Use this endpoint to navigate search results by paging and sorting.","operationId":"getBankruptcySearchResults","parameters":[{"in":"path","name":"search_id","required":true,"schema":{"type":"string"}},{"description":"The result page number to fetch","in":"query","name":"page_no","required":true,"schema":{"default":1,"minimum":1,"type":"integer"}},{"description":"How to sort NCL results. Valid sort fields depend on the search type. Party searches (name\/SSN criteria) support: court_id, case_no, party_name, last_name, first_name — these have no filing-date sort, so for most-recent-first use case_no with sort_reverse=true. Case searches (no party criteria) support: court_id, case_no, case_title, nos, chapter, date_filed, date_closed.","in":"query","name":"sort_field","schema":{"type":"string"}},{"description":"Reverse the sort direction (with case_no, true = newest cases first).","in":"query","name":"sort_reverse","schema":{"type":"boolean"}},{"in":"query","name":"resultset","schema":{"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_id":358029,"case_no":"3:95-ap-03511","case_title":"Smith's Home Furnishings, Inc. and Federated Publications Inc","chapter":"~","court_code":"orbke","date_closed":"03\/25\/1996","date_filed":"10\/04\/1995","disposition":"~","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03511\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03511"}},"normalized_case_no":"3:95-ap-03511","timestamp":"2019-05-08T16:03:45.481341Z","title":"Smith's Home Furnishings, Inc. and Federated Publications Inc"},{"case_id":358036,"case_no":"3:95-ap-03524","case_title":"Smith's Home Furnishings, Inc. and National Advertising Co","chapter":"~","court_code":"orbke","date_closed":"03\/25\/1996","date_filed":"10\/10\/1995","disposition":"~","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03524\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03524"}},"normalized_case_no":"3:95-ap-03524","timestamp":"2019-05-08T16:03:45.481341Z","title":"Smith's Home Furnishings, Inc. and National Advertising Co"}],"config":{"pages":{"1":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=1"},"2":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=2"},"previous":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=1"}},"search_id":"string","sort":{"active":{"sort_field":"court_id","sort_reverse":0},"available":["cs_title","court_id","cs_chapter","cs_date_filed","cs_date_term"]}},"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}},"redacted_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf"}}},"parties":[],"receipts":[{"client_code":"~","cost":0,"criteria":"Case Title smith All Courts Page: 2","datetime":"05\/08\/2019 11:03:15 86248","description":"Bankruptcy Case Search","message":"You have previously been billed for this page.","pages":1,"timestamp":"2019-05-08T16:03:45.481341Z","user_id":"irtraining"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"nature_of_suit_code":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"config":{"properties":{"pages":{"properties":{"next":{"type":"string"}},"type":"object"},"search_id":{"type":"string"},"sort":{"properties":{"active":{"properties":{"field":{"type":"string"},"is_reverse":{"type":"boolean"}},"type":"object"},"available":{"items":{"type":"string"},"type":"array"}},"type":"object"}},"type":"object"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"redacted_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"chapter":{"type":"number"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"disposition":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"normalized_case_no":{"type":"string"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"message":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_id>358029<\/case_id>\n    <case_no>3:95-ap-03511<\/case_no>\n    <case_title>Smith's Home Furnishings, Inc. and Federated Publications Inc<\/case_title>\n    <chapter\/>\n    <court_code>orbke<\/court_code>\n    <date_closed>03\/25\/1996<\/date_closed>\n    <date_filed>10\/04\/1995<\/date_filed>\n    <disposition\/>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03511\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03511<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>3:95-ap-03511<\/normalized_case_no>\n    <timestamp>2019-05-08T16:03:45.481Z<\/timestamp>\n    <title>Smith's Home Furnishings, Inc. and Federated Publications Inc<\/title>\n  <\/cases>\n  <cases>\n    <case_id>358036<\/case_id>\n    <case_no>3:95-ap-03524<\/case_no>\n    <case_title>Smith's Home Furnishings, Inc. and National Advertising Co<\/case_title>\n    <chapter\/>\n    <court_code>orbke<\/court_code>\n    <date_closed>03\/25\/1996<\/date_closed>\n    <date_filed>10\/10\/1995<\/date_filed>\n    <disposition\/>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03524\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/orbke\/3:95-ap-03524<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>3:95-ap-03524<\/normalized_case_no>\n    <timestamp>2019-05-08T16:03:45.481Z<\/timestamp>\n    <title>Smith's Home Furnishings, Inc. and National Advertising Co<\/title>\n  <\/cases>\n  <config>\n    <pages>\n      <_1>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=1<\/href>\n      <\/_1>\n      <_2>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=2<\/href>\n      <\/_2>\n      <previous>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/bankruptcy\/{search_id}?page_no=1<\/href>\n      <\/previous>\n    <\/pages>\n    <search_id>string<\/search_id>\n    <sort>\n      <active>\n        <sort_field>court_id<\/sort_field>\n        <sort_reverse>0<\/sort_reverse>\n      <\/active>\n      <available>cs_title<\/available>\n      <available>court_id<\/available>\n      <available>cs_chapter<\/available>\n      <available>cs_date_filed<\/available>\n      <available>cs_date_term<\/available>\n    <\/sort>\n  <\/config>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n    <redacted_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf<\/href>\n      <\/pdf>\n    <\/redacted_screenshot>\n  <\/links>\n  <receipts>\n    <client_code\/>\n    <cost>0<\/cost>\n    <criteria>Case Title smith All Courts Page: 2<\/criteria>\n    <datetime>05\/08\/2019 11:03:15 86248<\/datetime>\n    <description>Bankruptcy Case Search<\/description>\n    <message>You have previously been billed for this page.<\/message>\n    <pages>1<\/pages>\n    <timestamp>2019-05-08T16:03:45.481Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER NCL Bankruptcy Case Search Result Navigation","tags":["ncl"],"x-courtapi-resource":"cases","x-courtapi-source":"pacer","x-courtdrive-async-desc":"PACER NCL Bankruptcy Case Search Result (page {{page_no}})","x-mojo-name":"pacer_ncl_bankruptcy_view","x-mojo-to":"PACER::API#pacer_ncl_view"}},"\/pacer\/ncl\/civil":{"post":{"description":"PACER NCL Civil Case Search","operationId":"searchCivilCases","parameters":[{"description":"How to sort NCL results. Valid sort fields depend on the search type. Party searches (name\/SSN criteria) support: court_id, case_no, party_name, last_name, first_name — these have no filing-date sort, so for most-recent-first use case_no with sort_reverse=true. Case searches (no party criteria) support: court_id, case_no, case_title, nos, chapter, date_filed, date_closed.","in":"query","name":"sort_field","required":false,"schema":{"type":"string"}},{"description":"Reverse the sort direction (with case_no, true = newest cases first).","in":"query","name":"sort_reverse","required":false,"schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_no":{"description":"Case Number (o:yy-tp-nnnnn)","type":"string"},"case_title":{"type":"string"},"case_type":{"items":{"type":"string"},"type":"array"},"closed_from":{"description":"Closed From Date (MM\/DD\/YYYY)","type":"string"},"closed_to":{"description":"Closed To Date (MM\/DD\/YYYY)","type":"string"},"court_code":{"description":"Court Code","type":"string"},"filed_from":{"description":"Filed From Date (MM\/DD\/YYYY)","type":"string"},"filed_to":{"description":"Filed To Date (MM\/DD\/YYYY)","type":"string"},"first_name":{"description":"Party first name.  Do not use if using `party_name` field.","type":"string"},"last_name":{"description":"Party last name.  Do not use if using `party_name` field.","type":"string"},"middle_name":{"description":"Party middle name.  Do not use if using `party_name` field.","type":"string"},"nos":{"items":{"enum":[110,120,130,140,150,151,152,153,160,190,195,196,210,220,230,240,245,290,310,315,320,330,340,345,350,355,360,362,365,367,368,370,371,375,376,380,385,400,410,422,423,430,440,441,442,443,444,445,446,448,450,460,462,463,465,470,480,485,490,510,530,535,540,550,555,560,610,620,625,630,640,650,660,690,710,720,730,740,751,790,791,810,820,830,835,840,850,861,862,863,864,865,870,871,875,880,890,891,892,893,894,895,896,899,900,950,"ZZZ"],"type":"string"},"type":"array"},"pacer_client":{"description":"PACER Client Code","type":"string"},"party_exact":{"description":"Exact Party Name Matches Only","type":"boolean"},"party_name":{"deprecated":true,"description":"Party Name (`last, first`, or `last, first middle`). Do not use if using `last_name`, `first_name`, and `middle_name` fields.  The individual fields are preferred.\n","type":"string"},"party_role":{"items":{"type":"string"},"type":"array"},"region_code":{"description":"PACER Region Code","items":{"enum":["01","02","03","04","05","06","07","08","09","10","11","AK","AL","AR","AZ","CA","CAFC","CIT","CO","COF","COFC","CT","DC","DCCA","DE","FL","GA","GU","HI","IA","ID","IL","IN","JPML","KS","KY","LA","MA","MD","ME","MI","MN","MO","MS","MT","NC","ND","NE","NH","NJ","NM","NV","NY","OH","OK","OR","PA","PR","RI","SC","SD","TN","TX","UT","VA","VI","VT","WA","WI","WV","WY","alm","aln","als","are","arw","cac","cae","can","cas","flm","fln","fls","gam","gan","gas","ian","ias","ilc","iln","ils","inn","ins","kye","kyw","lae","lam","law","mie","miw","moe","mow","msn","mss","nce","ncm","ncw","nmi","nye","nyn","nys","nyw","ohn","ohs","oke","okn","okw","pae","pam","paw","tne","tnm","tnw","txe","txn","txs","txw","vae","vaw","wae","waw","wie","wiw","wvn","wvs"],"type":"string"},"type":"array"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_id":45038,"case_no":"4:2007-cv-00003","case_title":"TIMMONS v. WAL MART STORES INC","court_code":"flndce","date_closed":"02\/12\/2007","date_filed":"01\/03\/2007","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:07-cv-00003\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:07-cv-00003"}},"nature_of_suit_code":360,"normalized_case_no":"4:07-cv-00003","timestamp":"2019-05-08T16:13:42.551039Z","title":"TIMMONS v. WAL MART STORES INC"},{"case_id":45030,"case_no":"1:2007-cv-00002","case_title":"HERSTGAARD v. CHERRYDEN LLC et al","court_code":"flndce","date_closed":"02\/09\/2010","date_filed":"01\/03\/2007","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/1:07-cv-00002\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/1:07-cv-00002"}},"nature_of_suit_code":442,"normalized_case_no":"1:07-cv-00002","timestamp":"2019-05-08T16:13:42.551039Z","title":"HERSTGAARD v. CHERRYDEN LLC et al"}],"config":{"pages":{"1":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/civil\/{search_id}?page_no=1"},"2":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/civil\/{search_id}?page_no=2"},"next":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/civil\/{search_id}?page_no=2"}},"search_id":"string","sort":{"active":{"sort_field":"court_id","sort_reverse":0},"available":["cs_title","court_id","nos","cs_date_filed","cs_date_term"]}},"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}}},"parties":[],"receipts":[{"client_code":"~","cost":0.1,"criteria":"filed 01\/01\/2007 to 01\/15\/2007 All Courts Page: 1","datetime":"05\/08\/2019 11:13:43 86250","description":"Civil Case Search","message":"","pages":1,"timestamp":"2019-05-08T16:13:42.551039Z","user_id":"irtraining"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"nature_of_suit_code":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"config":{"properties":{"pages":{"properties":{"next":{"type":"string"}},"type":"object"},"search_id":{"type":"string"},"sort":{"properties":{"active":{"properties":{"field":{"type":"string"},"is_reverse":{"type":"boolean"}},"type":"object"},"available":{"items":{"type":"string"},"type":"array"}},"type":"object"}},"type":"object"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"normalized_case_no":{"type":"string"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"message":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_id>45038<\/case_id>\n    <case_no>4:2007-cv-00003<\/case_no>\n    <case_title>TIMMONS v. WAL MART STORES INC<\/case_title>\n    <court_code>flndce<\/court_code>\n    <date_closed>02\/12\/2007<\/date_closed>\n    <date_filed>01\/03\/2007<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:07-cv-00003\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:07-cv-00003<\/href>\n      <\/self>\n    <\/links>\n    <nature_of_suit_code>360<\/nature_of_suit_code>\n    <normalized_case_no>4:07-cv-00003<\/normalized_case_no>\n    <timestamp>2019-05-08T16:13:42.551Z<\/timestamp>\n    <title>TIMMONS v. WAL MART STORES INC<\/title>\n  <\/cases>\n  <cases>\n    <case_id>45030<\/case_id>\n    <case_no>1:2007-cv-00002<\/case_no>\n    <case_title>HERSTGAARD v. CHERRYDEN LLC et al<\/case_title>\n    <court_code>flndce<\/court_code>\n    <date_closed>02\/09\/2010<\/date_closed>\n    <date_filed>01\/03\/2007<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/1:07-cv-00002\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/1:07-cv-00002<\/href>\n      <\/self>\n    <\/links>\n    <nature_of_suit_code>442<\/nature_of_suit_code>\n    <normalized_case_no>1:07-cv-00002<\/normalized_case_no>\n    <timestamp>2019-05-08T16:13:42.551Z<\/timestamp>\n    <title>HERSTGAARD v. CHERRYDEN LLC et al<\/title>\n  <\/cases>\n  <config>\n    <pages>\n      <_1>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/civil\/{search_id}?page_no=1<\/href>\n      <\/_1>\n      <_2>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/civil\/{search_id}?page_no=2<\/href>\n      <\/_2>\n      <next>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/civil\/{search_id}?page_no=2<\/href>\n      <\/next>\n    <\/pages>\n    <search_id>string<\/search_id>\n    <sort>\n      <active>\n        <sort_field>court_id<\/sort_field>\n        <sort_reverse>0<\/sort_reverse>\n      <\/active>\n      <available>cs_title<\/available>\n      <available>court_id<\/available>\n      <available>nos<\/available>\n      <available>cs_date_filed<\/available>\n      <available>cs_date_term<\/available>\n    <\/sort>\n  <\/config>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n  <\/links>\n  <receipts>\n    <client_code\/>\n    <cost>0.1<\/cost>\n    <criteria>filed 01\/01\/2007 to 01\/15\/2007 All Courts Page: 1<\/criteria>\n    <datetime>05\/08\/2019 11:13:43 86250<\/datetime>\n    <description>Civil Case Search<\/description>\n    <message><\/message>\n    <pages>1<\/pages>\n    <timestamp>2019-05-08T16:13:42.551Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER NCL Civil Case Search","tags":["ncl"],"x-courtapi-resource":"cases","x-courtapi-source":"pacer","x-courtdrive-async-desc":"PACER NCL Civil Case Search","x-mojo-name":"pacer_ncl_civil","x-mojo-to":"PACER::API#pacer_ncl_civil"}},"\/pacer\/ncl\/civil\/{search_id}":{"get":{"description":"PACER limits NCL results to about 50 cases per page. Use this endpoint to navigate search results by paging and sorting.","operationId":"getCivilSearchResults","parameters":[{"in":"path","name":"search_id","required":true,"schema":{"type":"string"}},{"description":"The result page number to fetch","in":"query","name":"page_no","required":true,"schema":{"default":1,"minimum":1,"type":"integer"}},{"description":"How to sort NCL results. Valid sort fields depend on the search type. Party searches (name\/SSN criteria) support: court_id, case_no, party_name, last_name, first_name — these have no filing-date sort, so for most-recent-first use case_no with sort_reverse=true. Case searches (no party criteria) support: court_id, case_no, case_title, nos, chapter, date_filed, date_closed.","in":"query","name":"sort_field","schema":{"type":"string"}},{"description":"Reverse the sort direction (with case_no, true = newest cases first).","in":"query","name":"sort_reverse","schema":{"type":"boolean"}},{"in":"query","name":"resultset","schema":{"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_id":45137,"case_no":"5:2007-cv-00008","case_title":"HARRISON INTERNATIONAL LLC v. GUTIERREZ et al","court_code":"flndce","date_closed":"03\/30\/2007","date_filed":"01\/12\/2007","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:07-cv-00008\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:07-cv-00008"}},"nature_of_suit_code":893,"normalized_case_no":"5:07-cv-00008","timestamp":"2019-05-10T17:16:42.336630Z","title":"HARRISON INTERNATIONAL LLC v. GUTIERREZ et al"},{"case_id":45126,"case_no":"4:2007-cv-00016","case_title":"HALL v. USA","court_code":"flndce","date_closed":"01\/24\/2007","date_filed":"01\/16\/2007","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:07-cv-00016\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:07-cv-00016"}},"nature_of_suit_code":510,"normalized_case_no":"4:07-cv-00016","timestamp":"2019-05-10T17:16:42.336630Z","title":"HALL v. USA"}],"config":{"pages":{"1":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/civil\/{search_id}?page_no=1"},"2":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/civil\/{search_id}?page_no=2"},"previous":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/civil\/{search_id}?page_no=1"}},"search_id":"string","sort":{"active":{"sort_field":"court_id","sort_reverse":0},"available":["cs_title","court_id","nos","cs_date_filed","cs_date_term"]}},"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}}},"parties":[],"receipts":[{"client_code":"~","cost":0.1,"criteria":"filed 01\/01\/2007 to 01\/16\/2007 All Courts Page: 2","datetime":"05\/10\/2019 12:16:42 86272","description":"Civil Case Search","message":"","pages":1,"timestamp":"2019-05-10T17:16:42.336630Z","user_id":"irtraining"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"nature_of_suit_code":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"config":{"properties":{"pages":{"properties":{"next":{"type":"string"}},"type":"object"},"search_id":{"type":"string"},"sort":{"properties":{"active":{"properties":{"field":{"type":"string"},"is_reverse":{"type":"boolean"}},"type":"object"},"available":{"items":{"type":"string"},"type":"array"}},"type":"object"}},"type":"object"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"normalized_case_no":{"type":"string"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"message":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_id>45137<\/case_id>\n    <case_no>5:2007-cv-00008<\/case_no>\n    <case_title>HARRISON INTERNATIONAL LLC v. GUTIERREZ et al<\/case_title>\n    <court_code>flndce<\/court_code>\n    <date_closed>03\/30\/2007<\/date_closed>\n    <date_filed>01\/12\/2007<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:07-cv-00008\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/5:07-cv-00008<\/href>\n      <\/self>\n    <\/links>\n    <nature_of_suit_code>893<\/nature_of_suit_code>\n    <normalized_case_no>5:07-cv-00008<\/normalized_case_no>\n    <timestamp>2019-05-10T17:16:42.336Z<\/timestamp>\n    <title>HARRISON INTERNATIONAL LLC v. GUTIERREZ et al<\/title>\n  <\/cases>\n  <cases>\n    <case_id>45126<\/case_id>\n    <case_no>4:2007-cv-00016<\/case_no>\n    <case_title>HALL v. USA<\/case_title>\n    <court_code>flndce<\/court_code>\n    <date_closed>01\/24\/2007<\/date_closed>\n    <date_filed>01\/16\/2007<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:07-cv-00016\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/4:07-cv-00016<\/href>\n      <\/self>\n    <\/links>\n    <nature_of_suit_code>510<\/nature_of_suit_code>\n    <normalized_case_no>4:07-cv-00016<\/normalized_case_no>\n    <timestamp>2019-05-10T17:16:42.336Z<\/timestamp>\n    <title>HALL v. USA<\/title>\n  <\/cases>\n  <config>\n    <pages>\n      <_1>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/civil\/{search_id}?page_no=1<\/href>\n      <\/_1>\n      <_2>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/civil\/{search_id}?page_no=2<\/href>\n      <\/_2>\n      <previous>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/civil\/{search_id}?page_no=1<\/href>\n      <\/previous>\n    <\/pages>\n    <search_id>string<\/search_id>\n    <sort>\n      <active>\n        <sort_field>court_id<\/sort_field>\n        <sort_reverse>0<\/sort_reverse>\n      <\/active>\n      <available>cs_title<\/available>\n      <available>court_id<\/available>\n      <available>nos<\/available>\n      <available>cs_date_filed<\/available>\n      <available>cs_date_term<\/available>\n    <\/sort>\n  <\/config>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n  <\/links>\n  <receipts>\n    <client_code\/>\n    <cost>0.1<\/cost>\n    <criteria>filed 01\/01\/2007 to 01\/16\/2007 All Courts Page: 2<\/criteria>\n    <datetime>05\/10\/2019 12:16:42 86272<\/datetime>\n    <description>Civil Case Search<\/description>\n    <message><\/message>\n    <pages>1<\/pages>\n    <timestamp>2019-05-10T17:16:42.336Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER NCL Civil Case Search Result Navigation","tags":["ncl"],"x-courtapi-resource":"cases","x-courtapi-source":"pacer","x-courtdrive-async-desc":"PACER NCL Civil Case Search Result Navigation (page {{page_no}})","x-mojo-name":"pacer_ncl_civil_view","x-mojo-to":"PACER::API#pacer_ncl_view"}},"\/pacer\/ncl\/criminal":{"post":{"description":"PACER NCL Criminal Case Search","operationId":"locateCriminalCases","parameters":[{"description":"How to sort NCL results. Valid sort fields depend on the search type. Party searches (name\/SSN criteria) support: court_id, case_no, party_name, last_name, first_name — these have no filing-date sort, so for most-recent-first use case_no with sort_reverse=true. Case searches (no party criteria) support: court_id, case_no, case_title, nos, chapter, date_filed, date_closed.","in":"query","name":"sort_field","required":false,"schema":{"type":"string"}},{"description":"Reverse the sort direction (with case_no, true = newest cases first).","in":"query","name":"sort_reverse","required":false,"schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_no":{"description":"Case Number (o:yy-tp-nnnnn)","type":"string"},"case_title":{"type":"string"},"case_type":{"items":{"type":"string"},"type":"array"},"closed_from":{"description":"Closed From Date (MM\/DD\/YYYY)","type":"string"},"closed_to":{"description":"Closed To Date (MM\/DD\/YYYY)","type":"string"},"court_code":{"description":"Court Code","type":"string"},"filed_from":{"description":"Filed From Date (MM\/DD\/YYYY)","type":"string"},"filed_to":{"description":"Filed To Date (MM\/DD\/YYYY)","type":"string"},"first_name":{"description":"Party first name.  Do not use if using `party_name` field.","type":"string"},"last_name":{"description":"Party last name.  Do not use if using `party_name` field.","type":"string"},"middle_name":{"description":"Party middle name.  Do not use if using `party_name` field.","type":"string"},"pacer_client":{"description":"PACER Client Code","type":"string"},"party_exact":{"description":"Exact Party Name Matches Only","type":"boolean"},"party_name":{"deprecated":true,"description":"Party Name (`last, first`, or `last, first middle`). Do not use if using `last_name`, `first_name`, and `middle_name` fields.  The individual fields are preferred.\n","type":"string"},"party_role":{"items":{"type":"string"},"type":"array"},"region_code":{"description":"PACER Region Code","items":{"enum":["01","02","03","04","05","06","07","08","09","10","11","AK","AL","AR","AZ","CA","CAFC","CIT","CO","COF","COFC","CT","DC","DCCA","DE","FL","GA","GU","HI","IA","ID","IL","IN","JPML","KS","KY","LA","MA","MD","ME","MI","MN","MO","MS","MT","NC","ND","NE","NH","NJ","NM","NV","NY","OH","OK","OR","PA","PR","RI","SC","SD","TN","TX","UT","VA","VI","VT","WA","WI","WV","WY","alm","aln","als","are","arw","cac","cae","can","cas","flm","fln","fls","gam","gan","gas","ian","ias","ilc","iln","ils","inn","ins","kye","kyw","lae","lam","law","mie","miw","moe","mow","msn","mss","nce","ncm","ncw","nmi","nye","nyn","nys","nyw","ohn","ohs","oke","okn","okw","pae","pam","paw","tne","tnm","tnw","txe","txn","txs","txw","vae","vaw","wae","waw","wie","wiw","wvn","wvs"],"type":"string"},"type":"array"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[],"config":{"pages":{"1":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=1"},"2":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=2"},"3":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=3"},"next":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=2"}},"search_id":"string","sort":{"active":{"sort_field":"party_name","sort_reverse":0},"available":["party_name","court_id","cs_date_filed","cs_date_term"]}},"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}}},"parties":[{"case_id":1041,"case_no":"1:2002-cr-00004","case_title":"USA v. KIMBROUGH - GEORGE KIMBROUGH","court_code":"flndce","date_closed":"02\/22\/2002","date_filed":"02\/22\/2002","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/1:02-cr-00004\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/1:02-cr-00004"}},"normalized_case_no":"1:02-cr-00004","party_name":"SMITH, COREY J ","party_role":"aty","timestamp":"2019-05-10T19:30:44.939342Z","title":"USA v. KIMBROUGH - GEORGE KIMBROUGH"},{"case_id":1063,"case_no":"1:2002-cr-00012","case_title":"USA v. HAMPTON - KENNETH RAY HAMPTON","court_code":"flndce","date_closed":"08\/06\/2002","date_filed":"03\/26\/2002","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/1:02-cr-00012\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/1:02-cr-00012"}},"normalized_case_no":"1:02-cr-00012","party_name":"SMITH, COREY J ","party_role":"aty","timestamp":"2019-05-10T19:30:44.939342Z","title":"USA v. HAMPTON - KENNETH RAY HAMPTON"}],"receipts":[{"client_code":"~","cost":0.1,"criteria":"Name Smith, Corey All Courts Page: 1","datetime":"05\/10\/2019 14:30:45 86277","description":"Criminal Party Search","message":"","pages":1,"timestamp":"2019-05-10T19:30:44.939342Z","user_id":"irtraining"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"nature_of_suit_code":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"config":{"properties":{"pages":{"properties":{"next":{"type":"string"}},"type":"object"},"search_id":{"type":"string"},"sort":{"properties":{"active":{"properties":{"field":{"type":"string"},"is_reverse":{"type":"boolean"}},"type":"object"},"available":{"items":{"type":"string"},"type":"array"}},"type":"object"}},"type":"object"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"normalized_case_no":{"type":"string"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"message":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <config>\n    <pages>\n      <_1>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=1<\/href>\n      <\/_1>\n      <_2>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=2<\/href>\n      <\/_2>\n      <_3>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=3<\/href>\n      <\/_3>\n      <next>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=2<\/href>\n      <\/next>\n    <\/pages>\n    <search_id>string<\/search_id>\n    <sort>\n      <active>\n        <sort_field>party_name<\/sort_field>\n        <sort_reverse>0<\/sort_reverse>\n      <\/active>\n      <available>party_name<\/available>\n      <available>court_id<\/available>\n      <available>cs_date_filed<\/available>\n      <available>cs_date_term<\/available>\n    <\/sort>\n  <\/config>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n  <\/links>\n  <parties>\n    <case_id>1041<\/case_id>\n    <case_no>1:2002-cr-00004<\/case_no>\n    <case_title>USA v. KIMBROUGH - GEORGE KIMBROUGH<\/case_title>\n    <court_code>flndce<\/court_code>\n    <date_closed>02\/22\/2002<\/date_closed>\n    <date_filed>02\/22\/2002<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/1:02-cr-00004\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/1:02-cr-00004<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>1:02-cr-00004<\/normalized_case_no>\n    <party_name>SMITH, COREY J <\/party_name>\n    <party_role>aty<\/party_role>\n    <timestamp>2019-05-10T19:30:44.939Z<\/timestamp>\n    <title>USA v. KIMBROUGH - GEORGE KIMBROUGH<\/title>\n  <\/parties>\n  <parties>\n    <case_id>1063<\/case_id>\n    <case_no>1:2002-cr-00012<\/case_no>\n    <case_title>USA v. HAMPTON - KENNETH RAY HAMPTON<\/case_title>\n    <court_code>flndce<\/court_code>\n    <date_closed>08\/06\/2002<\/date_closed>\n    <date_filed>03\/26\/2002<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/1:02-cr-00012\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/1:02-cr-00012<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>1:02-cr-00012<\/normalized_case_no>\n    <party_name>SMITH, COREY J <\/party_name>\n    <party_role>aty<\/party_role>\n    <timestamp>2019-05-10T19:30:44.939Z<\/timestamp>\n    <title>USA v. HAMPTON - KENNETH RAY HAMPTON<\/title>\n  <\/parties>\n  <receipts>\n    <client_code\/>\n    <cost>0.1<\/cost>\n    <criteria>Name Smith, Corey All Courts Page: 1<\/criteria>\n    <datetime>05\/10\/2019 14:30:45 86277<\/datetime>\n    <description>Criminal Party Search<\/description>\n    <message><\/message>\n    <pages>1<\/pages>\n    <timestamp>2019-05-10T19:30:44.939Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER NCL Criminal Case Search","tags":["ncl"],"x-courtapi-resource":"cases","x-courtapi-source":"pacer","x-courtdrive-async-desc":"PACER NCL Criminal Case Search","x-mojo-name":"pacer_ncl_criminal","x-mojo-to":"PACER::API#pacer_ncl_criminal"}},"\/pacer\/ncl\/criminal\/{search_id}":{"get":{"description":"PACER limits NCL results to about 50 cases per page. Use this endpoint to navigate search results by paging and sorting.","operationId":"getCriminalSearchResults","parameters":[{"in":"path","name":"search_id","required":true,"schema":{"type":"string"}},{"description":"The result page number to fetch","in":"query","name":"page_no","required":true,"schema":{"default":1,"minimum":1,"type":"integer"}},{"description":"How to sort NCL results. Valid sort fields depend on the search type. Party searches (name\/SSN criteria) support: court_id, case_no, party_name, last_name, first_name — these have no filing-date sort, so for most-recent-first use case_no with sort_reverse=true. Case searches (no party criteria) support: court_id, case_no, case_title, nos, chapter, date_filed, date_closed.","in":"query","name":"sort_field","schema":{"type":"string"}},{"description":"Reverse the sort direction (with case_no, true = newest cases first).","in":"query","name":"sort_reverse","schema":{"type":"boolean"}},{"in":"query","name":"resultset","schema":{"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"cases":[],"config":{"pages":{"1":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=1"},"2":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=2"},"3":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=3"},"next":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=3"},"previous":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=1"}},"search_id":"string","sort":{"active":{"sort_field":"party_name","sort_reverse":0},"available":["party_name","court_id","cs_date_filed","cs_date_term"]}},"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}}},"parties":[{"case_id":16385,"case_no":"3:1998-cr-00015","case_title":"USA v. HUNT - PHILLIP E HUNT","court_code":"flndce","date_closed":"~","date_filed":"02\/18\/1998","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:98-cr-00015\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:98-cr-00015"}},"normalized_case_no":"3:98-cr-00015","party_name":"SMITH, COREY J ","party_role":"aty","timestamp":"2019-05-10T19:37:13.282971Z","title":"USA v. HUNT - PHILLIP E HUNT"},{"case_id":16421,"case_no":"3:1998-cr-00031","case_title":"USA v. PENDERGRASS, et al - DONALD S PENDERGRASS","court_code":"flndce","date_closed":"10\/08\/1998","date_filed":"04\/13\/1998","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:98-cr-00031\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:98-cr-00031"}},"normalized_case_no":"3:98-cr-00031","party_name":"SMITH, COREY J ","party_role":"aty","timestamp":"2019-05-10T19:37:13.282971Z","title":"USA v. PENDERGRASS, et al - DONALD S PENDERGRASS"}],"receipts":[{"client_code":"~","cost":0.1,"criteria":"Name Smith, Corey All Courts Page: 2","datetime":"05\/10\/2019 14:37:14 86278","description":"Criminal Party Search","message":"","pages":1,"timestamp":"2019-05-10T19:37:13.282971Z","user_id":"irtraining"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"nature_of_suit_code":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"config":{"properties":{"pages":{"properties":{"next":{"type":"string"}},"type":"object"},"search_id":{"type":"string"},"sort":{"properties":{"active":{"properties":{"field":{"type":"string"},"is_reverse":{"type":"boolean"}},"type":"object"},"available":{"items":{"type":"string"},"type":"array"}},"type":"object"}},"type":"object"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"normalized_case_no":{"type":"string"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"message":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <config>\n    <pages>\n      <_1>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=1<\/href>\n      <\/_1>\n      <_2>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=2<\/href>\n      <\/_2>\n      <_3>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=3<\/href>\n      <\/_3>\n      <next>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=3<\/href>\n      <\/next>\n      <previous>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/criminal\/{search_id}?page_no=1<\/href>\n      <\/previous>\n    <\/pages>\n    <search_id>string<\/search_id>\n    <sort>\n      <active>\n        <sort_field>party_name<\/sort_field>\n        <sort_reverse>0<\/sort_reverse>\n      <\/active>\n      <available>party_name<\/available>\n      <available>court_id<\/available>\n      <available>cs_date_filed<\/available>\n      <available>cs_date_term<\/available>\n    <\/sort>\n  <\/config>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n  <\/links>\n  <parties>\n    <case_id>16385<\/case_id>\n    <case_no>3:1998-cr-00015<\/case_no>\n    <case_title>USA v. HUNT - PHILLIP E HUNT<\/case_title>\n    <court_code>flndce<\/court_code>\n    <date_closed\/>\n    <date_filed>02\/18\/1998<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:98-cr-00015\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:98-cr-00015<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>3:98-cr-00015<\/normalized_case_no>\n    <party_name>SMITH, COREY J <\/party_name>\n    <party_role>aty<\/party_role>\n    <timestamp>2019-05-10T19:37:13.282Z<\/timestamp>\n    <title>USA v. HUNT - PHILLIP E HUNT<\/title>\n  <\/parties>\n  <parties>\n    <case_id>16421<\/case_id>\n    <case_no>3:1998-cr-00031<\/case_no>\n    <case_title>USA v. PENDERGRASS, et al - DONALD S PENDERGRASS<\/case_title>\n    <court_code>flndce<\/court_code>\n    <date_closed>10\/08\/1998<\/date_closed>\n    <date_filed>04\/13\/1998<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:98-cr-00031\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/flndce\/3:98-cr-00031<\/href>\n      <\/self>\n    <\/links>\n    <normalized_case_no>3:98-cr-00031<\/normalized_case_no>\n    <party_name>SMITH, COREY J <\/party_name>\n    <party_role>aty<\/party_role>\n    <timestamp>2019-05-10T19:37:13.282Z<\/timestamp>\n    <title>USA v. PENDERGRASS, et al - DONALD S PENDERGRASS<\/title>\n  <\/parties>\n  <receipts>\n    <client_code\/>\n    <cost>0.1<\/cost>\n    <criteria>Name Smith, Corey All Courts Page: 2<\/criteria>\n    <datetime>05\/10\/2019 14:37:14 86278<\/datetime>\n    <description>Criminal Party Search<\/description>\n    <message><\/message>\n    <pages>1<\/pages>\n    <timestamp>2019-05-10T19:37:13.282Z<\/timestamp>\n    <user_id>irtraining<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER NCL Criminal Case Search Result Navigation","tags":["ncl"],"x-courtapi-resource":"cases","x-courtapi-source":"pacer","x-courtdrive-async-desc":"PACER NCL Criminal Case Search Result (page {{page_no}})","x-mojo-name":"pacer_ncl_criminal_view","x-mojo-to":"PACER::API#pacer_ncl_view"}},"\/pacer\/ncl\/mdl":{"post":{"description":"PACER NCL MDL Case Search","operationId":"searchMDLCases","parameters":[{"description":"How to sort NCL results. Valid sort fields depend on the search type. Party searches (name\/SSN criteria) support: court_id, case_no, party_name, last_name, first_name — these have no filing-date sort, so for most-recent-first use case_no with sort_reverse=true. Case searches (no party criteria) support: court_id, case_no, case_title, nos, chapter, date_filed, date_closed.","in":"query","name":"sort_field","required":false,"schema":{"type":"string"}},{"description":"Reverse the sort direction (with case_no, true = newest cases first).","in":"query","name":"sort_reverse","required":false,"schema":{"type":"boolean"}}],"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"case_title":{"type":"string"},"closed_from":{"description":"Closed From Date (MM\/DD\/YYYY)","type":"string"},"closed_to":{"description":"Closed To Date (MM\/DD\/YYYY)","type":"string"},"court_code":{"description":"Court Code","type":"string"},"filed_from":{"description":"Filed From Date (MM\/DD\/YYYY)","type":"string"},"filed_to":{"description":"Filed To Date (MM\/DD\/YYYY)","type":"string"},"first_name":{"description":"Party first name.  Do not use if using `party_name` field.","type":"string"},"last_name":{"description":"Party last name.  Do not use if using `party_name` field.","type":"string"},"mdl_id":{"type":"string"},"middle_name":{"description":"Party middle name.  Do not use if using `party_name` field.","type":"string"},"pacer_client":{"description":"PACER Client Code","type":"string"},"party_exact":{"description":"Exact Party Name Matches Only","type":"boolean"},"party_name":{"deprecated":true,"description":"Party Name (`last, first`, or `last, first middle`). Do not use if using `last_name`, `first_name`, and `middle_name` fields.  The individual fields are preferred.\n","type":"string"},"party_role":{"items":{"type":"string"},"type":"array"},"region_code":{"description":"PACER Region Code","items":{"enum":["01","02","03","04","05","06","07","08","09","10","11","AK","AL","AR","AZ","CA","CAFC","CIT","CO","COF","COFC","CT","DC","DCCA","DE","FL","GA","GU","HI","IA","ID","IL","IN","JPML","KS","KY","LA","MA","MD","ME","MI","MN","MO","MS","MT","NC","ND","NE","NH","NJ","NM","NV","NY","OH","OK","OR","PA","PR","RI","SC","SD","TN","TX","UT","VA","VI","VT","WA","WI","WV","WY","alm","aln","als","are","arw","cac","cae","can","cas","flm","fln","fls","gam","gan","gas","ian","ias","ilc","iln","ils","inn","ins","kye","kyw","lae","lam","law","mie","miw","moe","mow","msn","mss","nce","ncm","ncw","nmi","nye","nyn","nys","nyw","ohn","ohs","oke","okn","okw","pae","pam","paw","tne","tnm","tnw","txe","txn","txs","txw","vae","vaw","wae","waw","wie","wiw","wvn","wvs"],"type":"string"},"type":"array"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_id":572713,"case_no":"3:2006-cv-04560","case_title":"Jeff Quinn, et al. v. Morgan Stanley","date_closed":"~","date_filed":"01\/03\/2007","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/\/3:06-cv-04560\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/\/3:06-cv-04560"}},"mdl_case_uuid":"~","normalized_case_no":"3:06-cv-04560","originating_court_code":"njdce","timestamp":"~","title":"Jeff Quinn, et al. v. Morgan Stanley"},{"case_id":586674,"case_no":"0:2006-cv-04982","case_title":"Myron Hunt v. Medtronic, Inc.","date_closed":"~","date_filed":"01\/03\/2007","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/\/0:06-cv-04982\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/\/0:06-cv-04982"}},"mdl_case_uuid":"~","normalized_case_no":"0:06-cv-04982","originating_court_code":"mndce","timestamp":"~","title":"Myron Hunt v. Medtronic, Inc."}],"config":{"pages":{"1":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=1"},"2":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=2"},"3":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=3"},"next":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=2"}},"search_id":"string","sort":{"active":{"sort_field":"court_id","sort_reverse":0},"available":["cs_title","court_id","cs_date_filed","cs_date_term"]}},"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}},"redacted_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf"}}},"parties":[],"receipts":[{"client_code":"~","cost":0.1,"criteria":"filed 01\/01\/2007 to 01\/15\/2007 All Courts Page: 1","datetime":"05\/10\/2019 15:00:46 187461527","description":"Multi-District Litigation Case Search","message":"","pages":1,"timestamp":"2019-05-10T20:00:45.824817Z","user_id":"in2117info"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"nature_of_suit_code":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"config":{"properties":{"pages":{"properties":{"next":{"type":"string"}},"type":"object"},"search_id":{"type":"string"},"sort":{"properties":{"active":{"properties":{"field":{"type":"string"},"is_reverse":{"type":"boolean"}},"type":"object"},"available":{"items":{"type":"string"},"type":"array"}},"type":"object"}},"type":"object"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"normalized_case_no":{"type":"string"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"message":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_id>572713<\/case_id>\n    <case_no>3:2006-cv-04560<\/case_no>\n    <case_title>Jeff Quinn, et al. v. Morgan Stanley<\/case_title>\n    <date_closed\/>\n    <date_filed>01\/03\/2007<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/\/3:06-cv-04560\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/\/3:06-cv-04560<\/href>\n      <\/self>\n    <\/links>\n    <mdl_case_uuid\/>\n    <normalized_case_no>3:06-cv-04560<\/normalized_case_no>\n    <originating_court_code>njdce<\/originating_court_code>\n    <timestamp\/>\n    <title>Jeff Quinn, et al. v. Morgan Stanley<\/title>\n  <\/cases>\n  <cases>\n    <case_id>586674<\/case_id>\n    <case_no>0:2006-cv-04982<\/case_no>\n    <case_title>Myron Hunt v. Medtronic, Inc.<\/case_title>\n    <date_closed\/>\n    <date_filed>01\/03\/2007<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/\/0:06-cv-04982\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/\/0:06-cv-04982<\/href>\n      <\/self>\n    <\/links>\n    <mdl_case_uuid\/>\n    <normalized_case_no>0:06-cv-04982<\/normalized_case_no>\n    <originating_court_code>mndce<\/originating_court_code>\n    <timestamp\/>\n    <title>Myron Hunt v. Medtronic, Inc.<\/title>\n  <\/cases>\n  <config>\n    <pages>\n      <_1>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=1<\/href>\n      <\/_1>\n      <_2>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=2<\/href>\n      <\/_2>\n      <_3>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=3<\/href>\n      <\/_3>\n      <next>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=2<\/href>\n      <\/next>\n    <\/pages>\n    <search_id>string<\/search_id>\n    <sort>\n      <active>\n        <sort_field>court_id<\/sort_field>\n        <sort_reverse>0<\/sort_reverse>\n      <\/active>\n      <available>cs_title<\/available>\n      <available>court_id<\/available>\n      <available>cs_date_filed<\/available>\n      <available>cs_date_term<\/available>\n    <\/sort>\n  <\/config>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n    <redacted_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-redacted.pdf<\/href>\n      <\/pdf>\n    <\/redacted_screenshot>\n  <\/links>\n  <receipts>\n    <client_code\/>\n    <cost>0.1<\/cost>\n    <criteria>filed 01\/01\/2007 to 01\/15\/2007 All Courts Page: 1<\/criteria>\n    <datetime>05\/10\/2019 15:00:46 187461527<\/datetime>\n    <description>Multi-District Litigation Case Search<\/description>\n    <message><\/message>\n    <pages>1<\/pages>\n    <timestamp>2019-05-10T20:00:45.824Z<\/timestamp>\n    <user_id>in2117info<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER NCL MDL Case Search","tags":["ncl"],"x-courtapi-resource":"cases","x-courtapi-source":"pacer","x-courtdrive-async-desc":"PACER NCL MDL Case Search","x-mojo-name":"pacer_ncl_mdl","x-mojo-to":"PACER::API#pacer_ncl_mdl"}},"\/pacer\/ncl\/mdl\/{search_id}":{"get":{"description":"PACER limits NCL results to about 50 cases per page. Use this endpoint to navigate search results by paging and sorting.","operationId":"getMDLSearchResults","parameters":[{"in":"path","name":"search_id","required":true,"schema":{"type":"string"}},{"description":"The result page number to fetch","in":"query","name":"page_no","required":true,"schema":{"default":1,"minimum":1,"type":"integer"}},{"description":"How to sort NCL results. Valid sort fields depend on the search type. Party searches (name\/SSN criteria) support: court_id, case_no, party_name, last_name, first_name — these have no filing-date sort, so for most-recent-first use case_no with sort_reverse=true. Case searches (no party criteria) support: court_id, case_no, case_title, nos, chapter, date_filed, date_closed.","in":"query","name":"sort_field","schema":{"type":"string"}},{"description":"Reverse the sort direction (with case_no, true = newest cases first).","in":"query","name":"sort_reverse","schema":{"type":"boolean"}},{"in":"query","name":"resultset","schema":{"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"cases":[{"case_id":586706,"case_no":"0:2006-cv-05112","case_title":"John C. Carter v. Medtronic, Inc.","date_closed":"~","date_filed":"01\/04\/2007","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/\/0:06-cv-05112\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/\/0:06-cv-05112"}},"mdl_case_uuid":"~","normalized_case_no":"0:06-cv-05112","originating_court_code":"mndce","timestamp":"~","title":"John C. Carter v. Medtronic, Inc."},{"case_id":586707,"case_no":"0:2006-cv-05113","case_title":"John Foshee v. Medtronic, Inc.","date_closed":"~","date_filed":"01\/04\/2007","links":{"dockets":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/\/0:06-cv-05113\/dockets"},"self":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/\/0:06-cv-05113"}},"mdl_case_uuid":"~","normalized_case_no":"0:06-cv-05113","originating_court_code":"mndce","timestamp":"~","title":"John Foshee v. Medtronic, Inc."}],"config":{"pages":{"1":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=1"},"2":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=2"},"3":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=3"},"next":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=3"},"previous":{"href":"https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=1"}},"search_id":"string","sort":{"active":{"sort_field":"court_id","sort_reverse":0},"available":["cs_title","court_id","cs_date_filed","cs_date_term"]}},"links":{"original_screenshot":{"pdf":{"href":"https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf"}}},"parties":[],"receipts":[{"client_code":"~","cost":0.1,"criteria":"filed 01\/01\/2007 to 01\/15\/2007 All Courts Page: 2","datetime":"05\/10\/2019 15:06:32 187462404","description":"Multi-District Litigation Case Search","message":"","pages":1,"timestamp":"2019-05-10T20:06:31.847755Z","user_id":"in2117info"}]},"schema":{"properties":{"cases":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"nature_of_suit_code":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"config":{"properties":{"pages":{"properties":{"next":{"type":"string"}},"type":"object"},"search_id":{"type":"string"},"sort":{"properties":{"active":{"properties":{"field":{"type":"string"},"is_reverse":{"type":"boolean"}},"type":"object"},"available":{"items":{"type":"string"},"type":"array"}},"type":"object"}},"type":"object"},"links":{"properties":{"original_screenshot":{"properties":{"pdf":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"parties":{"items":{"properties":{"case_id":{"type":"number"},"case_no":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"date_closed":{"type":"string"},"date_filed":{"type":"string"},"links":{"properties":{"dockets":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"},"normalized_case_no":{"type":"string"},"party_name":{"type":"string"},"party_role":{"type":"string"},"timestamp":{"type":"string"},"title":{"type":"string"}},"type":"object"},"type":"array"},"receipts":{"items":{"properties":{"client_code":{"type":"string"},"cost":{"type":"string"},"criteria":{"type":"string"},"datetime":{"type":"string"},"description":{"type":"string"},"message":{"type":"string"},"pages":{"type":"number"},"timestamp":{"type":"string"},"user_id":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <cases>\n    <case_id>586706<\/case_id>\n    <case_no>0:2006-cv-05112<\/case_no>\n    <case_title>John C. Carter v. Medtronic, Inc.<\/case_title>\n    <date_closed\/>\n    <date_filed>01\/04\/2007<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/\/0:06-cv-05112\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/\/0:06-cv-05112<\/href>\n      <\/self>\n    <\/links>\n    <mdl_case_uuid\/>\n    <normalized_case_no>0:06-cv-05112<\/normalized_case_no>\n    <originating_court_code>mndce<\/originating_court_code>\n    <timestamp\/>\n    <title>John C. Carter v. Medtronic, Inc.<\/title>\n  <\/cases>\n  <cases>\n    <case_id>586707<\/case_id>\n    <case_no>0:2006-cv-05113<\/case_no>\n    <case_title>John Foshee v. Medtronic, Inc.<\/case_title>\n    <date_closed\/>\n    <date_filed>01\/04\/2007<\/date_filed>\n    <links>\n      <dockets>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/\/0:06-cv-05113\/dockets<\/href>\n      <\/dockets>\n      <self>\n        <href>https:\/\/v1.courtapi.com\/cases\/pacer\/\/0:06-cv-05113<\/href>\n      <\/self>\n    <\/links>\n    <mdl_case_uuid\/>\n    <normalized_case_no>0:06-cv-05113<\/normalized_case_no>\n    <originating_court_code>mndce<\/originating_court_code>\n    <timestamp\/>\n    <title>John Foshee v. Medtronic, Inc.<\/title>\n  <\/cases>\n  <config>\n    <pages>\n      <_1>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=1<\/href>\n      <\/_1>\n      <_2>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=2<\/href>\n      <\/_2>\n      <_3>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=3<\/href>\n      <\/_3>\n      <next>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=3<\/href>\n      <\/next>\n      <previous>\n        <href>https:\/\/v1.courtapi.com\/pacer\/ncl\/mdl\/{search_id}?page_no=1<\/href>\n      <\/previous>\n    <\/pages>\n    <search_id>string<\/search_id>\n    <sort>\n      <active>\n        <sort_field>court_id<\/sort_field>\n        <sort_reverse>0<\/sort_reverse>\n      <\/active>\n      <available>cs_title<\/available>\n      <available>court_id<\/available>\n      <available>cs_date_filed<\/available>\n      <available>cs_date_term<\/available>\n    <\/sort>\n  <\/config>\n  <links>\n    <original_screenshot>\n      <pdf>\n        <href>https:\/\/v1.courtapi.com\/source-data\/{uuid}\/screenshot-original.pdf<\/href>\n      <\/pdf>\n    <\/original_screenshot>\n  <\/links>\n  <receipts>\n    <client_code\/>\n    <cost>0.1<\/cost>\n    <criteria>filed 01\/01\/2007 to 01\/15\/2007 All Courts Page: 2<\/criteria>\n    <datetime>05\/10\/2019 15:06:32 187462404<\/datetime>\n    <description>Multi-District Litigation Case Search<\/description>\n    <message><\/message>\n    <pages>1<\/pages>\n    <timestamp>2019-05-10T20:06:31.847Z<\/timestamp>\n    <user_id>in2117info<\/user_id>\n  <\/receipts>\n<\/result>\n"}},"description":"Parsed PACER Response, Structure Depends on Query"},"400":{"description":"Invalid Input Parameters"},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER NCL MDL Case Search Result Navigation","tags":["ncl"],"x-courtapi-resource":"cases","x-courtapi-source":"pacer","x-courtdrive-async-desc":"PACER NCL MDL Case Search Result (page {{page_no}})","x-mojo-name":"pacer_ncl_mdl_view","x-mojo-to":"PACER::API#pacer_ncl_view"}},"\/progress\/{task_id}":{"get":{"description":"Fetch progress status for an Async Result","responses":{"200":{"content":{"application\/json":{"example":{"age":"6.228125,","completed_tasks":"0,","created":"2020-05-26T22:48:08.977213Z","error":0,"pending":1,"progress_percent":"0.00","success":0,"task_id":"3b352e65-a7a6-4dbd-a930-05228c39ea82","task_progress":"0.00","tasks":1,"total":1,"unsent":0},"schema":{"properties":{"age":{"type":"number"},"completed_tasks":{"type":"integer"},"created":{"format":"date-time","type":"string"},"error":{"type":"integer"},"pending":{"type":"integer"},"progress_percent":{"type":"number"},"success":{"type":"integer"},"task_id":{"type":"string"},"task_progress":{"type":"number"},"tasks":{"type":"integer"},"total":{"type":"integer"},"unsent":{"type":"integer"}},"type":"object"}}},"description":"Progress Status"},"302":{"description":"Progress is completed, redirects to results"},"400":{"description":"Bad input parameter etc"},"401":{"description":"Unauthorized"},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"description":"Internal Errors"},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get Async Request Progress","tags":["async"],"x-courtapi-free-call":true,"x-courtapi-resource":"async-progress","x-courtapi-source":"local","x-courtdrive-async-desc":"Get Async Request Progress of {{task_id}}","x-mojo-name":"progress_get","x-mojo-to":"Progress#get_progress"},"parameters":[{"description":"Async Task Id","in":"path","name":"task_id","required":true,"schema":{"type":"string"}}]},"\/regions\/pacer":{"get":{"description":"PACER List Regions","operationId":"listRegions","responses":{"200":{"description":"list pacer region data"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER List Regions","tags":["regions"],"x-courtdrive-async-desc":"List PACER regions","x-mojo-name":"regions_pacer_list","x-mojo-to":"Regions::PACER#list"}},"\/regions\/pacer\/{region_code}":{"get":{"description":"PACER Get Regions","operationId":"getRegion","parameters":[{"description":"Region Code","in":"path","name":"region_code","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"application\/json":{"code":"flm","links":{"self":{"href":"https:\/\/v1.courtapi.com\/regions\/pacer\/flm"}},"name":"Florida Middle","parent_code":"FL","parent_regions":[{"code":"FL","links":{"href":"https:\/\/v1.courtapi.com\/regions\/pacer\/FL"},"name":"Florida"},{"code":"11","links":{"href":"https:\/\/v1.courtapi.com\/regions\/pacer\/11"},"name":"Eleventh Circuit"}]}}},"application\/xml":{"example":"<result>\n   <code>flm<\/code>\n   <links>\n      <self>\n         <href>https:\/\/v1.courtapi.com\/regions\/pacer\/flm<\/href>\n      <\/self>\n   <\/links>\n   <name>Florida Middle<\/name>\n   <parent_code>FL<\/parent_code>\n   <parent_regions>\n      <code>FL<\/code>\n      <links>\n         <href>https:\/\/v1.courtapi.com\/regions\/pacer\/FL<\/href>\n      <\/links>\n      <name>Florida<\/name>\n   <\/parent_regions>\n   <parent_regions>\n      <code>11<\/code>\n      <links>\n         <href>https:\/\/v1.courtapi.com\/regions\/pacer\/11<\/href>\n      <\/links>\n      <name>Eleventh Circuit<\/name>\n   <\/parent_regions>\n<\/result>"}},"description":"pacer region data"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"PACER Get Regions","tags":["regions"],"x-courtdrive-async-desc":"Get PACER region {{region_code}}","x-mojo-name":"regions_pacer_get_region","x-mojo-to":"Regions::PACER#get_region"}},"\/scra\/active-duty-status":{"post":{"description":"Active Duty Status Check","operationId":"activeDutyStatus","requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"anyOf":[{"required":["ssn"]},{"required":["date_of_birth"]}],"properties":{"active_duty_date":{"description":"Active Duty Date","type":"string"},"date_of_birth":{"description":"Date of Birth","type":"string"},"first_name":{"description":"First Name","maxLength":20,"pattern":"^\\s*[a-zA-Z '-]+$","type":"string"},"last_name":{"description":"Last Name","maxLength":26,"pattern":"^\\s*[a-zA-Z '-]+$","type":"string"},"middle_name":{"description":"Middle Name","maxLength":20,"pattern":"^\\s*[a-zA-Z '-]+$","type":"string"},"ssn":{"description":"SSN","pattern":"^[0-9]{9}$","type":"string"}},"required":["active_duty_date","last_name"],"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"example":{"data":{"_id":"1V6B4WFQB58MC0R","eligibility":{"activeDutyCovered":false,"activeDutyEndDate":null,"activeDutyIndicatorCode":null,"activeDutyServiceComponentCode":null,"activeDutyServiceComponentString":null,"activeDutyStartDate":null,"covered":false,"dateOfInterest":"20181231","earlyIndicationCovered":false,"earlyIndicationEndDate":null,"earlyIndicationServiceComponentCode":null,"earlyIndicationServiceComponentString":null,"earlyIndicationStartDate":null,"heraCovered":false,"heraEndDate":null,"heraServiceComponentCode":null,"heraServiceComponentString":null,"heraStartDate":null,"matchReasonCode":"NO_MATCH","scraEligibilityType":"0","transactionId":"1V6B4WFQB58MC0R"},"person":{"activeDutyDate":"20181231","dateOfBirth":"19850622","firstName":"Jonh","lastName":"Smith","middleName":"Henry","ssn":"123456789","ssnConfirmation":"123456789"}},"download_url":"https:\/\/storage.courtapi.com\/...","screenshot_url":"https:\/\/storage.courtapi.com\/..."},"schema":{"properties":{"data":{"properties":{"eligibility":{"properties":{"activeDutyCovered":{"type":"boolean"},"activeDutyEndDate":{"type":"string"},"activeDutyIndicatorCode":{"type":"string"},"activeDutyServiceComponentCode":{"type":"string"},"activeDutyServiceComponentString":{"type":"string"},"activeDutyStartDate":{"type":"string"},"covered":{"type":"boolean"},"dateOfInterest":{"type":"string"},"earlyIndicationCovered":{"type":"boolean"},"earlyIndicationEndDate":{"type":"string"},"earlyIndicationServiceComponentCode":{"type":"string"},"earlyIndicationServiceComponentString":{"type":"string"},"earlyIndicationStartDate":{"type":"string"},"heraCovered":{"type":"boolean"},"heraEndDate":{"type":"string"},"heraServiceComponentCode":{"type":"string"},"heraServiceComponentString":{"type":"string"},"heraStartDate":{"type":"string"},"matchReasonCode":{"type":"string"},"scraEligibilityType":{"type":"string"},"transactionId":{"type":"string"}},"type":"object"},"id":{"type":"string"},"person":{"properties":{"activeDutyDate":{"type":"string"},"dateOfBirth":{"type":"string"},"firstName":{"type":"string"},"lastName":{"type":"string"},"middleName":{"type":"string"},"ssn":{"type":"string"},"ssnConfirmation":{"type":"string"}},"type":"object"}},"type":"object"},"download_url":{"type":"string"}},"type":"object"}},"application\/xml":{"example":"<result>\n  <data>\n    <id>1V6B4WFQB58MC0R<\/id>\n    <eligibility>\n      <activeDutyCovered>0<\/activeDutyCovered>\n      <activeDutyEndDate\/>\n      <activeDutyIndicatorCode\/>\n      <activeDutyServiceComponentCode\/>\n      <activeDutyServiceComponentString\/>\n      <activeDutyStartDate\/>\n      <covered>0<\/covered>\n      <dateOfInterest>20181231<\/dateOfInterest>\n      <earlyIndicationCovered>0<\/earlyIndicationCovered>\n      <earlyIndicationEndDate\/>\n      <earlyIndicationServiceComponentCode\/>\n      <earlyIndicationServiceComponentString\/>\n      <earlyIndicationStartDate\/>\n      <heraCovered>0<\/heraCovered>\n      <heraEndDate\/>\n      <heraServiceComponentCode\/>\n      <heraServiceComponentString\/>\n      <heraStartDate\/>\n      <matchReasonCode>NO_MATCH<\/matchReasonCode>\n      <scraEligibilityType>0<\/scraEligibilityType>\n      <transactionId>1V6B4WFQB58MC0R<\/transactionId>\n    <\/eligibility>\n    <person>\n      <activeDutyDate>20181231<\/activeDutyDate>\n      <dateOfBirth>19850622<\/dateOfBirth>\n      <firstName>Jonh<\/firstName>\n      <lastName>Smith<\/lastName>\n      <middleName>Henry<\/middleName>\n      <ssn>123456789<\/ssn>\n      <ssnConfirmation>123456789<\/ssnConfirmation>\n    <\/person>\n  <\/data>\n  <download_url>https:\/\/storage.courtapi.com\/...<\/download_url>\n  <screenshot_url>https:\/\/storage.courtapi.com\/...<\/screenshot_url>\n<\/result>\n"}},"description":"search results matching criteria"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Active Duty Status Check","tags":["scra"],"x-courtapi-resource":"scra","x-courtapi-source":"scra","x-courtdrive-async-desc":"SCRA Active Duty Status Check","x-mojo-name":"scra_active_duty_status","x-mojo-to":"SCRA#active_duty_status"}},"\/scra\/active-duty-status\/{scra_search_id}\/screenshot.{type}":{"get":{"description":"Get a screenshot of the form used to generate the SCRA active duty status check.\n","parameters":[{"description":"SCRA Search Request Id","in":"path","name":"scra_search_id","required":true,"schema":{"type":"string"}},{"in":"path","name":"type","required":true,"schema":{"enum":["pdf"],"type":"string"}}],"responses":{"200":{"description":"OK"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"description":"Screenshot no longer available for the given search or search not found\n"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"SCRA Status Check Screenshot.","tags":["scra"],"x-courtapi-resource":"scra","x-courtapi-source":"scra","x-courtdrive-async-desc":"SCRA Status Check Screenshot","x-mojo-name":"scra_search_form_screenshot","x-mojo-to":"SCRA#search_form_screenshot"}},"\/source-data\/{source_data_id}\/screenshot-original.{type}":{"get":{"description":"<p>If source data contains sensitive data, non-redacted screenshot can be obtained for a limited amount of time.<\/p><p>Note: This interface is in development and may change before final release<\/p>","operationId":"sourceDataOriginalScreenshot","parameters":[{"description":"Source Data Unique ID","in":"path","name":"source_data_id","required":true,"schema":{"type":"string"}},{"in":"path","name":"type","required":true,"schema":{"enum":["pdf"],"type":"string"}},{"description":"Disposition type","in":"query","name":"disposition","schema":{"default":"download","enum":["download","preview"],"type":"string"}}],"responses":{"200":{"content":{"application\/pdf":{"schema":{"format":"binary","type":"string"}}},"description":"Screenshot of source data."},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"410":{"description":"Screenshot of non-redacted source data is no longer available."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Screenshot of Original, Non-Redacted PACER Source data [alpha]","tags":["source_data"],"x-courtapi-free-call":true,"x-courtapi-resource":"screenshot","x-courtapi-source":"local","x-courtdrive-async-desc":"Non-redacted screenshot for {{source_data_id}}","x-mojo-name":"source_data_original_screenshot","x-mojo-to":"SourceData#original_screenshot"}},"\/source-data\/{source_data_id}\/screenshot-redacted.{type}":{"get":{"description":"Note: This interface is in development and may change before final release","operationId":"sourceDataRedactedScreenshot","parameters":[{"description":"Source Data Unique ID","in":"path","name":"source_data_id","required":true,"schema":{"type":"string"}},{"in":"path","name":"type","required":true,"schema":{"enum":["pdf"],"type":"string"}},{"description":"Disposition type","in":"query","name":"disposition","schema":{"default":"download","enum":["download","preview"],"type":"string"}}],"responses":{"200":{"content":{"application\/pdf":{"schema":{"format":"binary","type":"string"}}},"description":"Screenshot of source data."},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Screenshot of PACER Source data, with SSN redacted when applicable [alpha]","tags":["source_data"],"x-courtapi-free-call":true,"x-courtapi-resource":"screenshot","x-courtapi-source":"local","x-courtdrive-async-desc":"Screenshot for {{source_data_id}}","x-mojo-name":"source_data_redacted_screenshot","x-mojo-to":"SourceData#redacted_screenshot"}},"\/source-data\/{source_data_id}\/spreadsheet-original.{type}":{"get":{"description":"<p>If source data contains sensitive data, non-redacted spreadsheet can be obtained for a limited amount of time.<\/p><p>Note: This interface is in development and may change before final release<\/p>","operationId":"sourceDataOriginalSpreadsheet","parameters":[{"description":"Source Data Unique ID","in":"path","name":"source_data_id","required":true,"schema":{"type":"string"}},{"in":"path","name":"type","required":true,"schema":{"enum":["xlsx"],"type":"string"}},{"description":"Disposition type","in":"query","name":"disposition","schema":{"default":"download","enum":["download","preview"],"type":"string"}}],"responses":{"200":{"content":{"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{"schema":{"format":"binary","type":"string"}}},"description":"Screenshot of source data."},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"410":{"description":"Spreadsheet of non-redacted source data is no longer available."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"CSV data of Original, Non-Redacted PACER Source data in formatted as Excel SpreadSheet (XLSX) [alpha]","tags":["source_data"],"x-courtapi-free-call":true,"x-courtapi-resource":"spreadsheet","x-courtapi-source":"local","x-courtdrive-async-desc":"Non-redacted spreadsheet of CSV data for {{source_data_id}}","x-mojo-name":"source_data_original_spreadsheet","x-mojo-to":"SourceData#original_spreadsheet"}},"\/source-data\/{source_data_id}\/spreadsheet-redacted.{type}":{"get":{"description":"Note: This interface is in development and may change before final release","operationId":"sourceDataRedactedSpreadsheet","parameters":[{"description":"Source Data Unique ID","in":"path","name":"source_data_id","required":true,"schema":{"type":"string"}},{"in":"path","name":"type","required":true,"schema":{"enum":["xlsx"],"type":"string"}},{"description":"Disposition type","in":"query","name":"disposition","schema":{"default":"download","enum":["download","preview"],"type":"string"}}],"responses":{"200":{"content":{"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{"schema":{"format":"binary","type":"string"}}},"description":"Screenshot of source data."},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"CSV data of PACER Source data in formatted as Excel SpreadSheet (XLSX), with SSN redacted when applicable [alpha]","tags":["source_data"],"x-courtapi-free-call":true,"x-courtapi-resource":"spreadsheet","x-courtapi-source":"local","x-courtdrive-async-desc":"Spreadsheet of CSV data for {{source_data_id}}","x-mojo-name":"source_data_redacted_spreadsheet","x-mojo-to":"SourceData#redacted_spreadsheet"}},"\/user\/cases":{"get":{"description":"List User case folders","operationId":"getUserAllCaseFolders","parameters":[{"description":"Page Size","in":"query","name":"page_size","schema":{"default":500,"maximum":500,"minimum":1,"type":"integer"}},{"description":"Page Number","in":"query","name":"page_number","schema":{"type":"integer"}},{"description":"Include cases for all firm users","in":"query","name":"firm","schema":{"type":"boolean"}},{"in":"query","name":"sort","schema":{"items":{"enum":["case_number","case_title"],"type":"string"},"type":"array"}},{"in":"query","name":"sort_direction","schema":{"items":{"enum":["asc","desc"],"type":"string"},"type":"array"}}],"responses":{"200":{"content":{"application\/json":{"example":{"application\/json":{"cases":[{"case_number":"1:14-bk-10557","case_title":"Sbarro LLC","court_code":"nysbke","links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557"},"self":{"href":"https:\/\/v1.courtapi.com\/user\/cases\/nysbke\/1:14-bk-10557"}}},{"case_number":"1:14-bk-12515","case_title":"Dendreon Corporation","court_code":"debke","links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:14-bk-12515"},"self":{"href":"https:\/\/v1.courtapi.com\/user\/cases\/debke\/1:14-bk-12515"}}}],"links":{"last":{"href":"https:\/\/v1.courtapi.com\/user\/cases?page_size=2&page_size=2&page_number=4"},"next":{"href":"https:\/\/v1.courtapi.com\/user\/cases?page_size=2&page_size=2&page_number=2"},"self":{"href":"https:\/\/v1.courtapi.com\/user\/cases?page_size=2&page_size=2&page_number=1"}}}},"schema":{"properties":{"cases":{"items":{"properties":{"case_number":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"},"type":"array"},"links":{"properties":{"first":{"properties":{"href":{"type":"string"}},"type":"object"},"last":{"properties":{"href":{"type":"string"}},"type":"object"},"next":{"properties":{"href":{"type":"string"}},"type":"object"},"prev":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n   <cases>\n      <element>\n         <case_number>1:14-bk-10557<\/case_number>\n         <case_title>Sbarro LLC<\/case_title>\n         <court_code>nysbke<\/court_code>\n         <links>\n            <menu>\n               <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557<\/href>\n            <\/menu>\n            <self>\n               <href>https:\/\/v1.courtapi.com\/user\/cases\/nysbke\/1:14-bk-10557<\/href>\n            <\/self>\n         <\/links>\n      <\/element>\n      <element>\n         <case_number>1:14-bk-12515<\/case_number>\n         <case_title>Dendreon Corporation<\/case_title>\n         <court_code>debke<\/court_code>\n         <links>\n            <menu>\n               <href>https:\/\/v1.courtapi.com\/cases\/pacer\/debke\/1:14-bk-12515<\/href>\n            <\/menu>\n            <self>\n               <href>https:\/\/v1.courtapi.com\/user\/cases\/debke\/1:14-bk-12515<\/href>\n            <\/self>\n         <\/links>\n      <\/element>\n   <\/cases>\n   <links>\n      <last>\n         <href>https:\/\/v1.courtapi.com\/user\/cases?page_size=2&page_size=2&page_number=4<\/href>\n      <\/last>\n      <next>\n         <href>https:\/\/v1.courtapi.com\/user\/cases?page_size=2&page_size=2&page_number=2<\/href>\n      <\/next>\n      <self>\n         <href>https:\/\/v1.courtapi.com\/user\/cases?page_size=2&page_size=2&page_number=1<\/href>\n      <\/self>\n   <\/links>\n<\/result>\n"}},"description":"List User CaseFolders"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"error":{"type":"string"}},"type":"object"}}},"description":"No CourtDrive account ID"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"List User case folders","tags":["casefolders"],"x-courtapi-free-call":true,"x-courtapi-resource":"casefolders","x-courtapi-source":"local","x-courtdrive-async-desc":"List user case folders","x-mojo-name":"casefolders_user_get_all","x-mojo-to":"CaseFolders::User#get_all"}},"\/user\/cases\/{court_code}\/{case_number}":{"delete":{"description":"Delete A Case Folder","operationId":"deleteUserCaseFolder","parameters":[{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"}},{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Delete A Case Folder","tags":["casefolders"],"x-courtapi-free-call":true,"x-courtapi-resource":"casefolders","x-courtapi-source":"local","x-courtdrive-async-desc":"Delete case folder for {{court_code}}\/{{case_number}}","x-mojo-name":"casefolders_user_delete","x-mojo-to":"CaseFolders::User#delete"},"get":{"description":"Get a single case folder","operationId":"getUserCaseFolder","parameters":[{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"}},{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"case_number":"1:08-bk-13555","case_title":"Lehman Brothers Holdings Inc.","court_code":"nysbke","links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:08-bk-13555"},"self":{"href":"https:\/\/v1.courtapi.com\/user\/cases\/nysbke\/1:08-bk-13555"}}},"schema":{"properties":{"case_number":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n   <case_number>1:08-bk-13555<\/case_number>\n   <case_title>Lehman Brothers Holdings Inc.<\/case_title>\n   <court_code>nysbke<\/court_code>\n   <links>\n      <menu>\n         <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:08-bk-13555<\/href>\n      <\/menu>\n      <self>\n         <href>https:\/\/v1.courtapi.com\/user\/cases\/nysbke\/1:08-bk-13555<\/href>\n      <\/self>\n   <\/links>\n<\/result>\n"}},"description":"Existing CaseFolder"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"error":{"type":"string"}},"type":"object"}}},"description":"No CourtDrive account ID"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get a single case folder","tags":["casefolders"],"x-courtapi-free-call":true,"x-courtapi-resource":"casefolders","x-courtapi-source":"local","x-courtdrive-async-desc":"Get case folder for {{court_code}}\/{{case_number}}","x-mojo-name":"casefolders_user_get_one","x-mojo-to":"CaseFolders::User#get_one"},"put":{"description":"Create A Case Folder","operationId":"createUserCaseFolder","parameters":[{"description":"Case Number (e.g. o:yy-tp-nnnnn)","in":"path","name":"case_number","required":true,"schema":{"type":"string"}},{"description":"Court Code","in":"path","name":"court_code","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"example":{"case_number":"1:08-bk-13555","case_title":"Lehman Brothers Holdings Inc.","court_code":"nysbke","links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:08-bk-13555"},"self":{"href":"https:\/\/v1.courtapi.com\/user\/cases\/nysbke\/1:08-bk-13555"}}},"schema":{"properties":{"case_number":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n   <case_number>1:08-bk-13555<\/case_number>\n   <case_title>Lehman Brothers Holdings Inc.<\/case_title>\n   <court_code>nysbke<\/court_code>\n   <links>\n      <menu>\n         <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:08-bk-13555<\/href>\n      <\/menu>\n      <self>\n         <href>https:\/\/v1.courtapi.com\/user\/cases\/nysbke\/1:08-bk-13555<\/href>\n      <\/self>\n   <\/links>\n<\/result>\n"}},"description":"Existing CaseFolder"},"201":{"content":{"application\/json":{"example":{"case_number":"1:08-bk-13555","case_title":"Lehman Brothers Holdings Inc.","court_code":"nysbke","links":{"menu":{"href":"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:08-bk-13555"},"self":{"href":"https:\/\/v1.courtapi.com\/user\/cases\/nysbke\/1:08-bk-13555"}}},"schema":{"properties":{"case_number":{"type":"string"},"case_title":{"type":"string"},"court_code":{"type":"string"},"links":{"properties":{"menu":{"properties":{"href":{"type":"string"}},"type":"object"},"self":{"properties":{"href":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"application\/xml":{"example":"<result>\n   <case_number>1:08-bk-13555<\/case_number>\n   <case_title>Lehman Brothers Holdings Inc.<\/case_title>\n   <court_code>nysbke<\/court_code>\n   <links>\n      <menu>\n         <href>https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:08-bk-13555<\/href>\n      <\/menu>\n      <self>\n         <href>https:\/\/v1.courtapi.com\/user\/cases\/nysbke\/1:08-bk-13555<\/href>\n      <\/self>\n   <\/links>\n<\/result>\n"}},"description":"CaseFolder Created"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"properties":{"error":{"type":"string"}},"type":"object"}}},"description":"No CourtDrive account ID"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Create A Case Folder","tags":["casefolders"],"x-courtapi-free-call":true,"x-courtapi-resource":"casefolders","x-courtapi-source":"local","x-courtdrive-async-desc":"Create case folder for {{court_code}}\/{{case_number}}","x-mojo-name":"casefolders_user_create","x-mojo-to":"CaseFolders::User#create"}},"\/webhooks":{"get":{"parameters":[{"description":"Page number","in":"query","name":"page_number","required":false,"schema":{"minimum":1,"type":"integer"}},{"description":"Page size","in":"query","name":"page_size","required":false,"schema":{"maximum":100,"minimum":1,"type":"integer"}},{"description":"Sort order (default is created)","in":"query","name":"order_by","required":false,"schema":{"enum":["created","endpoint_url"],"type":"string"}},{"description":"Sort direction (default is desc)","in":"query","name":"sort_direction","required":false,"schema":{"enum":["asc","desc"],"type":"string"}}],"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"links":{"properties":{"first":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"},"last":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"},"next":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"},"previous":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"},"self":{"properties":{"href":{"format":"uri","type":"string"}},"type":"object"}},"required":["self"],"type":"object"},"webhooks":{"items":{"properties":{"api_version":{"description":"The API Version","example":"1.0.9","type":"string"},"created":{"example":"2023-04-03T17:15:58.073560000Z","format":"date-time","type":"string"},"enabled":{"description":"Whether the webhook is enabled","type":"boolean"},"endpoint_url":{"description":"The url to deliver webhook events to","example":"https:\/\/webhooks.example.com\/endpoint","format":"uri","type":"string"},"firm_id":{"description":"The id of the firm the webhook belongs to","type":"integer"},"id":{"description":"The webhook id","format":"uuid","type":"string"},"modified":{"example":"2023-04-03T17:15:58.073560000Z","format":"date-time","type":"string"},"signing_secret":{"description":"The secret used to generate webhook event signatures","type":"string"},"subscribed_events":{"items":{"enum":["courtdrive.firm.case.created","courtdrive.firm.case.deleted","courtdrive.firm.case.archived","courtdrive.firm.case.unarchived","courtdrive.firm.email.received"],"type":"string"},"type":"array"}},"required":["endpoint_url","subscribed_events"],"type":"object"},"type":"array"}},"type":"object"}}},"description":"OK"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"List all webhooks for your account","tags":["webhooks"],"x-courtapi-resource":"webhook","x-courtapi-source":"local","x-courtdrive-async-desc":"List webhooks","x-mojo-name":"webhook_list","x-mojo-to":"Webhooks#list_webhooks"},"post":{"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"api_version":{"description":"The API Version","example":"1.0.9","nullable":true,"type":"string"},"enabled":{"description":"Whether the webhook is enabled","nullable":true,"type":"boolean"},"endpoint_url":{"description":"The url to deliver webhook events to","example":"https:\/\/webhooks.example.com\/endpoint","format":"uri","type":"string"},"subscribed_events":{"items":{"enum":["courtdrive.firm.case.created","courtdrive.firm.case.deleted","courtdrive.firm.case.archived","courtdrive.firm.case.unarchived","courtdrive.firm.email.received"],"type":"string"},"type":"array"}},"required":["endpoint_url","subscribed_events"],"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"links":{"properties":{"self":{"description":"The URL to the webhook","type":"string"}},"type":"object"},"webhook":{"properties":{"api_version":{"description":"The API Version","example":"1.0.9","type":"string"},"created":{"example":"2023-04-03T17:15:58.073560000Z","format":"date-time","type":"string"},"enabled":{"description":"Whether the webhook is enabled","type":"boolean"},"endpoint_url":{"description":"The url to deliver webhook events to","example":"https:\/\/webhooks.example.com\/endpoint","format":"uri","type":"string"},"firm_id":{"description":"The id of the firm the webhook belongs to","type":"integer"},"id":{"description":"The webhook id","format":"uuid","type":"string"},"modified":{"example":"2023-04-03T17:15:58.073560000Z","format":"date-time","type":"string"},"signing_secret":{"description":"The secret used to generate webhook event signatures","type":"string"},"subscribed_events":{"items":{"enum":["courtdrive.firm.case.created","courtdrive.firm.case.deleted","courtdrive.firm.case.archived","courtdrive.firm.case.unarchived","courtdrive.firm.email.received"],"type":"string"},"type":"array"}},"required":["endpoint_url","subscribed_events"],"type":"object"}},"type":"object"}}},"description":"OK"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"409":{"description":"Conflict"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Create a webhook","tags":["webhooks"],"x-courtapi-resource":"webhook","x-courtapi-source":"local","x-courtdrive-async-desc":"List webhooks","x-mojo-name":"webhook_create","x-mojo-to":"Webhooks#create_webhook"}},"\/webhooks\/{webhook_id}":{"delete":{"responses":{"204":{"description":"OK"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Delete a webhook","tags":["webhooks"],"x-courtapi-resource":"webhook","x-courtapi-source":"local","x-courtdrive-async-desc":"Delete webhook","x-mojo-name":"webhook_delete","x-mojo-to":"Webhooks#delete_webhook"},"get":{"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"links":{"properties":{"self":{"description":"The URL to the webhook","type":"string"}},"type":"object"},"webhook":{"properties":{"api_version":{"description":"The API Version","example":"1.0.9","type":"string"},"created":{"example":"2023-04-03T17:15:58.073560000Z","format":"date-time","type":"string"},"enabled":{"description":"Whether the webhook is enabled","type":"boolean"},"endpoint_url":{"description":"The url to deliver webhook events to","example":"https:\/\/webhooks.example.com\/endpoint","format":"uri","type":"string"},"firm_id":{"description":"The id of the firm the webhook belongs to","type":"integer"},"id":{"description":"The webhook id","format":"uuid","type":"string"},"modified":{"example":"2023-04-03T17:15:58.073560000Z","format":"date-time","type":"string"},"signing_secret":{"description":"The secret used to generate webhook event signatures","type":"string"},"subscribed_events":{"items":{"enum":["courtdrive.firm.case.created","courtdrive.firm.case.deleted","courtdrive.firm.case.archived","courtdrive.firm.case.unarchived","courtdrive.firm.email.received"],"type":"string"},"type":"array"}},"required":["endpoint_url","subscribed_events"],"type":"object"}},"type":"object"}}},"description":"OK"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Get a webhook","tags":["webhooks"],"x-courtapi-resource":"webhook","x-courtapi-source":"local","x-courtdrive-async-desc":"Get webhook","x-mojo-name":"webhook_get","x-mojo-to":"Webhooks#get_webhook"},"parameters":[{"description":"Webhook id","in":"path","name":"webhook_id","required":true,"schema":{"type":"string"}}],"patch":{"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"api_version":{"description":"The API Version","example":"1.0.9","nullable":true,"type":"string"},"enabled":{"description":"Whether the webhook is enabled","nullable":true,"type":"boolean"},"endpoint_url":{"description":"The url to deliver webhook events to","example":"https:\/\/webhooks.example.com\/endpoint","format":"uri","nullable":true,"type":"string"},"subscribed_events":{"items":{"enum":["courtdrive.firm.case.created","courtdrive.firm.case.deleted","courtdrive.firm.case.archived","courtdrive.firm.case.unarchived","courtdrive.firm.email.received"],"type":"string"},"nullable":true,"type":"array"}},"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"links":{"properties":{"self":{"description":"The URL to the webhook","type":"string"}},"type":"object"},"webhook":{"properties":{"api_version":{"description":"The API Version","example":"1.0.9","type":"string"},"created":{"example":"2023-04-03T17:15:58.073560000Z","format":"date-time","type":"string"},"enabled":{"description":"Whether the webhook is enabled","type":"boolean"},"endpoint_url":{"description":"The url to deliver webhook events to","example":"https:\/\/webhooks.example.com\/endpoint","format":"uri","type":"string"},"firm_id":{"description":"The id of the firm the webhook belongs to","type":"integer"},"id":{"description":"The webhook id","format":"uuid","type":"string"},"modified":{"example":"2023-04-03T17:15:58.073560000Z","format":"date-time","type":"string"},"signing_secret":{"description":"The secret used to generate webhook event signatures","type":"string"},"subscribed_events":{"items":{"enum":["courtdrive.firm.case.created","courtdrive.firm.case.deleted","courtdrive.firm.case.archived","courtdrive.firm.case.unarchived","courtdrive.firm.email.received"],"type":"string"},"type":"array"}},"required":["endpoint_url","subscribed_events"],"type":"object"}},"type":"object"}}},"description":"OK"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"419":{"description":"Conflict"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Partial update a webhook","tags":["webhooks"],"x-courtapi-resource":"webhook","x-courtapi-source":"local","x-courtdrive-async-desc":"Partial update a webhook","x-mojo-name":"webhook_patch","x-mojo-to":"Webhooks#patch_webhook"},"post":{"requestBody":{"content":{"application\/x-www-form-urlencoded":{"schema":{"properties":{"api_version":{"description":"The API Version","example":"1.0.9","nullable":true,"type":"string"},"enabled":{"description":"Whether the webhook is enabled","nullable":true,"type":"boolean"},"endpoint_url":{"description":"The url to deliver webhook events to","example":"https:\/\/webhooks.example.com\/endpoint","format":"uri","type":"string"},"subscribed_events":{"items":{"enum":["courtdrive.firm.case.created","courtdrive.firm.case.deleted","courtdrive.firm.case.archived","courtdrive.firm.case.unarchived","courtdrive.firm.email.received"],"type":"string"},"type":"array"}},"required":["endpoint_url","subscribed_events"],"type":"object"}}}},"responses":{"200":{"content":{"application\/json":{"schema":{"properties":{"links":{"properties":{"self":{"description":"The URL to the webhook","type":"string"}},"type":"object"},"webhook":{"properties":{"api_version":{"description":"The API Version","example":"1.0.9","type":"string"},"created":{"example":"2023-04-03T17:15:58.073560000Z","format":"date-time","type":"string"},"enabled":{"description":"Whether the webhook is enabled","type":"boolean"},"endpoint_url":{"description":"The url to deliver webhook events to","example":"https:\/\/webhooks.example.com\/endpoint","format":"uri","type":"string"},"firm_id":{"description":"The id of the firm the webhook belongs to","type":"integer"},"id":{"description":"The webhook id","format":"uuid","type":"string"},"modified":{"example":"2023-04-03T17:15:58.073560000Z","format":"date-time","type":"string"},"signing_secret":{"description":"The secret used to generate webhook event signatures","type":"string"},"subscribed_events":{"items":{"enum":["courtdrive.firm.case.created","courtdrive.firm.case.deleted","courtdrive.firm.case.archived","courtdrive.firm.case.unarchived","courtdrive.firm.email.received"],"type":"string"},"type":"array"}},"required":["endpoint_url","subscribed_events"],"type":"object"}},"type":"object"}}},"description":"OK"},"400":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"401":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"404":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"409":{"description":"Conflict"},"500":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."},"501":{"content":{"application\/json":{"schema":{"$ref":"#\/components\/schemas\/DefaultResponse"}}},"description":"Default response."}},"summary":"Update a webhook","tags":["webhooks"],"x-courtapi-resource":"webhook","x-courtapi-source":"local","x-courtdrive-async-desc":"Update webhook","x-mojo-name":"webhook_update","x-mojo-to":"Webhooks#update_webhook"}}},"security":[{"www-authenticate":[]}],"servers":[{"description":"Production Server (live courts)","url":"https:\/\/v1.courtapi.com\/"}],"tags":[{"description":"CourtAPI PACER Spending Alerts","name":"alert"},{"description":"CourtAPI Casefolders","name":"casefolders"},{"description":"PACER National Case Locator","name":"ncl"},{"description":"Case Details","name":"case"},{"description":"Query PACER Court Case Data","name":"query"},{"description":"Fetch data from LocalDB","name":"localdb"},{"description":"PACER Credentials","name":"pacer_credentials"},{"description":"Courts Data","name":"courts"},{"description":"Search Court Records","name":"case_lookup"},{"description":"PACER Case Lookup","name":"pacer_case_lookup"},{"description":"Bankruptcy Petition endpoints.  These endpoints require a premium CourtAPI Subscription plan.\n","name":"petitions"},{"description":"SCRA - Servicemembers Civil Relief Act","name":"scra"},{"description":"Advanced Filings Search","name":"search"},{"description":"Source Data and Screenshots","name":"source_data"},{"description":"You can configure webhooks via CourtAPI to be notified about certain events that\nhappen in your CourtAPI or linked CourtDrive account.\n\n## How to Create a Webhook Endpoint\n\nTo create a webhook endpoint, you need to create a page on your server that\nlistens for incoming POST requests from CourtAPI. You can use any server-side\nlanguage to create your endpoint. Your endpoint must be publicly accessible and\nreturn a 200 OK HTTP status code in response to the POST request.\n\n## Identify the Events You Want to Receive\n\nYou can view the available event types in the endpoint to create a webhook.\n\n## Create a Webhook Endpoint in CourtAPI\n\nYou can create a webhook by using this endpoint:\n\n```\nPOST \/webhooks\n```\n\nSee the endpoint documentation for the full details.\n\n## Handle requests From CourtAPI\n\nYour endpoint must be able to read JSON data from the request body. The JSON\ndata will contain an event object with the following structure:\n\n```json\n{\n  \"api_version\": \"1.0.9\",\n  \"created\": 1682693412,\n  \"data\": {\n    ...\n  },\n  \"id\": \"6ac7495f-256d-4e77-ab3c-6aa8d609e2f3\",\n  \"object\": \"courtdrive.firm.case\",\n  \"type\": \"courtdrive.firm.case.created\"\n}\n```\n\nThe contents of the `data` object will vary depending on the type of event. For\nexample, a `courtdrive.firm.case.created` event will contain this object in the\n`data` attribute:\n\n```json\n{\n  \"case_number\": \"1:14-bk-10557\",\n  \"case_title\": \"Sbarro LLC\",\n  \"case_uuid\": \"nysbke_247775\",\n  \"court_system\": \"PACER\",\n  \"created\": \"2023-03-28T12:34:56.920410001Z\",\n  \"id\": 12345,\n  \"links\": {\n    \"self\": {\n      \"href\": \"https:\/\/v1.courtapi.com\/cases\/pacer\/nysbke\/1:14-bk-10557\"\n    }\n  },\n  \"modified\": \"2023-03-28T12:34:56.920410001Z\",\n  \"tags\": []\n}\n```\n\n### Return a 2xx response\n\nYour endpoint must quickly return a successful response status code (`2xx`) to\nCourtAPI. If your event processing requires any complex logic you should return\nthe the response to CourtAPI before any complex processing takes place.\n\n### Delivery Retries are Automatic\n\nCourtAPI webhooks will retry any delivery that does not result in a `2xx`\nresponse status code. If CourtAPI does not quickly receive a `2xx` response\nstatus code, it will retry the delivery many times for up to up to 3 days before\ngiving up. The amount of time between delivery attempts will increase\nexponentially with each failed attempt. If CourtAPI cannot delivery your webhook\nevent after 3 days, it will email the payload to your accountâs email address\ninstead.\n\n### Secure Your Webhooks (recommended)\n\nCourtAPI will sign each webhook event it sends to your endpoint. Your webhook\nendpoint should verify the signature before processing the event. This will\nensure that the event came from CourtAPI and not a third party pretending to be\nCourtAPI.\n\nEach request will include a `X-CourtAPI-Signature` header. The value of this\nheader contains a timestamp and one or more signatures. The timestamp is\nprefixed by `t=` and each signature is prefixed by a _scheme_. Schemes start\nwith a `v` followed by an integer. Currently the only valid signature scheme is\n`v1`. The signature scheme is followed by a `=` and then the signature itself.\nMultiple signatures may be included in the header, each separated by a comma.\n\nCourtAPI generates signatures using hash-based message authentication code\n(HMAC) with SHA-256. Your endpoint should ignore all schemes that are not `v1`.\nNote that it is possible to have multiple signatures with the same scheme in an\nevent. This can happen if you recently changed your webhook secret. CourtAPI\nwill return both signatures for up to 3 days so that any pending webhooks using\nthe old secret can still be verified.\n\nExample:\n\n```\nX-CourtAPI-Signature: t=1530153677, v1=efd80e5e17f6996db8ab217b0dc8cc835f7cc4f5fec9802ed86c77c60f17298c\n```\n\n#### Signature Verification Process\n\nWhen verifying the signature your endpoint should confirm that:\n\n- The timestamp is recent (for example within past few minutes).\n- Prepare the signed payload string. This is a string consisting of:\n  - The timestamp (as a string)\n  - The character `.` (period)\n  - The actual string payload body of the request (you should not parse the body\n    into JSON when computing the signature)\n- Compute the HMAC SHA-256 signature using your endpoints webhook secret and use\n  the above string as the message.\n- Your computed string should match exactly the signature in the header. For the\n  above example, your computed signature should match\n  `efd80e5e17f6996db8ab217b0dc8cc835f7cc4f5fec9802ed86c77c60f17298c` exactly.\n\nIf the signature does not match, you should ignore the request.\n","name":"webhooks"}]}