From ac03bbf22a72dea2b7b81ea254dc615542befdc7 Mon Sep 17 00:00:00 2001 From: phamjennifer <159952636+phamjennifer@users.noreply.github.com> Date: Tue, 18 Feb 2025 11:23:47 -0800 Subject: [PATCH] Update access-production-claims-data.md --- _pages/access-production-claims-data.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/_pages/access-production-claims-data.md b/_pages/access-production-claims-data.md index 4efd62e..3cf7f55 100644 --- a/_pages/access-production-claims-data.md +++ b/_pages/access-production-claims-data.md @@ -38,13 +38,15 @@ You’ll still need [a bearer token]({{ '/get-a-bearer-token' | relative_url }}) - Check the job status: `GET /api/v2/fhir/Job/{job_uuid}/$status` - Download files: `GET/api/v2/fhir/Job/{job_uuid}/file/{file_name}` -### File expiration +### Job expiration -If it takes more than 30 hours to retrieve and download the data, the request will time out and fail. Try using [parameters]({{ '/query-parameters-V2' | relative_url }}) when running a job to filter the claims data returned and reduce file size. +Job IDs and file URLs expire after 72 hours or 6 downloads. If it takes more than 30 hours for a job to complete, the request will time out and fail. Reduce file sizes and download times by using [parameters]({{ '/query-parameters-V2' | relative_url }}) to filter the claims data returned or download compressed data files in gzip format. ### Format -Files are in NDJSON format, where each line is a Medicare claim written in JSON. The file naming standard uses a contract identifier and number to indicate sequence (e.g., Z123456_0001.ndjson). Large data files require adequate storage and a database to process the claims received. +Files are in NDJSON format, where each line is a Medicare claim written in JSON. The file naming standard uses a contract identifier and number to indicate sequence (e.g., Z123456_0001.ndjson). + +You can optionally download files in gzip format and decompress (unzip) them afterward into NDJSON. Large data files require adequate storage and a database to process the claims received. ## Sample client scripts