diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 64369ff0..c2b8d3d6 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -54,8 +54,15 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} deploy: needs: pre-deployment-check - name: Deploy to Dev + name: Deploy to Dev - enableMultiTenancy=${{ matrix.enableMultiTenancy }} runs-on: ubuntu-18.04 + strategy: + matrix: + include: + - enableMultiTenancy: false + region: us-west-2 + - enableMultiTenancy: true + region: us-west-1 steps: - name: Checkout uses: actions/checkout@v2 @@ -88,7 +95,7 @@ jobs: run: | cd javaHapiValidatorLambda mvn --batch-mode --update-snapshots --no-transfer-progress clean install - serverless deploy --stage dev --region us-west-2 --conceal + serverless deploy --stage dev --region ${{ matrix.region }} --conceal cd .. - name: Deploy FHIR Server and ddbToEs env: @@ -96,7 +103,7 @@ jobs: AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} run: | - serverless deploy --stage dev --region us-west-2 --useHapiValidator true --conceal + serverless deploy --stage dev --region ${{ matrix.region }} --useHapiValidator true --enableMultiTenancy ${{ matrix.enableMultiTenancy }} --conceal - name: Deploy auditLogMover env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID}} @@ -104,11 +111,26 @@ jobs: run: | cd auditLogMover yarn install - serverless deploy --stage dev --region us-west-2 --conceal + serverless deploy --stage dev --region ${{ matrix.region }} --conceal crucible-test: needs: deploy - name: Run Crucible Tests + name: Run Crucible Tests - enableMultiTenancy=${{ matrix.enableMultiTenancy }} runs-on: ubuntu-18.04 + strategy: + matrix: + include: + - enableMultiTenancy: false + region: us-west-2 + serviceUrlSuffix: '' + serviceUrlSecretName: SERVICE_URL + cognitoClientIdSecretName: COGNITO_CLIENT_ID + apiKeySecretName: API_KEY + - enableMultiTenancy: true + region: us-west-1 + serviceUrlSuffix: /tenant/tenant1 + serviceUrlSecretName: MULTITENANCY_SERVICE_URL + cognitoClientIdSecretName: MULTITENANCY_COGNITO_CLIENT_ID + apiKeySecretName: MULTITENANCY_API_KEY steps: - uses: actions/checkout@v2 with: @@ -123,22 +145,35 @@ jobs: bundle install - name: Execute tests env: - SERVICE_URL: ${{ secrets.SERVICE_URL}} - API_KEY: ${{ secrets.API_KEY }} - COGNITO_CLIENT_ID: ${{ secrets.COGNITO_CLIENT_ID}} + SERVICE_URL: ${{ secrets[matrix.serviceUrlSecretName] }}${{ matrix.serviceUrlSuffix }} + API_KEY: ${{ secrets[matrix.apiKeySecretName] }} + COGNITO_CLIENT_ID: ${{ secrets[matrix.cognitoClientIdSecretName] }} COGNITO_USERNAME: ${{ secrets.COGNITO_USERNAME_PRACTITIONER }} COGNITO_PASSWORD: ${{ secrets.COGNITO_PASSWORD }} AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID}} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} run: | - ACCESS_TOKEN=$(aws cognito-idp initiate-auth --region us-west-2 --client-id $COGNITO_CLIENT_ID \ + ACCESS_TOKEN=$(aws cognito-idp initiate-auth --region ${{ matrix.region }} --client-id $COGNITO_CLIENT_ID \ --auth-flow USER_PASSWORD_AUTH --auth-parameters USERNAME=$COGNITO_USERNAME,PASSWORD=$COGNITO_PASSWORD | \ - python -c 'import json,sys;obj=json.load(sys.stdin);print obj["AuthenticationResult"]["AccessToken"]') + python -c 'import json,sys;obj=json.load(sys.stdin);print obj["AuthenticationResult"]["IdToken"]') bundle exec rake crucible:execute_hearth_tests[$SERVICE_URL,$API_KEY,$ACCESS_TOKEN] custom-integration-tests: needs: crucible-test - name: Run custom integration tests + name: Run custom integration tests - enableMultiTenancy=${{ matrix.enableMultiTenancy }} runs-on: ubuntu-18.04 + strategy: + matrix: + include: + - enableMultiTenancy: false + region: us-west-2 + serviceUrlSecretName: SERVICE_URL + cognitoClientIdSecretName: COGNITO_CLIENT_ID + apiKeySecretName: API_KEY + - enableMultiTenancy: true + region: us-west-1 + serviceUrlSecretName: MULTITENANCY_SERVICE_URL + cognitoClientIdSecretName: MULTITENANCY_COGNITO_CLIENT_ID + apiKeySecretName: MULTITENANCY_API_KEY steps: - name: Checkout uses: actions/checkout@v2 @@ -151,13 +186,15 @@ jobs: yarn install - name: Execute tests env: - API_URL: ${{ secrets.SERVICE_URL}} - API_KEY: ${{ secrets.API_KEY }} - API_AWS_REGION: ${{ secrets.API_AWS_REGION }} - COGNITO_CLIENT_ID: ${{ secrets.COGNITO_CLIENT_ID}} + API_URL: ${{ secrets[matrix.serviceUrlSecretName] }} + API_KEY: ${{ secrets[matrix.apiKeySecretName] }} + API_AWS_REGION: ${{ matrix.region }} + COGNITO_CLIENT_ID: ${{ secrets[matrix.cognitoClientIdSecretName] }} COGNITO_USERNAME_PRACTITIONER: ${{ secrets.COGNITO_USERNAME_PRACTITIONER }} COGNITO_USERNAME_AUDITOR: ${{ secrets.COGNITO_USERNAME_AUDITOR }} + COGNITO_USERNAME_PRACTITIONER_ANOTHER_TENANT: ${{ secrets.COGNITO_USERNAME_PRACTITIONER_ANOTHER_TENANT }} COGNITO_PASSWORD: ${{ secrets.COGNITO_PASSWORD }} + MULTI_TENANCY_ENABLED: ${{ matrix.enableMultiTenancy }} run: yarn int-test merge-develop-to-mainline: diff --git a/README.md b/README.md index 583605be..0cdc74da 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,8 @@ git clone https://github.com/awslabs/fhir-works-on-aws-deployment.git If you intend to use FHIR Implementation Guides read the [Using Implementation Guides](./USING_IMPLEMENTATION_GUIDES.md) documentation first. +If you intend to do a multi-tenant deployment read the [Using Multi-Tenancy](./USING_MULTI_TENANCY.md) documentation first. + ## Architecture The system architecture consists of multiple layers of AWS serverless services. The endpoint is hosted using API Gateway. The database and storage layer consists of Amazon DynamoDB and S3, with Elasticsearch as the search index for the data written to DynamoDB. The endpoint is secured by API keys and Cognito for user-level authentication and user-group authorization. The diagram below shows the FHIR server’s system architecture components and how they are related. @@ -103,23 +105,17 @@ Set up the following three environment variables: For instructions on importing the environment JSON, click [here](https://thinkster.io/tutorials/testing-backend-apis-with-postman/managing-environments-in-postman). +The `COGNITO_AUTH_TOKEN` required for each of these files can be obtained by following the instructions under [Authorizing a user](#authorizing-a-user). + The following variables required in the Postman collection can be found in `Info_Output.log` or by running `serverless info --verbose`: + API_URL: from Service Information:endpoints: ANY + API_KEY: from Service Information: api keys: developer-key -+ CLIENT_ID: from Stack Outputs: UserPoolAppClientId -+ AUTH_URL: https://.auth.\.amazoncognito.com/oauth2/authorize - - **Note:** You can also query Cognito openid "well-known" url to get the AUTH_URL - ``` - https://cognito-idp.[REGION].amazonaws.com/[from Stack Outputs: UserPoolId]/.well-known/openid-configuration - ``` - To find what FHIR Server supports, use the `GET Metadata` Postman request to retrieve the [Capability Statement](https://www.hl7.org/fhir/capabilitystatement.html) **Authorizing a user** -FHIR Works on AWS uses Role-Based Access Control (RBAC) to determine what operations and what resource types a user can access. The default rule set can be found in [RBACRules.ts](https://github.com/awslabs/fhir-works-on-aws-deployment/blob/mainline/src/RBACRules.ts). To access the API, you must use the OAuth access token. This access token must include scopes of either `openid`, `profile` or `aws.cognito.signin.user.admin`. +FHIR Works on AWS uses Role-Based Access Control (RBAC) to determine what operations and what resource types a user can access. The default rule set can be found in [RBACRules.ts](https://github.com/awslabs/fhir-works-on-aws-deployment/blob/mainline/src/RBACRules.ts). To access the API, you must use the ID token. This ID token must include scopes of either `openid`, `profile` or `aws.cognito.signin.user.admin`. Using either of these scopes provide information about users and their group. It helps determine what resources/records they can access. @@ -129,18 +125,9 @@ Using either of these scopes provide information about users and their group. It For more information, click [here](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-app-idp-settings.html). -**Retrieving access token via postman using the openid profile** - -To access the FHIR API, an access token is required. This can be obtained by following these steps within Postman: - -1. Open Postman and choose the operation (for example, `GET Patient`). -2. In the **Authorization** tab, choose **Get New Access Token**. -3. A sign in page appears. Enter the username and password (if you don't know it look at the [init-auth.py](https://github.com/awslabs/fhir-works-on-aws-deployment/blob/mainline/scripts%5Cinit-auth.py) script). -4. After signing in, the access token is set and you have the access for approximately one hour. - -**Retrieving an access token using aws.cognito.signin.user.admin** +**Retrieving an ID token using aws.cognito.signin.user.admin** -A Cognito OAuth access token can be obtained using the following command substituting all variables with their values from `Info_Output.log` or by using the `serverless info --verbose` command. +To access the FHIR API, an ID token is required. A Cognito ID token can be obtained using the following command substituting all variables with their values from `INFO_OUTPUT.log` or by using the `serverless info --verbose` command. + For Windows, enter: ```sh scripts/init-auth.py @@ -149,7 +136,7 @@ scripts/init-auth.py ```sh python3 scripts/init-auth.py ``` -The return value is an access token that can be used to hit the FHIR API without accessing the Oauth Sign In page. In Postman, instead of clicking the Get New Access Token button, you can paste the `ACCESS_TOKEN` value into the **Available Tokens** field. +The return value is the `COGNITO_AUTH_TOKEN` (found in the postman collection) to be used for access to the FHIR APIs. ### Accessing binary resources diff --git a/USING_MULTI_TENANCY.md b/USING_MULTI_TENANCY.md new file mode 100644 index 00000000..520124f1 --- /dev/null +++ b/USING_MULTI_TENANCY.md @@ -0,0 +1,56 @@ +# Multi-Tenancy + +Multi-tenancy allows a single `fhir-works-on-aws` stack to serve as multiple FHIR servers for different tenants. + +`fhir-works-on-aws` uses a pooled infrastructure model for multi-tenancy. This means that all tenants share the +same infrastructure (DynamoDB tables, S3 Buckets, Elasticsearch cluster, etc.), but the data +is logically partitioned to ensure that tenants are prevented from accessing another tenant’s resources. + +## Enabling multi-tenancy + +Use the `enableMultiTenancy` option when deploying the stack: + +```bash +serverless deploy --enableMultiTenancy true +``` + +**Note:** Updating an existing (single-tenant) stack to enable multi-tenancy is a breaking change. Multi-tenant +deployments use a different data partitioning strategy that renders the old, single-tenant, data inaccessible. +If you wish to switch from single-tenant to a multi-tenant model, it is recommended to create a new multi-tenant stack +and then migrate the data from the old stack. Switching from multi-tenant to a single-tenant model is also a breaking change. + +## Tenant identifiers + +Tenants are identified by a tenant Id in the auth token. A tenant Id is a string that can contain alphanumeric characters, +dashes, and underscores and have a maximum length of 64 characters. + +There are 2 ways to include a tenant Id in the auth token: + +1. Add the tenant Id in a custom claim. This is the recommended approach. +The default configuration adds the tenant Id on the `custom:tenantId` claim + +1. Encode the tenant Id in the `aud` claim by providing an URL that matches `/tenant/`. +This can be useful when using an IDP that does not support custom claims. + +If a token has a tenant Id in a custom claim and in the aud claim, then both claims must have the same tenant Id value, +otherwise an Unauthorized error is thrown. + +The default deployment adds a custom claim `custom:tenantId` to the Cognito User Pool. You can manage the tenant Id value +for the different users on the AWS Cognito Console. The [provision-user.py](https://github.com/awslabs/fhir-works-on-aws-deployment/blob/mainline/scripts/provision-user.py) +script will also create users with a set tenant Id. + +## Additional Configuration + +Additional configuration values can be set on [config.ts](https://github.com/awslabs/fhir-works-on-aws-deployment/blob/mainline/src/config.ts) + +- `enableMultiTenancy`: Whether or not to enable multi-tenancy. +- `useTenantSpecificUrl`: When enabled, `/tenant//` is appended to the FHIR server url. + + e.g. A client with `tennatId=tenantA` would use the following url to search for Patients: + ``` + GET /tenant//Patient + GET https://1234567890.execute-api.us-west-2.amazonaws.com/dev/tenant/tenantA/Patient + ``` + Enabling this setting is useful to give each tenant a unique FHIR server base URL. + +- `tenantIdClaimPath`: Path to the tenant Id claim in the auth token JSON. Defaults to `custom:tenantId` diff --git a/bulkExport/extractPatientCompartmentSearchParams.js b/bulkExport/extractPatientCompartmentSearchParams.js new file mode 100644 index 00000000..5b314c4a --- /dev/null +++ b/bulkExport/extractPatientCompartmentSearchParams.js @@ -0,0 +1,61 @@ +/* +This scripts generates the two patientCompartmentSearchParams JSON files from compartment definition files and save them at bulkExport/schema. + +Run the script: +> node extractPatientCompartmentSearchParams.js + +The compartment definition files are downloaded from the following URL and saved in folder bulkExport/schema: + +compartmentdefinition-patient.4.0.1.json: https://www.hl7.org/fhir/compartmentdefinition-patient.json.html +compartmentdefinition-patient.3.0.2.json: http://hl7.org/fhir/stu3/compartmentdefinition-patient.json.html (Note the AuditEvent and Provenance fields in this file are updated to remove dotted path) + */ + +const fs = require('fs'); +const compartmentPatientV3 = require('./schema/compartmentdefinition-patient.3.0.2.json'); +const compartmentPatientV4 = require('./schema/compartmentdefinition-patient.4.0.1.json'); +const baseSearchParamsV3 = require('../../fhir-works-on-aws-search-es/src/schema/compiledSearchParameters.3.0.1.json'); +const baseSearchParamsV4 = require('../../fhir-works-on-aws-search-es/src/schema/compiledSearchParameters.4.0.1.json'); + +// Create a dictionary of search params +function extractPatientCompartmentSearchParams(baseSearchParams, compartmentPatient) { + const baseSearchParamsDict = {}; + // example of an item in baseSearchParamsDict: Account-identifier: {resourceType: "Account", path: "identifier"} + baseSearchParams.forEach(param => { + baseSearchParamsDict[`${param.base}-${param.name}`] = param.compiled; + }); + + // Find the search params needed for patient compartment + const patientCompartmentSearchParams = {}; + compartmentPatient.resource.forEach(resource => { + if (resource.param) { + let compiledPaths = []; + resource.param.forEach(param => { + const pathsForThisParam = baseSearchParamsDict[`${resource.code}-${param}`].map(item => item.path); + compiledPaths = compiledPaths.concat(pathsForThisParam); + }); + patientCompartmentSearchParams[resource.code] = compiledPaths; + } + }); + return patientCompartmentSearchParams; +} + +const patientCompartmentSearchParamsV4 = extractPatientCompartmentSearchParams( + baseSearchParamsV4, + compartmentPatientV4, +); +const patientCompartmentSearchParamsV3 = extractPatientCompartmentSearchParams( + baseSearchParamsV3, + compartmentPatientV3, +); + +fs.writeFileSync( + './schema/patientCompartmentSearchParams.3.0.2.json', + JSON.stringify(patientCompartmentSearchParamsV3), +); +fs.writeFileSync( + './schema/patientCompartmentSearchParams.4.0.1.json', + JSON.stringify(patientCompartmentSearchParamsV4), +); + +console.log(patientCompartmentSearchParamsV4); +console.log(patientCompartmentSearchParamsV3); diff --git a/bulkExport/glueScripts/export-script.py b/bulkExport/glueScripts/export-script.py index 64eb59e0..f7dd4cbf 100644 --- a/bulkExport/glueScripts/export-script.py +++ b/bulkExport/glueScripts/export-script.py @@ -11,6 +11,7 @@ import sys import boto3 import re +import json from awsglue.transforms import * from awsglue.utils import getResolvedOptions from pyspark.context import SparkContext @@ -24,13 +25,24 @@ args = getResolvedOptions(sys.argv, ['JOB_NAME', 'jobId', 'exportType', 'transactionTime', 'since', 'outputFormat', 'ddbTableName', 'workerType', 'numberWorkers', 's3OutputBucket']) -# type and groupId are optional parameters +# type and tenantId are optional parameters type = None if ('--{}'.format('type') in sys.argv): type = getResolvedOptions(sys.argv, ['type'])['type'] groupId = None if ('--{}'.format('groupId') in sys.argv): groupId = getResolvedOptions(sys.argv, ['groupId'])['groupId'] +tenantId = None +if ('--{}'.format('tenantId') in sys.argv): + tenantId = getResolvedOptions(sys.argv, ['tenantId'])['tenantId'] + +# the following parameters are only needed for group export +group_id = None +if ('--{}'.format('groupId') in sys.argv): + group_id = getResolvedOptions(sys.argv, ['groupId'])['groupId'] + s3_script_bucket = getResolvedOptions(sys.argv, ['s3ScriptBucket'])['s3ScriptBucket'] + compartment_search_param_file = getResolvedOptions(sys.argv, ['compartmentSearchParamFile'])['compartmentSearchParamFile'] + server_url = getResolvedOptions(sys.argv, ['serverUrl'])['serverUrl'] job_id = args['jobId'] export_type = args['exportType'] @@ -60,30 +72,109 @@ } ) +print('Start filtering by tenantId') + +def remove_composite_id(resource): + # Replace the multi-tenant composite id with the original resource id found at "_id" + resource["id"] = resource["_id"] + return resource + +# Filter by tenantId +if (tenantId is None): + filtered_tenant_id_frame = original_data_source_dyn_frame +else: + filtered_tenant_id_frame_with_composite_id = Filter.apply(frame = original_data_source_dyn_frame, + f = lambda x: + x['_tenantId'] == tenantId) + + filtered_tenant_id_frame = Map.apply(frame = filtered_tenant_id_frame_with_composite_id, f = remove_composite_id) + print('Start filtering by transactionTime and Since') # Filter by transactionTime and Since datetime_since = datetime.strptime(since, "%Y-%m-%dT%H:%M:%S.%fZ") datetime_transaction_time = datetime.strptime(transaction_time, "%Y-%m-%dT%H:%M:%S.%fZ") -filtered_dates_dyn_frame = Filter.apply(frame = original_data_source_dyn_frame, +filtered_dates_dyn_frame = Filter.apply(frame = filtered_tenant_id_frame, f = lambda x: datetime.strptime(x["meta"]["lastUpdated"], "%Y-%m-%dT%H:%M:%S.%fZ") > datetime_since and datetime.strptime(x["meta"]["lastUpdated"], "%Y-%m-%dT%H:%M:%S.%fZ") <= datetime_transaction_time ) +print ('start filtering by group_id') +def is_active_group_member(member, datetime_transaction_time): + if getattr(member, 'inactive', None) == True: + return False + member_period = getattr(member, 'period', None) + if member_period != None: + end_date = getattr(member_period, 'end', None) + if end_date != None and datetime.strptime(end_date, "%Y-%m-%dT%H:%M:%S.%fZ") < datetime_transaction_time: + return False + return True + +def is_internal_reference(reference, server_url): + if reference.startswith(server_url): + reference = removeprefix(reference, server_url) + reference_split = reference.split('/') + if len(reference_split) == 2: + return True + return False + +def deep_get(resource, path): + if resource is None: + return None + if len(path) is 1: + return resource[path[0]]['reference'] + return deep_get(resource[path[0]], path.pop(0)) + +def is_included_in_group_export(resource, group_member_ids, group_patient_ids, compartment_search_params, server_url): + # Check if resource is part of the group + if resource['id'] in group_member_ids: + return True + # Check if resource is part of the patient compartment + if resource['resourceType'] in compartment_search_params: + # Get inclusion criteria paths for the resource + inclusion_paths = compartment_search_params[resource.resourceType] + for path in inclusion_paths: + reference = deep_get(resource, path.split(".")) + if is_internal_reference(reference, server_url) and reference.split('/')[-1] in group_patient_ids: + return True + return False + +if (group_id is None): + filtered_group_frame = filtered_dates_dyn_frame +else: + print('Loading patient compartment search params') + client = boto3.client('s3') + s3Obj = client.get_object(Bucket = s3_script_bucket, + Key = compartment_search_param_file) + compartment_search_params = json.load(s3Obj['Body']) + + print('Extract group member ids') + group_members = Filter.apply(frame = filtered_dates_dyn_frame, f = lambda x: x['id'] == group_id).toDF().collect()[0]['member'] + active_group_member_references = [x['entity']['reference'] for x in group_members if is_active_group_member(x, datetime_transaction_time) and is_internal_reference(x['entity']['reference'], server_url)] + group_member_ids = set([x.split('/')[-1] for x in active_group_member_references]) + group_patient_ids = set([x.split('/')[-1] for x in active_group_member_references if x.split('/')[-2] == 'Patient']) + print(group_member_ids) + print(group_patient_ids) + + print('Extract group member and patient compartment dataframe') + filtered_group_frame = Filter.apply(frame = filtered_dates_dyn_frame, f = lambda x: is_included_in_group_export(x, group_member_ids, group_patient_ids, compartment_search_params, server_url)) + + print('Start filtering by documentStatus and resourceType') # Filter by resource listed in Type and with correct STATUS type_list = None if type == None else set(type.split(',')) valid_document_state_to_be_read_from = {'AVAILABLE','LOCKED', 'PENDING_DELETE'} -filtered_dates_resource_dyn_frame = Filter.apply(frame = filtered_dates_dyn_frame, +filtered_dates_resource_dyn_frame = Filter.apply(frame = filtered_group_frame, f = lambda x: x["documentStatus"] in valid_document_state_to_be_read_from if type_list is None else x["documentStatus"] in valid_document_state_to_be_read_from and x["resourceType"] in type_list ) + # Drop fields that are not needed print('Dropping fields that are not needed') -data_source_cleaned_dyn_frame = DropFields.apply(frame = filtered_dates_resource_dyn_frame, paths = ['documentStatus', 'lockEndTs', 'vid', '_references']) +data_source_cleaned_dyn_frame = DropFields.apply(frame = filtered_dates_resource_dyn_frame, paths = ['documentStatus', 'lockEndTs', 'vid', '_references', '_tenantId', '_id']) def add_dup_resource_type(record): record["resourceTypeDup"] = record["resourceType"] @@ -124,7 +215,8 @@ def add_dup_resource_type(record): source_s3_file_path = item['Key'] match = re.search(regex_pattern, source_s3_file_path) new_s3_file_name = match.group(1) + "-" + match.group(2) + ".ndjson" - new_s3_file_path = job_id + '/' + new_s3_file_name + tenant_specific_path = '' if (tenantId is None) else tenantId + '/' + new_s3_file_path = tenant_specific_path + job_id + '/' + new_s3_file_name copy_source = { 'Bucket': bucket_name, diff --git a/bulkExport/schema/compartmentdefinition-patient.3.0.2.json b/bulkExport/schema/compartmentdefinition-patient.3.0.2.json new file mode 100644 index 00000000..3f8a0b45 --- /dev/null +++ b/bulkExport/schema/compartmentdefinition-patient.3.0.2.json @@ -0,0 +1,605 @@ +{ + "resourceType": "CompartmentDefinition", + "id": "patient", + "text": { + "status": "generated", + "div": "

\r\nThe following resources may be in this compartment:\r\n

\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
ResourceInclusion Criteria
Accountsubject
AdverseEventsubject
AllergyIntolerancepatient, recorder, asserter
Appointmentactor
AppointmentResponseactor
AuditEventpatient, agent.patient, entity.patient
Basicpatient, author
BodySitepatient
CarePlanpatient, performer
CareTeampatient, participant
ChargeItemsubject
Claimpatient, payee
ClaimResponsepatient
ClinicalImpressionsubject
Communicationsubject, sender, recipient
CommunicationRequestsubject, sender, recipient, requester
Compositionsubject, author, attester
Conditionpatient, asserter
Consentpatient
Coveragepolicy-holder, subscriber, beneficiary, payor
DetectedIssuepatient
DeviceRequestsubject, requester, performer
DeviceUseStatementsubject
DiagnosticReportsubject
DocumentManifestsubject, author, recipient
DocumentReferencesubject, author
EligibilityRequestpatient
Encounterpatient
EnrollmentRequestsubject
EpisodeOfCarepatient
ExplanationOfBenefitpatient, payee
FamilyMemberHistorypatient
Flagpatient
Goalpatient
Groupmember
ImagingManifestpatient, author
ImagingStudypatient
Immunizationpatient
ImmunizationRecommendationpatient
Listsubject, source
MeasureReportpatient
Mediasubject
MedicationAdministrationpatient, performer, subject
MedicationDispensesubject, patient, receiver
MedicationRequestsubject
MedicationStatementsubject
NutritionOrderpatient
Observationsubject, performer
Patientlink
Personpatient
Procedurepatient, performer
ProcedureRequestsubject, performer
Provenancetarget.subject, target.patient, patient
QuestionnaireResponsesubject, author
ReferralRequestpatient, requester
RelatedPersonpatient
RequestGroupsubject, participant
ResearchSubjectindividual
RiskAssessmentsubject
Scheduleactor
Specimensubject
SupplyDeliverypatient
SupplyRequestrequester
VisionPrescriptionpatient
\r\n

\r\nA resource is in this compartment if the nominated search parameter (or chain) refers to the patient resource that defines the compartment.\r\n

\r\n

\r\n\r\n

\r\n

\r\nThe following resources are never in this compartment:\r\n

\r\n
" + }, + "url": "http://hl7.org/fhir/CompartmentDefinition/patient", + "name": "Base FHIR compartment definition for Patient", + "status": "draft", + "experimental": true, + "date": "2017-04-19T07:44:43+10:00", + "publisher": "FHIR Project Team", + "contact": [ + { + "telecom": [ + { + "system": "url", + "value": "http://hl7.org/fhir" + } + ] + } + ], + "description": "There is an instance of the patient compartment for each patient resource, and the identity of the compartment is the same as the patient. When a patient is linked to another patient, all the records associated with the linked patient are in the compartment associated with the target of the link.. The set of resources associated with a particular patient", + "code": "Patient", + "search": true, + "resource": [ + { + "code": "Account", + "param": [ + "subject" + ] + }, + { + "code": "ActivityDefinition" + }, + { + "code": "AdverseEvent", + "param": [ + "subject" + ] + }, + { + "code": "AllergyIntolerance", + "param": [ + "patient", + "recorder", + "asserter" + ] + }, + { + "code": "Appointment", + "param": [ + "actor" + ] + }, + { + "code": "AppointmentResponse", + "param": [ + "actor" + ] + }, + { + "code": "AuditEvent", + "param": [ + "patient" + ] + }, + { + "code": "Basic", + "param": [ + "patient", + "author" + ] + }, + { + "code": "Binary" + }, + { + "code": "BodySite", + "param": [ + "patient" + ] + }, + { + "code": "Bundle" + }, + { + "code": "CapabilityStatement" + }, + { + "code": "CarePlan", + "param": [ + "patient", + "performer" + ] + }, + { + "code": "CareTeam", + "param": [ + "patient", + "participant" + ] + }, + { + "code": "ChargeItem", + "param": [ + "subject" + ] + }, + { + "code": "Claim", + "param": [ + "patient", + "payee" + ] + }, + { + "code": "ClaimResponse", + "param": [ + "patient" + ] + }, + { + "code": "ClinicalImpression", + "param": [ + "subject" + ] + }, + { + "code": "CodeSystem" + }, + { + "code": "Communication", + "param": [ + "subject", + "sender", + "recipient" + ] + }, + { + "code": "CommunicationRequest", + "param": [ + "subject", + "sender", + "recipient", + "requester" + ] + }, + { + "code": "CompartmentDefinition" + }, + { + "code": "Composition", + "param": [ + "subject", + "author", + "attester" + ] + }, + { + "code": "ConceptMap" + }, + { + "code": "Condition", + "param": [ + "patient", + "asserter" + ] + }, + { + "code": "Consent", + "param": [ + "patient" + ] + }, + { + "code": "Contract" + }, + { + "code": "Coverage", + "param": [ + "policy-holder", + "subscriber", + "beneficiary", + "payor" + ] + }, + { + "code": "DataElement" + }, + { + "code": "DetectedIssue", + "param": [ + "patient" + ] + }, + { + "code": "Device" + }, + { + "code": "DeviceComponent" + }, + { + "code": "DeviceMetric" + }, + { + "code": "DeviceRequest", + "param": [ + "subject", + "requester", + "performer" + ] + }, + { + "code": "DeviceUseStatement", + "param": [ + "subject" + ] + }, + { + "code": "DiagnosticReport", + "param": [ + "subject" + ] + }, + { + "code": "DocumentManifest", + "param": [ + "subject", + "author", + "recipient" + ] + }, + { + "code": "DocumentReference", + "param": [ + "subject", + "author" + ] + }, + { + "code": "EligibilityRequest", + "param": [ + "patient" + ] + }, + { + "code": "EligibilityResponse" + }, + { + "code": "Encounter", + "param": [ + "patient" + ] + }, + { + "code": "Endpoint" + }, + { + "code": "EnrollmentRequest", + "param": [ + "subject" + ] + }, + { + "code": "EnrollmentResponse" + }, + { + "code": "EpisodeOfCare", + "param": [ + "patient" + ] + }, + { + "code": "ExpansionProfile" + }, + { + "code": "ExplanationOfBenefit", + "param": [ + "patient", + "payee" + ] + }, + { + "code": "FamilyMemberHistory", + "param": [ + "patient" + ] + }, + { + "code": "Flag", + "param": [ + "patient" + ] + }, + { + "code": "Goal", + "param": [ + "patient" + ] + }, + { + "code": "GraphDefinition" + }, + { + "code": "Group", + "param": [ + "member" + ] + }, + { + "code": "GuidanceResponse" + }, + { + "code": "HealthcareService" + }, + { + "code": "ImagingManifest", + "param": [ + "patient", + "author" + ] + }, + { + "code": "ImagingStudy", + "param": [ + "patient" + ] + }, + { + "code": "Immunization", + "param": [ + "patient" + ] + }, + { + "code": "ImmunizationRecommendation", + "param": [ + "patient" + ] + }, + { + "code": "ImplementationGuide" + }, + { + "code": "Library" + }, + { + "code": "Linkage" + }, + { + "code": "List", + "param": [ + "subject", + "source" + ] + }, + { + "code": "Location" + }, + { + "code": "Measure" + }, + { + "code": "MeasureReport", + "param": [ + "patient" + ] + }, + { + "code": "Media", + "param": [ + "subject" + ] + }, + { + "code": "Medication" + }, + { + "code": "MedicationAdministration", + "param": [ + "patient", + "performer", + "subject" + ] + }, + { + "code": "MedicationDispense", + "param": [ + "subject", + "patient", + "receiver" + ] + }, + { + "code": "MedicationRequest", + "param": [ + "subject" + ] + }, + { + "code": "MedicationStatement", + "param": [ + "subject" + ] + }, + { + "code": "MessageDefinition" + }, + { + "code": "MessageHeader" + }, + { + "code": "NamingSystem" + }, + { + "code": "NutritionOrder", + "param": [ + "patient" + ] + }, + { + "code": "Observation", + "param": [ + "subject", + "performer" + ] + }, + { + "code": "OperationDefinition" + }, + { + "code": "OperationOutcome" + }, + { + "code": "Organization" + }, + { + "code": "Patient", + "param": [ + "link" + ] + }, + { + "code": "PaymentNotice" + }, + { + "code": "PaymentReconciliation" + }, + { + "code": "Person", + "param": [ + "patient" + ] + }, + { + "code": "PlanDefinition" + }, + { + "code": "Practitioner" + }, + { + "code": "PractitionerRole" + }, + { + "code": "Procedure", + "param": [ + "patient", + "performer" + ] + }, + { + "code": "ProcedureRequest", + "param": [ + "subject", + "performer" + ] + }, + { + "code": "ProcessRequest" + }, + { + "code": "ProcessResponse" + }, + { + "code": "Provenance", + "param": [ + "target", + "patient" + ] + }, + { + "code": "Questionnaire" + }, + { + "code": "QuestionnaireResponse", + "param": [ + "subject", + "author" + ] + }, + { + "code": "ReferralRequest", + "param": [ + "patient", + "requester" + ] + }, + { + "code": "RelatedPerson", + "param": [ + "patient" + ] + }, + { + "code": "RequestGroup", + "param": [ + "subject", + "participant" + ] + }, + { + "code": "ResearchStudy" + }, + { + "code": "ResearchSubject", + "param": [ + "individual" + ] + }, + { + "code": "RiskAssessment", + "param": [ + "subject" + ] + }, + { + "code": "Schedule", + "param": [ + "actor" + ] + }, + { + "code": "SearchParameter" + }, + { + "code": "Sequence" + }, + { + "code": "ServiceDefinition" + }, + { + "code": "Slot" + }, + { + "code": "Specimen", + "param": [ + "subject" + ] + }, + { + "code": "StructureDefinition" + }, + { + "code": "StructureMap" + }, + { + "code": "Subscription" + }, + { + "code": "Substance" + }, + { + "code": "SupplyDelivery", + "param": [ + "patient" + ] + }, + { + "code": "SupplyRequest", + "param": [ + "requester" + ] + }, + { + "code": "Task" + }, + { + "code": "TestReport" + }, + { + "code": "TestScript" + }, + { + "code": "ValueSet" + }, + { + "code": "VisionPrescription", + "param": [ + "patient" + ] + } + ] +} \ No newline at end of file diff --git a/bulkExport/schema/compartmentdefinition-patient.4.0.1.json b/bulkExport/schema/compartmentdefinition-patient.4.0.1.json new file mode 100644 index 00000000..9dfe2000 --- /dev/null +++ b/bulkExport/schema/compartmentdefinition-patient.4.0.1.json @@ -0,0 +1,559 @@ +{ + "resourceType" : "CompartmentDefinition", + "id" : "patient", + "text" : { + "status" : "generated", + "div" : "

\r\nThe following resources may be in this compartment:\r\n

\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
ResourceInclusion Criteria
Accountsubject
AdverseEventsubject
AllergyIntolerancepatient, recorder, asserter
Appointmentactor
AppointmentResponseactor
AuditEventpatient
Basicpatient, author
BodyStructurepatient
CarePlanpatient, performer
CareTeampatient, participant
ChargeItemsubject
Claimpatient, payee
ClaimResponsepatient
ClinicalImpressionsubject
Communicationsubject, sender, recipient
CommunicationRequestsubject, sender, recipient, requester
Compositionsubject, author, attester
Conditionpatient, asserter
Consentpatient
Coveragepolicy-holder, subscriber, beneficiary, payor
CoverageEligibilityRequestpatient
CoverageEligibilityResponsepatient
DetectedIssuepatient
DeviceRequestsubject, performer
DeviceUseStatementsubject
DiagnosticReportsubject
DocumentManifestsubject, author, recipient
DocumentReferencesubject, author
Encounterpatient
EnrollmentRequestsubject
EpisodeOfCarepatient
ExplanationOfBenefitpatient, payee
FamilyMemberHistorypatient
Flagpatient
Goalpatient
Groupmember
ImagingStudypatient
Immunizationpatient
ImmunizationEvaluationpatient
ImmunizationRecommendationpatient
Invoicesubject, patient, recipient
Listsubject, source
MeasureReportpatient
Mediasubject
MedicationAdministrationpatient, performer, subject
MedicationDispensesubject, patient, receiver
MedicationRequestsubject
MedicationStatementsubject
MolecularSequencepatient
NutritionOrderpatient
Observationsubject, performer
Patientlink
Personpatient
Procedurepatient, performer
Provenancepatient
QuestionnaireResponsesubject, author
RelatedPersonpatient
RequestGroupsubject, participant
ResearchSubjectindividual
RiskAssessmentsubject
Scheduleactor
ServiceRequestsubject, performer
Specimensubject
SupplyDeliverypatient
SupplyRequestsubject
VisionPrescriptionpatient
\r\n

\r\nA resource is in this compartment if the nominated search parameter (or chain) refers to the patient resource that defines the compartment.\r\n

\r\n

\r\n\r\n

\r\n

\r\nThe following resources are never in this compartment:\r\n

\r\n
" + }, + "url" : "http://hl7.org/fhir/CompartmentDefinition/patient", + "version" : "4.0.1", + "name" : "Base FHIR compartment definition for Patient", + "status" : "draft", + "experimental" : true, + "date" : "2019-11-01T09:29:23+11:00", + "publisher" : "FHIR Project Team", + "contact" : [{ + "telecom" : [{ + "system" : "url", + "value" : "http://hl7.org/fhir" + }] + }], + "description" : "There is an instance of the patient compartment for each patient resource, and the identity of the compartment is the same as the patient. When a patient is linked to another patient, all the records associated with the linked patient are in the compartment associated with the target of the link.. The set of resources associated with a particular patient", + "code" : "Patient", + "search" : true, + "resource" : [{ + "code" : "Account", + "param" : ["subject"] + }, + { + "code" : "ActivityDefinition" + }, + { + "code" : "AdverseEvent", + "param" : ["subject"] + }, + { + "code" : "AllergyIntolerance", + "param" : ["patient", + "recorder", + "asserter"] + }, + { + "code" : "Appointment", + "param" : ["actor"] + }, + { + "code" : "AppointmentResponse", + "param" : ["actor"] + }, + { + "code" : "AuditEvent", + "param" : ["patient"] + }, + { + "code" : "Basic", + "param" : ["patient", + "author"] + }, + { + "code" : "Binary" + }, + { + "code" : "BiologicallyDerivedProduct" + }, + { + "code" : "BodyStructure", + "param" : ["patient"] + }, + { + "code" : "Bundle" + }, + { + "code" : "CapabilityStatement" + }, + { + "code" : "CarePlan", + "param" : ["patient", + "performer"] + }, + { + "code" : "CareTeam", + "param" : ["patient", + "participant"] + }, + { + "code" : "CatalogEntry" + }, + { + "code" : "ChargeItem", + "param" : ["subject"] + }, + { + "code" : "ChargeItemDefinition" + }, + { + "code" : "Claim", + "param" : ["patient", + "payee"] + }, + { + "code" : "ClaimResponse", + "param" : ["patient"] + }, + { + "code" : "ClinicalImpression", + "param" : ["subject"] + }, + { + "code" : "CodeSystem" + }, + { + "code" : "Communication", + "param" : ["subject", + "sender", + "recipient"] + }, + { + "code" : "CommunicationRequest", + "param" : ["subject", + "sender", + "recipient", + "requester"] + }, + { + "code" : "CompartmentDefinition" + }, + { + "code" : "Composition", + "param" : ["subject", + "author", + "attester"] + }, + { + "code" : "ConceptMap" + }, + { + "code" : "Condition", + "param" : ["patient", + "asserter"] + }, + { + "code" : "Consent", + "param" : ["patient"] + }, + { + "code" : "Contract" + }, + { + "code" : "Coverage", + "param" : ["policy-holder", + "subscriber", + "beneficiary", + "payor"] + }, + { + "code" : "CoverageEligibilityRequest", + "param" : ["patient"] + }, + { + "code" : "CoverageEligibilityResponse", + "param" : ["patient"] + }, + { + "code" : "DetectedIssue", + "param" : ["patient"] + }, + { + "code" : "Device" + }, + { + "code" : "DeviceDefinition" + }, + { + "code" : "DeviceMetric" + }, + { + "code" : "DeviceRequest", + "param" : ["subject", + "performer"] + }, + { + "code" : "DeviceUseStatement", + "param" : ["subject"] + }, + { + "code" : "DiagnosticReport", + "param" : ["subject"] + }, + { + "code" : "DocumentManifest", + "param" : ["subject", + "author", + "recipient"] + }, + { + "code" : "DocumentReference", + "param" : ["subject", + "author"] + }, + { + "code" : "EffectEvidenceSynthesis" + }, + { + "code" : "Encounter", + "param" : ["patient"] + }, + { + "code" : "Endpoint" + }, + { + "code" : "EnrollmentRequest", + "param" : ["subject"] + }, + { + "code" : "EnrollmentResponse" + }, + { + "code" : "EpisodeOfCare", + "param" : ["patient"] + }, + { + "code" : "EventDefinition" + }, + { + "code" : "Evidence" + }, + { + "code" : "EvidenceVariable" + }, + { + "code" : "ExampleScenario" + }, + { + "code" : "ExplanationOfBenefit", + "param" : ["patient", + "payee"] + }, + { + "code" : "FamilyMemberHistory", + "param" : ["patient"] + }, + { + "code" : "Flag", + "param" : ["patient"] + }, + { + "code" : "Goal", + "param" : ["patient"] + }, + { + "code" : "GraphDefinition" + }, + { + "code" : "Group", + "param" : ["member"] + }, + { + "code" : "GuidanceResponse" + }, + { + "code" : "HealthcareService" + }, + { + "code" : "ImagingStudy", + "param" : ["patient"] + }, + { + "code" : "Immunization", + "param" : ["patient"] + }, + { + "code" : "ImmunizationEvaluation", + "param" : ["patient"] + }, + { + "code" : "ImmunizationRecommendation", + "param" : ["patient"] + }, + { + "code" : "ImplementationGuide" + }, + { + "code" : "InsurancePlan" + }, + { + "code" : "Invoice", + "param" : ["subject", + "patient", + "recipient"] + }, + { + "code" : "Library" + }, + { + "code" : "Linkage" + }, + { + "code" : "List", + "param" : ["subject", + "source"] + }, + { + "code" : "Location" + }, + { + "code" : "Measure" + }, + { + "code" : "MeasureReport", + "param" : ["patient"] + }, + { + "code" : "Media", + "param" : ["subject"] + }, + { + "code" : "Medication" + }, + { + "code" : "MedicationAdministration", + "param" : ["patient", + "performer", + "subject"] + }, + { + "code" : "MedicationDispense", + "param" : ["subject", + "patient", + "receiver"] + }, + { + "code" : "MedicationKnowledge" + }, + { + "code" : "MedicationRequest", + "param" : ["subject"] + }, + { + "code" : "MedicationStatement", + "param" : ["subject"] + }, + { + "code" : "MedicinalProduct" + }, + { + "code" : "MedicinalProductAuthorization" + }, + { + "code" : "MedicinalProductContraindication" + }, + { + "code" : "MedicinalProductIndication" + }, + { + "code" : "MedicinalProductIngredient" + }, + { + "code" : "MedicinalProductInteraction" + }, + { + "code" : "MedicinalProductManufactured" + }, + { + "code" : "MedicinalProductPackaged" + }, + { + "code" : "MedicinalProductPharmaceutical" + }, + { + "code" : "MedicinalProductUndesirableEffect" + }, + { + "code" : "MessageDefinition" + }, + { + "code" : "MessageHeader" + }, + { + "code" : "MolecularSequence", + "param" : ["patient"] + }, + { + "code" : "NamingSystem" + }, + { + "code" : "NutritionOrder", + "param" : ["patient"] + }, + { + "code" : "Observation", + "param" : ["subject", + "performer"] + }, + { + "code" : "ObservationDefinition" + }, + { + "code" : "OperationDefinition" + }, + { + "code" : "OperationOutcome" + }, + { + "code" : "Organization" + }, + { + "code" : "OrganizationAffiliation" + }, + { + "code" : "Patient", + "param" : ["link"] + }, + { + "code" : "PaymentNotice" + }, + { + "code" : "PaymentReconciliation" + }, + { + "code" : "Person", + "param" : ["patient"] + }, + { + "code" : "PlanDefinition" + }, + { + "code" : "Practitioner" + }, + { + "code" : "PractitionerRole" + }, + { + "code" : "Procedure", + "param" : ["patient", + "performer"] + }, + { + "code" : "Provenance", + "param" : ["patient"] + }, + { + "code" : "Questionnaire" + }, + { + "code" : "QuestionnaireResponse", + "param" : ["subject", + "author"] + }, + { + "code" : "RelatedPerson", + "param" : ["patient"] + }, + { + "code" : "RequestGroup", + "param" : ["subject", + "participant"] + }, + { + "code" : "ResearchDefinition" + }, + { + "code" : "ResearchElementDefinition" + }, + { + "code" : "ResearchStudy" + }, + { + "code" : "ResearchSubject", + "param" : ["individual"] + }, + { + "code" : "RiskAssessment", + "param" : ["subject"] + }, + { + "code" : "RiskEvidenceSynthesis" + }, + { + "code" : "Schedule", + "param" : ["actor"] + }, + { + "code" : "SearchParameter" + }, + { + "code" : "ServiceRequest", + "param" : ["subject", + "performer"] + }, + { + "code" : "Slot" + }, + { + "code" : "Specimen", + "param" : ["subject"] + }, + { + "code" : "SpecimenDefinition" + }, + { + "code" : "StructureDefinition" + }, + { + "code" : "StructureMap" + }, + { + "code" : "Subscription" + }, + { + "code" : "Substance" + }, + { + "code" : "SubstanceNucleicAcid" + }, + { + "code" : "SubstancePolymer" + }, + { + "code" : "SubstanceProtein" + }, + { + "code" : "SubstanceReferenceInformation" + }, + { + "code" : "SubstanceSourceMaterial" + }, + { + "code" : "SubstanceSpecification" + }, + { + "code" : "SupplyDelivery", + "param" : ["patient"] + }, + { + "code" : "SupplyRequest", + "param" : ["subject"] + }, + { + "code" : "Task" + }, + { + "code" : "TerminologyCapabilities" + }, + { + "code" : "TestReport" + }, + { + "code" : "TestScript" + }, + { + "code" : "ValueSet" + }, + { + "code" : "VerificationResult" + }, + { + "code" : "VisionPrescription", + "param" : ["patient"] + }] +} \ No newline at end of file diff --git a/bulkExport/schema/patientCompartmentSearchParams.3.0.2.json b/bulkExport/schema/patientCompartmentSearchParams.3.0.2.json new file mode 100644 index 00000000..894781ab --- /dev/null +++ b/bulkExport/schema/patientCompartmentSearchParams.3.0.2.json @@ -0,0 +1 @@ +{"Account":["subject"],"AdverseEvent":["subject"],"AllergyIntolerance":["patient","recorder","asserter"],"Appointment":["participant.actor"],"AppointmentResponse":["actor"],"AuditEvent":["agent.reference","entity.reference"],"Basic":["subject","author"],"BodySite":["patient"],"CarePlan":["subject","activity.detail.performer"],"CareTeam":["subject","participant.member"],"ChargeItem":["subject"],"Claim":["patient","payee.party"],"ClaimResponse":["patient"],"ClinicalImpression":["subject"],"Communication":["subject","sender","recipient"],"CommunicationRequest":["subject","sender","recipient","requester.agent"],"Composition":["subject","author","attester.party"],"Condition":["subject","asserter"],"Consent":["patient"],"Coverage":["policyHolder","subscriber","beneficiary","payor"],"DetectedIssue":["patient"],"DeviceRequest":["subject","requester.agent","performer"],"DeviceUseStatement":["subject"],"DiagnosticReport":["subject"],"DocumentManifest":["subject","author","recipient"],"DocumentReference":["subject","author"],"EligibilityRequest":["patient"],"Encounter":["subject"],"EnrollmentRequest":["subject"],"EpisodeOfCare":["patient"],"ExplanationOfBenefit":["patient","payee.party"],"FamilyMemberHistory":["patient"],"Flag":["subject"],"Goal":["subject"],"Group":["member.entity"],"ImagingManifest":["patient","author"],"ImagingStudy":["patient"],"Immunization":["patient"],"ImmunizationRecommendation":["patient"],"List":["subject","source"],"MeasureReport":["patient"],"Media":["subject"],"MedicationAdministration":["subject","performer.actor","subject"],"MedicationDispense":["subject","subject","receiver"],"MedicationRequest":["subject"],"MedicationStatement":["subject"],"NutritionOrder":["patient"],"Observation":["subject","performer"],"Patient":["link.other"],"Person":["link.target"],"Procedure":["subject","performer.actor"],"ProcedureRequest":["subject","performer"],"Provenance":["target","target"],"QuestionnaireResponse":["subject","author"],"ReferralRequest":["subject","requester.agent"],"RelatedPerson":["patient"],"RequestGroup":["subject","action.participant"],"ResearchSubject":["individual"],"RiskAssessment":["subject"],"Schedule":["actor"],"Specimen":["subject"],"SupplyDelivery":["patient"],"SupplyRequest":["requester.agent"],"VisionPrescription":["patient"]} \ No newline at end of file diff --git a/bulkExport/schema/patientCompartmentSearchParams.4.0.1.json b/bulkExport/schema/patientCompartmentSearchParams.4.0.1.json new file mode 100644 index 00000000..ffddab5c --- /dev/null +++ b/bulkExport/schema/patientCompartmentSearchParams.4.0.1.json @@ -0,0 +1 @@ +{"Account":["subject"],"AdverseEvent":["subject"],"AllergyIntolerance":["patient","recorder","asserter"],"Appointment":["participant.actor"],"AppointmentResponse":["actor"],"AuditEvent":["agent.who","entity.what"],"Basic":["subject","author"],"BodyStructure":["patient"],"CarePlan":["subject","activity.detail.performer"],"CareTeam":["subject","participant.member"],"ChargeItem":["subject"],"Claim":["patient","payee.party"],"ClaimResponse":["patient"],"ClinicalImpression":["subject"],"Communication":["subject","sender","recipient"],"CommunicationRequest":["subject","sender","recipient","requester"],"Composition":["subject","author","attester.party"],"Condition":["subject","asserter"],"Consent":["patient"],"Coverage":["policyHolder","subscriber","beneficiary","payor"],"CoverageEligibilityRequest":["patient"],"CoverageEligibilityResponse":["patient"],"DetectedIssue":["patient"],"DeviceRequest":["subject","performer"],"DeviceUseStatement":["subject"],"DiagnosticReport":["subject"],"DocumentManifest":["subject","author","recipient"],"DocumentReference":["subject","author"],"Encounter":["subject"],"EnrollmentRequest":["candidate"],"EpisodeOfCare":["patient"],"ExplanationOfBenefit":["patient","payee.party"],"FamilyMemberHistory":["patient"],"Flag":["subject"],"Goal":["subject"],"Group":["member.entity"],"ImagingStudy":["subject"],"Immunization":["patient"],"ImmunizationEvaluation":["patient"],"ImmunizationRecommendation":["patient"],"Invoice":["subject","subject","recipient"],"List":["subject","source"],"MeasureReport":["subject"],"Media":["subject"],"MedicationAdministration":["subject","performer.actor","subject"],"MedicationDispense":["subject","subject","receiver"],"MedicationRequest":["subject"],"MedicationStatement":["subject"],"MolecularSequence":["patient"],"NutritionOrder":["patient"],"Observation":["subject","performer"],"Patient":["link.other"],"Person":["link.target"],"Procedure":["subject","performer.actor"],"Provenance":["target"],"QuestionnaireResponse":["subject","author"],"RelatedPerson":["patient"],"RequestGroup":["subject","action.participant"],"ResearchSubject":["individual"],"RiskAssessment":["subject"],"Schedule":["actor"],"ServiceRequest":["subject","performer"],"Specimen":["subject"],"SupplyDelivery":["patient"],"SupplyRequest":["deliverTo"],"VisionPrescription":["patient"]} \ No newline at end of file diff --git a/bulkExport/state-machine-definition.yaml b/bulkExport/state-machine-definition.yaml index 7342fb41..9256c92b 100644 --- a/bulkExport/state-machine-definition.yaml +++ b/bulkExport/state-machine-definition.yaml @@ -27,21 +27,21 @@ definition: updateStatusToFailed: Type: Task Resource: !GetAtt updateStatus.Arn - Parameters: {"jobId.$":"$.jobId", "status": "failed"} + Parameters: {"globalParams.$":"$", "status": "failed"} Retry: - ErrorEquals: [ "States.ALL" ] End: true updateStatusToCanceled: Type: Task Resource: !GetAtt updateStatus.Arn - Parameters: {"jobId.$":"$.jobId", "status": "canceled"} + Parameters: {"globalParams.$":"$", "status": "canceled"} Retry: - ErrorEquals: [ "States.ALL" ] End: true updateStatusToCompleted: Type: Task Resource: !GetAtt updateStatus.Arn - Parameters: {"jobId.$":"$.jobId", "status": "completed"} + Parameters: {"globalParams.$":"$", "status": "completed"} Retry: - ErrorEquals: [ "States.ALL" ] End: true diff --git a/bulkExport/uploadGlueScriptsToS3.ts b/bulkExport/uploadGlueScriptsToS3.ts index f16f76be..ff4f3d8e 100644 --- a/bulkExport/uploadGlueScriptsToS3.ts +++ b/bulkExport/uploadGlueScriptsToS3.ts @@ -33,28 +33,49 @@ exports.handler = async (event: any) => { throw new Error('Missing env variable GLUE_SCRIPTS_BUCKET'); } const s3 = new AWS.S3(); - const filename = 'export-script.py'; - const path = `bulkExport/glueScripts/${filename}`; + + const filenameAndPath = [ + { filename: 'export-script.py', path: 'bulkExport/glueScripts/export-script.py' }, + { + filename: 'patientCompartmentSearchParams.3.0.2.json', + path: 'bulkExport/schema/patientCompartmentSearchParams.3.0.2.json', + }, + { + filename: 'patientCompartmentSearchParams.4.0.1.json', + path: 'bulkExport/schema/patientCompartmentSearchParams.4.0.1.json', + }, + ]; if (event.RequestType === 'Create' || event.RequestType === 'Update') { - console.log(`uploading ${filename} to ${process.env.GLUE_SCRIPTS_BUCKET}`); - await s3 - .putObject({ - Bucket: process.env.GLUE_SCRIPTS_BUCKET, - Body: fs.readFileSync(path), - Key: filename, - }) - .promise(); - console.log('upload successful'); + await Promise.all( + filenameAndPath.map(entry => { + console.log(`uploading ${entry.filename} to ${process.env.GLUE_SCRIPTS_BUCKET}`); + // @ts-ignore + return s3 + .putObject({ + Bucket: process.env.GLUE_SCRIPTS_BUCKET, + Body: fs.readFileSync(entry.path), + Key: entry.filename, + }) + .promise(); + }), + ); + console.log(`upload successful`); await sendCfnResponse(event, 'SUCCESS'); } else { console.log('Deleting files from s3'); - await s3 - .deleteObject({ - Bucket: process.env.GLUE_SCRIPTS_BUCKET, - Key: filename, - }) - .promise(); + await Promise.all( + filenameAndPath.map(entry => { + console.log(`uploading ${entry.filename} to ${process.env.GLUE_SCRIPTS_BUCKET}`); + // @ts-ignore + return s3 + .deleteObject({ + Bucket: process.env.GLUE_SCRIPTS_BUCKET, + Key: entry.filename, + }) + .promise(); + }), + ); await sendCfnResponse(event, 'SUCCESS'); } } catch (e) { diff --git a/cloudformation/bulkExport.yaml b/cloudformation/bulkExport.yaml index 3929558b..06f2e8d7 100644 --- a/cloudformation/bulkExport.yaml +++ b/cloudformation/bulkExport.yaml @@ -167,13 +167,20 @@ Resources: Name: glueetl PythonVersion: '3' ExecutionProperty: - MaxConcurrentRuns: 2 + MaxConcurrentRuns: + !If + - isMultiTenancyEnabled + # Adjust this number based on the number of tenants. + # The default throttling on fhir-works-on-aws-persistence-ddb allows 2 concurrent export jobs per tenant + - 30 + - 2 DefaultArguments: '--TempDir': !Join ['', ['s3://', !Ref BulkExportResultsBucket, '/temp']] '--ddbTableName': '${self:custom.resourceTableName}' '--workerType': !Ref ExportGlueWorkerType '--numberWorkers': !Ref ExportGlueNumberWorkers '--s3OutputBucket': !Ref BulkExportResultsBucket + '--s3ScriptBucket': !Ref GlueScriptsBucket '--enable-metrics': 'true' '--enable-continuous-cloudwatch-log': 'true' '--enable-continuous-log-filter': 'true' diff --git a/cloudformation/cognito.yaml b/cloudformation/cognito.yaml index 4984a400..de8fb5eb 100644 --- a/cloudformation/cognito.yaml +++ b/cloudformation/cognito.yaml @@ -22,6 +22,8 @@ Resources: Required: true - AttributeDataType: String Name: cc_confirmed + - AttributeDataType: String + Name: tenantId UserPoolClient: Type: AWS::Cognito::UserPoolClient Properties: diff --git a/integration-tests/bulkExport.test.ts b/integration-tests/bulkExport.test.ts index aa3e0002..c304ea45 100644 --- a/integration-tests/bulkExport.test.ts +++ b/integration-tests/bulkExport.test.ts @@ -4,10 +4,15 @@ */ import BulkExportTestHelper, { ExportStatusOutput } from './bulkExportTestHelper'; import { getFhirClient } from './utils'; +import createGroupMembersBundle from './createGroupMembersBundle.json'; const FIVE_MINUTES_IN_MS = 5 * 60 * 1000; jest.setTimeout(FIVE_MINUTES_IN_MS); +const sleep = async (milliseconds: number) => { + return new Promise(resolve => setTimeout(resolve, milliseconds)); +}; + describe('Bulk Export', () => { let bulkExportTestHelper: BulkExportTestHelper; @@ -21,6 +26,8 @@ describe('Bulk Export', () => { // BUILD const oldCreatedResourceBundleResponse = await bulkExportTestHelper.sendCreateResourcesRequest(); const resTypToResNotExpectedInExport = bulkExportTestHelper.getResources(oldCreatedResourceBundleResponse); + // sleep 30 seconds to make tests more resilient to clock skew when running locally. + await sleep(30_000); const currentTime = new Date(); const newCreatedResourceBundleResponse = await bulkExportTestHelper.sendCreateResourcesRequest(); const resTypToResExpectedInExport = bulkExportTestHelper.getResources(newCreatedResourceBundleResponse); @@ -64,4 +71,66 @@ describe('Bulk Export', () => { // CHECK return bulkExportTestHelper.getExportStatus(statusPollUrl, 'Export job has been canceled'); }); + + test('Successfully export a group and patient compartment', async () => { + // BUILD + const createdResourceBundleResponse = await bulkExportTestHelper.sendCreateGroupRequest(); + const resTypToResExpectedInExport = bulkExportTestHelper.getResources( + createdResourceBundleResponse, + createGroupMembersBundle, + true, + ); + + // OPERATE + const groupMembersAndPatientCompartment = Object.fromEntries( + Object.entries(resTypToResExpectedInExport).filter(([key]) => key !== 'Group'), + ); + const groupId = resTypToResExpectedInExport.Group.id; + const statusPollUrl = await bulkExportTestHelper.startExportJob({ exportType: 'group', groupId }); + const responseBody = await bulkExportTestHelper.getExportStatus(statusPollUrl); + + // CHECK + return bulkExportTestHelper.checkResourceInExportedFiles( + responseBody.output, + groupMembersAndPatientCompartment, + ); + }); + + test('Does not include inactive members in group export', async () => { + // BUILD + const createdResourceBundleResponse = await bulkExportTestHelper.sendCreateGroupRequest({ inactive: true }); + const resTypToResExpectedInExport = bulkExportTestHelper.getResources( + createdResourceBundleResponse, + createGroupMembersBundle, + true, + ); + + // OPERATE + const groupId = resTypToResExpectedInExport.Group.id; + const statusPollUrl = await bulkExportTestHelper.startExportJob({ exportType: 'group', groupId }); + const responseBody = await bulkExportTestHelper.getExportStatus(statusPollUrl); + + // CHECK + return expect(responseBody.output.length).toEqual(0); + }); + + test('Does not include members with expired membership in group export', async () => { + // BUILD + const createdResourceBundleResponse = await bulkExportTestHelper.sendCreateGroupRequest({ + period: { start: '1992-02-01T00:00:00.000Z', end: '2020-03-04T00:00:00.000Z' }, + }); + const resTypToResExpectedInExport = bulkExportTestHelper.getResources( + createdResourceBundleResponse, + createGroupMembersBundle, + true, + ); + + // OPERATE + const groupId = resTypToResExpectedInExport.Group.id; + const statusPollUrl = await bulkExportTestHelper.startExportJob({ exportType: 'group', groupId }); + const responseBody = await bulkExportTestHelper.getExportStatus(statusPollUrl); + + // CHECK + return expect(responseBody.output.length).toEqual(0); + }); }); diff --git a/integration-tests/bulkExportTestHelper.ts b/integration-tests/bulkExportTestHelper.ts index 5716e557..005c5ed5 100644 --- a/integration-tests/bulkExportTestHelper.ts +++ b/integration-tests/bulkExportTestHelper.ts @@ -8,6 +8,9 @@ import axios, { AxiosInstance } from 'axios'; import { cloneDeep, groupBy, mapValues } from 'lodash'; import createBundle from './createPatientPractitionerEncounterBundle.json'; +import createGroupMembersBundle from './createGroupMembersBundle.json'; + +export type ExportType = 'system' | 'group'; export interface ExportStatusOutput { url: string; @@ -17,10 +20,20 @@ export interface ExportStatusOutput { export interface StartExportJobParam { since?: Date; type?: string; + groupId?: string; + exportType?: ExportType; +} + +export interface GroupMemberMeta { + period?: { + start?: string; + end?: string; + }; + inactive?: boolean; } export default class BulkExportTestHelper { - THREE_MINUTES_IN_MS = 3 * 60 * 1000; + FIVE_MINUTES_IN_MS = 5 * 60 * 1000; fhirUserAxios: AxiosInstance; @@ -42,7 +55,12 @@ export default class BulkExportTestHelper { params._type = startExportJobParam.type; } - const response = await this.fhirUserAxios.get('/$export', { params }); + let url = '/$export'; + if (startExportJobParam.exportType === 'group') { + url = `/Group/${startExportJobParam.groupId}/$export`; + } + + const response = await this.fhirUserAxios.get(url, { params }); const statusPollUrl = response.headers['content-location']; console.log('statusPollUrl', statusPollUrl); return statusPollUrl; @@ -62,8 +80,8 @@ export default class BulkExportTestHelper { } async getExportStatus(statusPollUrl: string, expectedSubstring = ''): Promise { - const threeMinuteFromNow = new Date(new Date().getTime() + this.THREE_MINUTES_IN_MS); - while (new Date().getTime() < threeMinuteFromNow.getTime()) { + const fiveMinuteFromNow = new Date(new Date().getTime() + this.FIVE_MINUTES_IN_MS); + while (new Date().getTime() < fiveMinuteFromNow.getTime()) { try { console.log('Checking export status'); // eslint-disable-next-line no-await-in-loop @@ -81,7 +99,7 @@ export default class BulkExportTestHelper { } } throw new Error( - `Expected export status did not occur during polling time frame of ${this.THREE_MINUTES_IN_MS / + `Expected export status did not occur during polling time frame of ${this.FIVE_MINUTES_IN_MS / 1000} seconds`, ); } @@ -97,6 +115,33 @@ export default class BulkExportTestHelper { } } + async sendCreateGroupRequest(groupMemberMeta?: GroupMemberMeta) { + try { + const createGroupBundle = cloneDeep(createGroupMembersBundle); + + // Create group members with metadata + const group = createGroupBundle.entry.filter(entry => entry.resource.resourceType === 'Group')[0].resource; + const groupMemberReferences: string[] = createGroupBundle.entry + .filter(entry => ['Patient', 'Practitioner'].includes(entry.resource.resourceType)) + .map(entry => entry.fullUrl); + group.member = groupMemberReferences.map(reference => ({ + entity: { reference }, + ...groupMemberMeta, + })) as any[]; + + const response = await this.fhirUserAxios.post('/', createGroupBundle); + + console.log( + 'Successfully sent create group resource request to FHIR server', + JSON.stringify(response.data), + ); + return response.data; + } catch (e) { + console.log('Failed to preload group data into DB', e); + throw new Error(e); + } + } + // This method does not require FHIR user credentials in the header because the url is an S3 presigned URL static async downloadFile(url: string): Promise { try { @@ -112,9 +157,14 @@ export default class BulkExportTestHelper { } } - getResources(bundleResponse: any): Record { - const resources = []; - const clonedCreatedBundle = cloneDeep(createBundle); + getResources( + bundleResponse: any, + originalBundle: any = createBundle, + swapBundleInternalReference: boolean = false, + ): Record { + let resources = []; + const clonedCreatedBundle = cloneDeep(originalBundle); + const urlToReferenceList = []; for (let i = 0; i < bundleResponse.entry.length; i += 1) { const res: any = clonedCreatedBundle.entry[i].resource; const bundleResponseEntry = bundleResponse.entry[i]; @@ -126,9 +176,21 @@ export default class BulkExportTestHelper { versionId: bundleResponseEntry.response.etag, }; resources.push(res); + urlToReferenceList.push({ url: clonedCreatedBundle.entry[i].fullUrl, reference: `${resourceType}/${id}` }); + } + // If internal reference was used in bundle creation, swap it to resource reference + if (swapBundleInternalReference) { + let resourcesString = JSON.stringify(resources); + urlToReferenceList.forEach(item => { + resourcesString = resourcesString.replace( + `"reference":"${item.url}"`, + `"reference":"${item.reference}"`, + ); + }); + resources = JSON.parse(resourcesString); } const resourceTypeToExpectedResource: Record = {}; - resources.forEach(res => { + resources.forEach((res: { resourceType: string }) => { resourceTypeToExpectedResource[res.resourceType] = res; }); return resourceTypeToExpectedResource; diff --git a/integration-tests/createGroupMembersBundle.json b/integration-tests/createGroupMembersBundle.json new file mode 100644 index 00000000..619f7a57 --- /dev/null +++ b/integration-tests/createGroupMembersBundle.json @@ -0,0 +1,88 @@ +{ + "resourceType": "Bundle", + "type": "transaction", + "entry": + [ + { + "fullUrl": "urn:uuid:fcfe413c-c62d-4097-9e31-02ff6ff523ad", + "resource": + { + "resourceType": "Patient", + "name": + [ + { + "family": "Escobedo608", + "given": + [ + "Cristina921" + ] + } + ] + }, + "request": + { + "method": "POST", + "url": "Patient" + } + }, + { + "fullUrl": "urn:uuid:e0352b49-8798-398c-8f10-2fc0648a268a", + "resource": + { + "resourceType": "Practitioner", + "name": + [ + { + "family": "Fernández399", + "given": + [ + "Julia241" + ] + } + ] + }, + "request": + { + "method": "POST", + "url": "Practitioner" + } + }, + { + "fullUrl": "urn:uuid:fcfe413c-c62d-4097-9e31-02ff6ff545bc", + "resource": + { + "resourceType": "Group", + "type": "person", + "actual": true, + "member": ["something"] + }, + "request": + { + "method": "POST", + "url": "Group" + } + }, + { + "fullUrl": "urn:uuid:6ad9a6b5-44fb-4eae-9544-a36d5c05c058", + "resource": + { + "resourceType": "Encounter", + "status": "finished", + "class": + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB" + }, + "subject": + { + "reference": "urn:uuid:fcfe413c-c62d-4097-9e31-02ff6ff523ad" + } + }, + "request": + { + "method": "POST", + "url": "Encounter" + } + } + ] +} \ No newline at end of file diff --git a/integration-tests/multitenancy.test.ts b/integration-tests/multitenancy.test.ts new file mode 100644 index 00000000..ec8c045d --- /dev/null +++ b/integration-tests/multitenancy.test.ts @@ -0,0 +1,200 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0 * + */ + +import { AxiosInstance } from 'axios'; +import { + expectResourceToNotBePartOfSearchResults, + getFhirClient, + randomPatient, + waitForResourceToBeSearchable, +} from './utils'; +import BulkExportTestHelper from './bulkExportTestHelper'; + +jest.setTimeout(300_000); + +test('empty test placeholder', () => { + // empty test to avoid the "Your test suite must contain at least one test." error +}); + +if (process.env.MULTI_TENANCY_ENABLED === 'true') { + describe('tenant data isolation', () => { + let client: AxiosInstance; + let clientForAnotherTenant: AxiosInstance; + beforeAll(async () => { + client = await getFhirClient({ tenant: 'tenant1' }); + clientForAnotherTenant = await getFhirClient({ tenant: 'tenant2' }); + }); + + test('tenant cannot READ resources from another tenant', async () => { + const testPatient: ReturnType = (await client.post('Patient', randomPatient())).data; + + await expect(clientForAnotherTenant.get(`Patient/${testPatient.id}`)).rejects.toMatchObject({ + response: { status: 404 }, + }); + }); + + test('tenant cannot UPDATE resources from another tenant', async () => { + const testPatient: ReturnType = (await client.post('Patient', randomPatient())).data; + + await expect(clientForAnotherTenant.put(`Patient/${testPatient.id}`, testPatient)).rejects.toMatchObject({ + response: { status: 404 }, + }); + }); + + test('tenant cannot DELETE resources from another tenant', async () => { + const testPatient: ReturnType = (await client.post('Patient', randomPatient())).data; + + await expect(clientForAnotherTenant.delete(`Patient/${testPatient.id}`)).rejects.toMatchObject({ + response: { status: 404 }, + }); + }); + + test('tenant cannot SEARCH resources from another tenant', async () => { + const testPatient: ReturnType = (await client.post('Patient', randomPatient())).data; + + await waitForResourceToBeSearchable(client, testPatient); + + await expectResourceToNotBePartOfSearchResults( + clientForAnotherTenant, + { url: 'Patient', params: { _id: testPatient.id } }, + testPatient, + ); + }); + + test('tenant cannot SEARCH _include or _revinclude resources from another tenant', async () => { + const testOrganization = { + resourceType: 'Organization', + name: 'Some Organization', + }; + + const testOrganizationResource = (await client.post('Organization', testOrganization)).data; + + const testPatientWithRelativeReferenceToOrg: ReturnType = ( + await clientForAnotherTenant.post('Patient', { + ...randomPatient(), + managingOrganization: { + reference: `Organization/${testOrganizationResource.id}`, + }, + }) + ).data; + + const testPatientWithAbsoluteReferenceToOrg: ReturnType = ( + await clientForAnotherTenant.post('Patient', { + ...randomPatient(), + managingOrganization: { + reference: `${process.env.API_URL}/tenant/tenant1/Organization/${testOrganizationResource.id}`, + }, + }) + ).data; + + await waitForResourceToBeSearchable(clientForAnotherTenant, testPatientWithAbsoluteReferenceToOrg); + + await expectResourceToNotBePartOfSearchResults( + clientForAnotherTenant, + { url: 'Patient', params: { _id: testPatientWithRelativeReferenceToOrg.id, _include: '*' } }, + testOrganizationResource, + ); + + await expectResourceToNotBePartOfSearchResults( + clientForAnotherTenant, + { url: 'Patient', params: { _id: testPatientWithAbsoluteReferenceToOrg.id, _include: '*' } }, + testOrganizationResource, + ); + + await expectResourceToNotBePartOfSearchResults( + client, + { url: 'Organization', params: { _id: testOrganizationResource.id, _revinclude: '*' } }, + testPatientWithAbsoluteReferenceToOrg, + ); + + await expectResourceToNotBePartOfSearchResults( + client, + { url: 'Organization', params: { _id: testOrganizationResource.id, _revinclude: '*' } }, + testPatientWithRelativeReferenceToOrg, + ); + }); + + test('tenant cannot EXPORT resources from another tenant', async () => { + const testPatient: ReturnType = (await client.post('Patient', randomPatient())).data; + const bulkExportTestHelper = new BulkExportTestHelper(clientForAnotherTenant); + + const testPatientFromAnotherTenant: ReturnType = ( + await clientForAnotherTenant.post('Patient', randomPatient()) + ).data; + + const statusPollUrl = await bulkExportTestHelper.startExportJob({ + since: new Date(Date.now() - 600_000), + }); + const responseBody = await bulkExportTestHelper.getExportStatus(statusPollUrl); + + const expectedResources = { Patient: testPatientFromAnotherTenant }; + const notExpectedResources = { Patient: testPatient }; + + return bulkExportTestHelper.checkResourceInExportedFiles( + responseBody.output, + expectedResources, + notExpectedResources, + ); + }); + }); + + describe('routing', () => { + let client: AxiosInstance; + beforeAll(async () => { + client = await getFhirClient({ tenant: 'tenant1' }); + }); + test('requests without /tenant/ in path should fail', async () => { + await expect(client.get(`${process.env.API_URL}/Patient`)).rejects.toMatchObject({ + response: { status: 404 }, + }); + + await expect(client.get(`${process.env.API_URL}/Patient/123`)).rejects.toMatchObject({ + response: { status: 404 }, + }); + + await expect(client.post(`${process.env.API_URL}/Patient/123`)).rejects.toMatchObject({ + response: { status: 404 }, + }); + + await expect(client.put(`${process.env.API_URL}/Patient/123`)).rejects.toMatchObject({ + response: { status: 404 }, + }); + + await expect(client.delete(`${process.env.API_URL}/Patient/123`)).rejects.toMatchObject({ + response: { status: 404 }, + }); + }); + + test('requests with tenantId in path different from the tenantId in access token should fail', async () => { + await expect(client.get(`${process.env.API_URL}/tenant/anotherTenantId/Patient`)).rejects.toMatchObject({ + response: { status: 401 }, + }); + + await expect(client.get(`${process.env.API_URL}/tenant/anotherTenantId/Patient/123`)).rejects.toMatchObject( + { + response: { status: 401 }, + }, + ); + + await expect( + client.post(`${process.env.API_URL}/tenant/anotherTenantId/Patient/123`), + ).rejects.toMatchObject({ + response: { status: 401 }, + }); + + await expect(client.put(`${process.env.API_URL}/tenant/anotherTenantId/Patient/123`)).rejects.toMatchObject( + { + response: { status: 401 }, + }, + ); + + await expect( + client.delete(`${process.env.API_URL}/tenant/anotherTenantId/Patient/123`), + ).rejects.toMatchObject({ + response: { status: 401 }, + }); + }); + }); +} diff --git a/integration-tests/rbac-permission.test.ts b/integration-tests/rbac-permission.test.ts index 999b1be5..44212b97 100644 --- a/integration-tests/rbac-permission.test.ts +++ b/integration-tests/rbac-permission.test.ts @@ -3,7 +3,7 @@ import { getFhirClient, randomPatient } from './utils'; jest.setTimeout(60 * 1000); test('practitioner role can create new patient', async () => { - const client = await getFhirClient('practitioner'); + const client = await getFhirClient({ role: 'practitioner' }); const patientRecord: any = randomPatient(); delete patientRecord.id; await expect(client.post('Patient', patientRecord)).resolves.toMatchObject({ @@ -14,14 +14,14 @@ test('practitioner role can create new patient', async () => { describe('Negative tests', () => { test('invalid token', async () => { - const client = await getFhirClient('practitioner', 'Invalid token'); + const client = await getFhirClient({ role: 'practitioner', providedAccessToken: 'Invalid token' }); await expect(client.post('Patient', randomPatient())).rejects.toMatchObject({ response: { status: 401 }, }); }); test('auditor role cannot create new patient record', async () => { - const client = await getFhirClient('auditor'); + const client = await getFhirClient({ role: 'auditor' }); await expect(client.post('Patient', randomPatient())).rejects.toMatchObject({ response: { status: 401 }, }); diff --git a/integration-tests/utils.ts b/integration-tests/utils.ts index f1d4e34c..83bb952d 100644 --- a/integration-tests/utils.ts +++ b/integration-tests/utils.ts @@ -7,21 +7,76 @@ import * as AWS from 'aws-sdk'; import axios, { AxiosInstance } from 'axios'; import { Chance } from 'chance'; import qs from 'qs'; +import { decode } from 'jsonwebtoken'; import waitForExpect from 'wait-for-expect'; -export const getFhirClient = async ( - role: 'auditor' | 'practitioner' = 'practitioner', - providedAccessToken?: string, +const DEFAULT_TENANT_ID = 'tenant1'; + +const getAuthParameters: (role: string, tenantId: string) => { PASSWORD: string; USERNAME: string } = ( + role: string, + tenantId: string, ) => { const { - API_URL, - API_KEY, - API_AWS_REGION, COGNITO_USERNAME_PRACTITIONER, COGNITO_USERNAME_AUDITOR, COGNITO_PASSWORD, - COGNITO_CLIENT_ID, + COGNITO_USERNAME_PRACTITIONER_ANOTHER_TENANT, + MULTI_TENANCY_ENABLED, } = process.env; + + if (COGNITO_USERNAME_PRACTITIONER === undefined) { + throw new Error('COGNITO_USERNAME_PRACTITIONER environment variable is not defined'); + } + if (COGNITO_USERNAME_AUDITOR === undefined) { + throw new Error('COGNITO_USERNAME_AUDITOR environment variable is not defined'); + } + if (COGNITO_PASSWORD === undefined) { + throw new Error('COGNITO_PASSWORD environment variable is not defined'); + } + + if (MULTI_TENANCY_ENABLED === 'true') { + if (COGNITO_USERNAME_PRACTITIONER_ANOTHER_TENANT === undefined) { + throw new Error('COGNITO_USERNAME_PRACTITIONER_ANOTHER_TENANT environment variable is not defined'); + } + } + + // for simplicity the different test users have the same password + const password = COGNITO_PASSWORD; + let username: string | undefined; + switch (role) { + case 'practitioner': + if (tenantId === undefined || tenantId === DEFAULT_TENANT_ID) { + username = COGNITO_USERNAME_PRACTITIONER; + break; + } + if (tenantId === 'tenant2') { + username = COGNITO_USERNAME_PRACTITIONER_ANOTHER_TENANT!; + break; + } + break; + case 'auditor': + username = COGNITO_USERNAME_AUDITOR; + break; + default: + break; + } + + if (username === undefined) { + throw new Error('Could not find a username. Did you set up the integ tests correctly'); + } + + return { + USERNAME: username, + PASSWORD: password, + }; +}; + +export const getFhirClient = async ({ + role = 'practitioner', + providedAccessToken, + tenant = 'tenant1', +}: { role?: 'auditor' | 'practitioner'; providedAccessToken?: string; tenant?: string } = {}) => { + const { API_URL, API_KEY, API_AWS_REGION, COGNITO_CLIENT_ID, MULTI_TENANCY_ENABLED } = process.env; if (API_URL === undefined) { throw new Error('API_URL environment variable is not defined'); } @@ -34,37 +89,46 @@ export const getFhirClient = async ( if (COGNITO_CLIENT_ID === undefined) { throw new Error('COGNITO_CLIENT_ID environment variable is not defined'); } - if (COGNITO_USERNAME_PRACTITIONER === undefined) { - throw new Error('COGNITO_USERNAME_PRACTITIONER environment variable is not defined'); - } - if (COGNITO_USERNAME_AUDITOR === undefined) { - throw new Error('COGNITO_USERNAME_AUDITOR environment variable is not defined'); - } - if (COGNITO_PASSWORD === undefined) { - throw new Error('COGNITO_PASSWORD environment variable is not defined'); - } AWS.config.update({ region: API_AWS_REGION }); const Cognito = new AWS.CognitoIdentityServiceProvider(); - const accessToken = + const IdToken = providedAccessToken ?? ( await Cognito.initiateAuth({ ClientId: COGNITO_CLIENT_ID, AuthFlow: 'USER_PASSWORD_AUTH', - AuthParameters: { - USERNAME: role === 'auditor' ? COGNITO_USERNAME_AUDITOR : COGNITO_USERNAME_PRACTITIONER, - PASSWORD: COGNITO_PASSWORD, - }, + AuthParameters: getAuthParameters(role, tenant), }).promise() - ).AuthenticationResult!.AccessToken; + ).AuthenticationResult!.IdToken!; + + let baseURL = API_URL; + + if (MULTI_TENANCY_ENABLED === 'true') { + const decoded = decode(IdToken) as any; + let tenantIdFromToken; + if (!decoded) { + // This only happens when the jwt token is invalid. + tenantIdFromToken = DEFAULT_TENANT_ID; + } else { + tenantIdFromToken = decoded['custom:tenantId']; + } + if (!tenantIdFromToken) { + throw new Error( + 'Attempted to run multi-tenancy tests but the tenantId is not present in the token. Did you set up the integ tests correctly?', + ); + } + + baseURL = `${API_URL}/tenant/${tenantIdFromToken}`; + } + return axios.create({ headers: { 'x-api-key': API_KEY, - Authorization: `Bearer ${accessToken}`, + Authorization: `Bearer ${IdToken}`, }, - baseURL: API_URL, + baseURL, }); }; diff --git a/package.json b/package.json index 0b462f26..0426f588 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "build": "tsc", "watch": "tsc -w", "test": "jest --silent --passWithNoTests --testPathPattern=src/*", - "int-test": "jest --testPathPattern=integration-test/*", + "int-test": "jest --testPathPattern=integration-test/* --runInBand", "test-coverage": "jest --coverage", "release": "yarn run build && yarn run lint && yarn run test", "clean": "rm -rf build/* node_modules/* dist/* .serverless/* .nyc_output/*", @@ -34,11 +34,11 @@ "dependencies": { "aws-sdk": "^2.785.0", "axios": "^0.21.1", - "fhir-works-on-aws-authz-rbac": "4.1.1", - "fhir-works-on-aws-interface": "9.1.0", - "fhir-works-on-aws-persistence-ddb": "3.6.1", - "fhir-works-on-aws-routing": "5.4.4", - "fhir-works-on-aws-search-es": "3.2.1", + "fhir-works-on-aws-authz-rbac": "5.0.0", + "fhir-works-on-aws-interface": "10.0.0", + "fhir-works-on-aws-persistence-ddb": "3.7.0", + "fhir-works-on-aws-routing": "6.0.0", + "fhir-works-on-aws-search-es": "3.3.0", "serverless-http": "^2.3.1", "yargs": "^16.2.0" }, @@ -46,6 +46,7 @@ "@types/chance": "^1.1.1", "@types/express": "^4.17.2", "@types/jest": "^26.0.19", + "@types/jsonwebtoken": "^8.5.4", "@types/node": "^12", "@types/sinon": "^9.0.0", "@typescript-eslint/eslint-plugin": "^4.11.1", @@ -59,6 +60,7 @@ "jest": "^26.6.3", "jest-circus": "^26.6.3", "jest-mock-extended": "^1.0.8", + "jsonwebtoken": "^8.5.1", "lodash": "^4.17.21", "prettier": "^1.19.1", "qs": "^6.10.1", diff --git a/postman/Fhir.postman_collection.json b/postman/Fhir.postman_collection.json index fa05f01b..9590d18f 100644 --- a/postman/Fhir.postman_collection.json +++ b/postman/Fhir.postman_collection.json @@ -1,91264 +1,53072 @@ { - "info": { - "_postman_id": "b8585f4e-8681-476a-8c41-0ef7f5623c13", - "name": "FHIR Examples", - "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" - }, - "item": [ - { - "name": "Bundle", - "request": { - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - }, - "method": "POST", - "header": [ - { - "key": "x-api-key", - "type": "text", - "value": "{{API_KEY}}" - }, - { - "key": "Content-Type", - "type": "text", - "value": "application/json" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:8cafa46d-08b4-4ee4-b51b-803e20ae8126\",\n \"resource\": {\n \"resourceType\": \"Patient\",\n \"name\": [\n {\n \"family\": \"Jameson\",\n \"given\": [\n \"Matt\"\n ]\n }\n ],\n \"gender\": \"male\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Patient\"\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"Patient\",\n \"name\": [\n {\n \"family\": \"Smith\",\n \"given\": [\n \"John\"\n ]\n }\n ],\n \"gender\": \"male\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Patient\"\n }\n }\n ]\n}\n", - "options": { - "raw": { - "language": "json" - } - } - }, - "url": { - "raw": "{{API_URL}}", - "host": [ - "{{API_URL}}" - ] - } - }, - "response": [] - }, - { - "name": "GET Metadata", - "request": { - "auth": { - "type": "noauth" - }, - "method": "GET", - "header": [], - "url": { - "raw": "{{API_URL}}/metadata", - "host": [ - "{{API_URL}}" - ], - "path": [ - "metadata" - ] - } - }, - "response": [] - }, - { - "name": "Account", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "AccountHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Account/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Account", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AccountHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Account/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Account", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "AccountById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Account/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Account", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AccountById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Account\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eHACC Funded Billing for Peter James Chalmers\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:oid:0.1.2.3.4.5.6.7\",\n \"value\": \"654321\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"PBILLACCT\",\n \"display\": \"patient billing account\"\n }\n ],\n \"text\": \"patient\"\n },\n \"name\": \"HACC Funded Billing for Peter James Chalmers\",\n \"subject\": [\n {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n ],\n \"servicePeriod\": {\n \"start\": \"2016-01-01\",\n \"end\": \"2016-06-30\"\n },\n \"coverage\": [\n {\n \"coverage\": {\n \"reference\": \"Coverage/7546D\"\n },\n \"priority\": 1\n }\n ],\n \"owner\": {\n \"reference\": \"Organization/hl7\"\n },\n \"description\": \"Hospital charges\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Account/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Account", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AccountById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Account/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Account", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Account_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Account\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eHACC Funded Billing for Peter James Chalmers\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:oid:0.1.2.3.4.5.6.7\",\n \"value\": \"654321\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"PBILLACCT\",\n \"display\": \"patient billing account\"\n }\n ],\n \"text\": \"patient\"\n },\n \"name\": \"HACC Funded Billing for Peter James Chalmers\",\n \"subject\": [\n {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n ],\n \"servicePeriod\": {\n \"start\": \"2016-01-01\",\n \"end\": \"2016-06-30\"\n },\n \"coverage\": [\n {\n \"coverage\": {\n \"reference\": \"Coverage/7546D\"\n },\n \"priority\": 1\n }\n ],\n \"owner\": {\n \"reference\": \"Organization/hl7\"\n },\n \"description\": \"Hospital charges\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Account", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Account" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Account_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Account?owner=&patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&balance=&identifier=&name=&period=&status=&type=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Account" - ], - "query": [ - { - "key": "owner", - "value": "", - "description": "Who is responsible?" - }, - { - "key": "patient", - "value": "", - "description": "What is account tied to?" - }, - { - "key": "subject", - "value": "", - "description": "What is account tied to?" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "balance", - "value": "", - "description": "How much is in account?" - }, - { - "key": "identifier", - "value": "", - "description": "Account number" - }, - { - "key": "name", - "value": "", - "description": "Human-readable label" - }, - { - "key": "period", - "value": "", - "description": "Transaction window" - }, - { - "key": "status", - "value": "", - "description": "active | inactive | entered-in-error" - }, - { - "key": "type", - "value": "", - "description": "E.g. patient, expense, depreciation" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AccountHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Account/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Account", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Activity Definition", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ActivityDefinitionHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ActivityDefinition/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ActivityDefinition", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ActivityDefinitionHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ActivityDefinition/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ActivityDefinition", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ActivityDefinitionById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ActivityDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ActivityDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ActivityDefinitionById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ActivityDefinition\",\n \"id\": \"referralPrimaryCareMentalHealth\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eActivityDefinition/referralPrimaryCareMentalHealth\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003edraft\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDescription: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003erefer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eCategory: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003ereferral\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eCode: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eReferral to service (procedure)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e306206005\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eParticipant: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003epractitioner\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://motivemi.com/artifacts/ActivityDefinition/referralPrimaryCareMentalHealth\",\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://motivemi.com/artifacts\",\n \"value\": \"referralPrimaryCareMentalHealth\"\n }\n ],\n \"version\": \"1.1.0\",\n \"name\": \"ReferralPrimaryCareMentalHealth\",\n \"title\": \"Referral to Primary Care Mental Health\",\n \"status\": \"active\",\n \"experimental\": true,\n \"date\": \"2017-03-03T14:06:00Z\",\n \"publisher\": \"Motive Medical Intelligence\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"description\": \"refer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"https://meshb.nlm.nih.gov\",\n \"code\": \"D000328\",\n \"display\": \"Adult\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"87512008\",\n \"display\": \"Mild major depression\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40379007\",\n \"display\": \"Major depression, recurrent, mild\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"225444004\",\n \"display\": \"At risk for suicide (finding)\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"306206005\",\n \"display\": \"Referral to service (procedure)\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"user\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"309343006\",\n \"display\": \"Physician\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"venue\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"440655000\",\n \"display\": \"Outpatient environment\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"Defines a referral to a mental-health integrated care program for use in suicide risk order sets. The definition is independent of the order set in which it appears to allow reuse of the general definition of the referrral.\",\n \"usage\": \"This activity definition is used as the definition of a referral request within various suicide risk order sets. Elements that apply universally are defined here, while elements that apply to the specific setting of a referral within a particular order set are defined in the order set.\",\n \"copyright\": \"© Copyright 2016 Motive Medical Intelligence. All rights reserved.\",\n \"approvalDate\": \"2017-03-01\",\n \"lastReviewDate\": \"2017-03-01\",\n \"effectivePeriod\": {\n \"start\": \"2017-03-01\",\n \"end\": \"2017-12-31\"\n },\n \"topic\": [\n {\n \"text\": \"Mental Health Referral\"\n }\n ],\n \"author\": [\n {\n \"name\": \"Motive Medical Intelligence\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"citation\",\n \"display\": \"Practice Guideline for the Treatment of Patients with Major Depressive Disorder\",\n \"url\": \"http://psychiatryonline.org/pb/assets/raw/sitewide/practice_guidelines/guidelines/mdd.pdf\"\n },\n {\n \"type\": \"predecessor\",\n \"resource\": \"ActivityDefinition/referralPrimaryCareMentalHealth-initial\"\n }\n ],\n \"kind\": \"ServiceRequest\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"306206005\"\n }\n ],\n \"text\": \"Referral to service (procedure)\"\n },\n \"timingTiming\": {\n \"_event\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/cqf-expression\",\n \"valueExpression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Now()\"\n }\n }\n ]\n }\n ]\n },\n \"participant\": [\n {\n \"type\": \"practitioner\"\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/ActivityDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ActivityDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ActivityDefinitionById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ActivityDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ActivityDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ActivityDefinition_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ActivityDefinition\",\n \"id\": \"referralPrimaryCareMentalHealth\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eActivityDefinition/referralPrimaryCareMentalHealth\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003edraft\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDescription: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003erefer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eCategory: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003ereferral\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eCode: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eReferral to service (procedure)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e306206005\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eParticipant: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003epractitioner\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://motivemi.com/artifacts/ActivityDefinition/referralPrimaryCareMentalHealth\",\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://motivemi.com/artifacts\",\n \"value\": \"referralPrimaryCareMentalHealth\"\n }\n ],\n \"version\": \"1.1.0\",\n \"name\": \"ReferralPrimaryCareMentalHealth\",\n \"title\": \"Referral to Primary Care Mental Health\",\n \"status\": \"active\",\n \"experimental\": true,\n \"date\": \"2017-03-03T14:06:00Z\",\n \"publisher\": \"Motive Medical Intelligence\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"description\": \"refer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"https://meshb.nlm.nih.gov\",\n \"code\": \"D000328\",\n \"display\": \"Adult\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"87512008\",\n \"display\": \"Mild major depression\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40379007\",\n \"display\": \"Major depression, recurrent, mild\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"225444004\",\n \"display\": \"At risk for suicide (finding)\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"306206005\",\n \"display\": \"Referral to service (procedure)\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"user\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"309343006\",\n \"display\": \"Physician\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"venue\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"440655000\",\n \"display\": \"Outpatient environment\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"Defines a referral to a mental-health integrated care program for use in suicide risk order sets. The definition is independent of the order set in which it appears to allow reuse of the general definition of the referrral.\",\n \"usage\": \"This activity definition is used as the definition of a referral request within various suicide risk order sets. Elements that apply universally are defined here, while elements that apply to the specific setting of a referral within a particular order set are defined in the order set.\",\n \"copyright\": \"© Copyright 2016 Motive Medical Intelligence. All rights reserved.\",\n \"approvalDate\": \"2017-03-01\",\n \"lastReviewDate\": \"2017-03-01\",\n \"effectivePeriod\": {\n \"start\": \"2017-03-01\",\n \"end\": \"2017-12-31\"\n },\n \"topic\": [\n {\n \"text\": \"Mental Health Referral\"\n }\n ],\n \"author\": [\n {\n \"name\": \"Motive Medical Intelligence\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"citation\",\n \"display\": \"Practice Guideline for the Treatment of Patients with Major Depressive Disorder\",\n \"url\": \"http://psychiatryonline.org/pb/assets/raw/sitewide/practice_guidelines/guidelines/mdd.pdf\"\n },\n {\n \"type\": \"predecessor\",\n \"resource\": \"ActivityDefinition/referralPrimaryCareMentalHealth-initial\"\n }\n ],\n \"kind\": \"ServiceRequest\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"306206005\"\n }\n ],\n \"text\": \"Referral to service (procedure)\"\n },\n \"timingTiming\": {\n \"_event\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/cqf-expression\",\n \"valueExpression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Now()\"\n }\n }\n ]\n }\n ]\n },\n \"participant\": [\n {\n \"type\": \"practitioner\"\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/ActivityDefinition", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ActivityDefinition" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ActivityDefinition_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ActivityDefinition?composed-of=&depends-on=&derived-from=&predecessor=&successor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&effective=&identifier=&jurisdiction=&name=&publisher=&status=&title=&topic=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ActivityDefinition" - ], - "query": [ - { - "key": "composed-of", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "depends-on", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "derived-from", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "predecessor", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "successor", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "The activity definition publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the activity definition" - }, - { - "key": "effective", - "value": "", - "description": "The time during which the activity definition is intended to be in use" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the activity definition" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the activity definition" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the activity definition" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the activity definition" - }, - { - "key": "status", - "value": "", - "description": "The current status of the activity definition" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the activity definition" - }, - { - "key": "topic", - "value": "", - "description": "Topics associated with the module" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the activity definition" - }, - { - "key": "version", - "value": "", - "description": "The business version of the activity definition" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ActivityDefinitionHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ActivityDefinition/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ActivityDefinition", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Adverse Event", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "AdverseEventHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AdverseEvent/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AdverseEvent", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AdverseEventHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AdverseEvent/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AdverseEvent", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "AdverseEventById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AdverseEvent/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AdverseEvent", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AdverseEventById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"AdverseEvent\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 49476534\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eactuality\\u003c/b\\u003e: actual\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Product Use Error \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/adverse-event-category code \\u0027product-use-error\\u0027 \\u003d \\u0027Product Use Error\\u0027, given as \\u0027Product Use Error\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eevent\\u003c/b\\u003e: This was a mild rash on the left forearm \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027304386008\\u0027 \\u003d \\u0027O/E - itchy rash\\u0027, given as \\u0027O/E - itchy rash\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 29/01/2017 12:34:56 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseriousness\\u003c/b\\u003e: Non-serious \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/adverse-event-seriousness code \\u0027Non-serious\\u0027 \\u003d \\u0027Non-serious\\u0027, given as \\u0027Non-serious\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseverity\\u003c/b\\u003e: Mild \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/adverse-event-severity code \\u0027mild\\u0027 \\u003d \\u0027Mild\\u0027, given as \\u0027Mild\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erecorder\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eSuspectEntities\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eInstance\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eMedication/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": {\n \"system\": \"http://acme.com/ids/patients/risks\",\n \"value\": \"49476534\"\n },\n \"actuality\": \"actual\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adverse-event-category\",\n \"code\": \"product-use-error\",\n \"display\": \"Product Use Error\"\n }\n ]\n }\n ],\n \"event\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"304386008\",\n \"display\": \"O/E - itchy rash\"\n }\n ],\n \"text\": \"This was a mild rash on the left forearm\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"date\": \"2017-01-29T12:34:56+00:00\",\n \"seriousness\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adverse-event-seriousness\",\n \"code\": \"Non-serious\",\n \"display\": \"Non-serious\"\n }\n ]\n },\n \"severity\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adverse-event-severity\",\n \"code\": \"mild\",\n \"display\": \"Mild\"\n }\n ]\n },\n \"recorder\": {\n \"reference\": \"Practitioner/example\"\n },\n \"suspectEntity\": [\n {\n \"instance\": {\n \"reference\": \"Medication/example\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/AdverseEvent/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AdverseEvent", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AdverseEventById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AdverseEvent/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AdverseEvent", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "AdverseEvent_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"AdverseEvent\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 49476534\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eactuality\\u003c/b\\u003e: actual\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Product Use Error \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/adverse-event-category code \\u0027product-use-error\\u0027 \\u003d \\u0027Product Use Error\\u0027, given as \\u0027Product Use Error\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eevent\\u003c/b\\u003e: This was a mild rash on the left forearm \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027304386008\\u0027 \\u003d \\u0027O/E - itchy rash\\u0027, given as \\u0027O/E - itchy rash\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 29/01/2017 12:34:56 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseriousness\\u003c/b\\u003e: Non-serious \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/adverse-event-seriousness code \\u0027Non-serious\\u0027 \\u003d \\u0027Non-serious\\u0027, given as \\u0027Non-serious\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseverity\\u003c/b\\u003e: Mild \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/adverse-event-severity code \\u0027mild\\u0027 \\u003d \\u0027Mild\\u0027, given as \\u0027Mild\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erecorder\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eSuspectEntities\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eInstance\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eMedication/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": {\n \"system\": \"http://acme.com/ids/patients/risks\",\n \"value\": \"49476534\"\n },\n \"actuality\": \"actual\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adverse-event-category\",\n \"code\": \"product-use-error\",\n \"display\": \"Product Use Error\"\n }\n ]\n }\n ],\n \"event\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"304386008\",\n \"display\": \"O/E - itchy rash\"\n }\n ],\n \"text\": \"This was a mild rash on the left forearm\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"date\": \"2017-01-29T12:34:56+00:00\",\n \"seriousness\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adverse-event-seriousness\",\n \"code\": \"Non-serious\",\n \"display\": \"Non-serious\"\n }\n ]\n },\n \"severity\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adverse-event-severity\",\n \"code\": \"mild\",\n \"display\": \"Mild\"\n }\n ]\n },\n \"recorder\": {\n \"reference\": \"Practitioner/example\"\n },\n \"suspectEntity\": [\n {\n \"instance\": {\n \"reference\": \"Medication/example\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/AdverseEvent", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AdverseEvent" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AdverseEvent_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AdverseEvent?location=&reaction=&recorder=&study=&subject=&substance=&_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&date=&seriousness=&type=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AdverseEvent" - ], - "query": [ - { - "key": "location", - "value": "", - "description": "Location where adverse event occurred" - }, - { - "key": "reaction", - "value": "", - "description": "Adverse Reaction Events linked to exposure to substance" - }, - { - "key": "recorder", - "value": "", - "description": "Who recorded the adverse event" - }, - { - "key": "study", - "value": "", - "description": "AdverseEvent.study" - }, - { - "key": "subject", - "value": "", - "description": "Subject or group impacted by event" - }, - { - "key": "substance", - "value": "", - "description": "Refers to the specific entity that caused the adverse event" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "category", - "value": "", - "description": "AE | PAE \rAn adverse event is an event that caused harm to a patient, an adverse reaction is a something that is a subject-specific event that is a result of an exposure to a medication, food, device or environmental substance, a potential adverse event is something that occurred and that could have caused harm to a patient but did not" - }, - { - "key": "date", - "value": "", - "description": "When the event occurred" - }, - { - "key": "seriousness", - "value": "", - "description": "Mild | Moderate | Severe" - }, - { - "key": "type", - "value": "", - "description": "actual | potential" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AdverseEventHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AdverseEvent/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AdverseEvent", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Allergy Intolerance", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "AllergyIntoleranceHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AllergyIntolerance/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AllergyIntolerance", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AllergyIntoleranceHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AllergyIntolerance/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AllergyIntolerance", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "AllergyIntoleranceById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AllergyIntolerance/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AllergyIntolerance", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AllergyIntoleranceById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 49476534\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eclinicalStatus\\u003c/b\\u003e: Active \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical code \\u0027active\\u0027 \\u003d \\u0027Active\\u0027, given as \\u0027Active\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003everificationStatus\\u003c/b\\u003e: Confirmed \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/allergyintolerance-verification code \\u0027confirmed\\u0027 \\u003d \\u0027Confirmed\\u0027, given as \\u0027Confirmed\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: allergy\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: food\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecriticality\\u003c/b\\u003e: high\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Cashew nuts \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027227493005\\u0027 \\u003d \\u0027Cashew nuts\\u0027, given as \\u0027Cashew nuts\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epatient\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eonset\\u003c/b\\u003e: 01/01/2004\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erecordedDate\\u003c/b\\u003e: 09/10/2014 2:58:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erecorder\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003easserter\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elastOccurrence\\u003c/b\\u003e: 01/06/2012\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: The criticality is high becasue of the observed anaphylactic reaction when challenged with cashew extract.\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003ereaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubstance\\u003c/b\\u003e: cashew nut allergenic extract Injectable Product \\u003cspan\\u003e(Details : {RxNorm code \\u00271160593\\u0027 \\u003d \\u0027cashew nut allergenic extract Injectable Product\\u0027, given as \\u0027cashew nut allergenic extract Injectable Product\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emanifestation\\u003c/b\\u003e: Anaphylactic reaction \\u003cspan\\u003e(Details : {SNOMED CT code \\u002739579001\\u0027 \\u003d \\u0027Anaphylaxis\\u0027, given as \\u0027Anaphylactic reaction\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Challenge Protocol. Severe reaction to subcutaneous cashew extract. Epinephrine administered\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eonset\\u003c/b\\u003e: 12/06/2012\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseverity\\u003c/b\\u003e: severe\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexposureRoute\\u003c/b\\u003e: Subcutaneous route \\u003cspan\\u003e(Details : {SNOMED CT code \\u002734206005\\u0027 \\u003d \\u0027Subcutaneous route\\u0027, given as \\u0027Subcutaneous route\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003ereaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emanifestation\\u003c/b\\u003e: Urticaria \\u003cspan\\u003e(Details : {SNOMED CT code \\u002764305001\\u0027 \\u003d \\u0027Urticaria\\u0027, given as \\u0027Urticaria\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eonset\\u003c/b\\u003e: 01/01/2004\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseverity\\u003c/b\\u003e: moderate\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: The patient reports that the onset of urticaria was within 15 minutes of eating cashews.\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://acme.com/ids/patients/risks\",\n \"value\": \"49476534\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"type\": \"allergy\",\n \"category\": [\n \"food\"\n ],\n \"criticality\": \"high\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"227493005\",\n \"display\": \"Cashew nuts\"\n }\n ]\n },\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"onsetDateTime\": \"2004\",\n \"recordedDate\": \"2014-10-09T14:58:00+11:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/example\"\n },\n \"asserter\": {\n \"reference\": \"Patient/example\"\n },\n \"lastOccurrence\": \"2012-06\",\n \"note\": [\n {\n \"text\": \"The criticality is high becasue of the observed anaphylactic reaction when challenged with cashew extract.\"\n }\n ],\n \"reaction\": [\n {\n \"substance\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"1160593\",\n \"display\": \"cashew nut allergenic extract Injectable Product\"\n }\n ]\n },\n \"manifestation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"39579001\",\n \"display\": \"Anaphylactic reaction\"\n }\n ]\n }\n ],\n \"description\": \"Challenge Protocol. Severe reaction to subcutaneous cashew extract. Epinephrine administered\",\n \"onset\": \"2012-06-12\",\n \"severity\": \"severe\",\n \"exposureRoute\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"34206005\",\n \"display\": \"Subcutaneous route\"\n }\n ]\n }\n },\n {\n \"manifestation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"64305001\",\n \"display\": \"Urticaria\"\n }\n ]\n }\n ],\n \"onset\": \"2004\",\n \"severity\": \"moderate\",\n \"note\": [\n {\n \"text\": \"The patient reports that the onset of urticaria was within 15 minutes of eating cashews.\"\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/AllergyIntolerance/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AllergyIntolerance", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AllergyIntoleranceById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AllergyIntolerance/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AllergyIntolerance", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "AllergyIntolerance_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 49476534\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eclinicalStatus\\u003c/b\\u003e: Active \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical code \\u0027active\\u0027 \\u003d \\u0027Active\\u0027, given as \\u0027Active\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003everificationStatus\\u003c/b\\u003e: Confirmed \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/allergyintolerance-verification code \\u0027confirmed\\u0027 \\u003d \\u0027Confirmed\\u0027, given as \\u0027Confirmed\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: allergy\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: food\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecriticality\\u003c/b\\u003e: high\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Cashew nuts \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027227493005\\u0027 \\u003d \\u0027Cashew nuts\\u0027, given as \\u0027Cashew nuts\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epatient\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eonset\\u003c/b\\u003e: 01/01/2004\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erecordedDate\\u003c/b\\u003e: 09/10/2014 2:58:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erecorder\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003easserter\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elastOccurrence\\u003c/b\\u003e: 01/06/2012\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: The criticality is high becasue of the observed anaphylactic reaction when challenged with cashew extract.\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003ereaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubstance\\u003c/b\\u003e: cashew nut allergenic extract Injectable Product \\u003cspan\\u003e(Details : {RxNorm code \\u00271160593\\u0027 \\u003d \\u0027cashew nut allergenic extract Injectable Product\\u0027, given as \\u0027cashew nut allergenic extract Injectable Product\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emanifestation\\u003c/b\\u003e: Anaphylactic reaction \\u003cspan\\u003e(Details : {SNOMED CT code \\u002739579001\\u0027 \\u003d \\u0027Anaphylaxis\\u0027, given as \\u0027Anaphylactic reaction\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Challenge Protocol. Severe reaction to subcutaneous cashew extract. Epinephrine administered\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eonset\\u003c/b\\u003e: 12/06/2012\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseverity\\u003c/b\\u003e: severe\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexposureRoute\\u003c/b\\u003e: Subcutaneous route \\u003cspan\\u003e(Details : {SNOMED CT code \\u002734206005\\u0027 \\u003d \\u0027Subcutaneous route\\u0027, given as \\u0027Subcutaneous route\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003ereaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emanifestation\\u003c/b\\u003e: Urticaria \\u003cspan\\u003e(Details : {SNOMED CT code \\u002764305001\\u0027 \\u003d \\u0027Urticaria\\u0027, given as \\u0027Urticaria\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eonset\\u003c/b\\u003e: 01/01/2004\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseverity\\u003c/b\\u003e: moderate\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: The patient reports that the onset of urticaria was within 15 minutes of eating cashews.\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://acme.com/ids/patients/risks\",\n \"value\": \"49476534\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"type\": \"allergy\",\n \"category\": [\n \"food\"\n ],\n \"criticality\": \"high\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"227493005\",\n \"display\": \"Cashew nuts\"\n }\n ]\n },\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"onsetDateTime\": \"2004\",\n \"recordedDate\": \"2014-10-09T14:58:00+11:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/example\"\n },\n \"asserter\": {\n \"reference\": \"Patient/example\"\n },\n \"lastOccurrence\": \"2012-06\",\n \"note\": [\n {\n \"text\": \"The criticality is high becasue of the observed anaphylactic reaction when challenged with cashew extract.\"\n }\n ],\n \"reaction\": [\n {\n \"substance\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"1160593\",\n \"display\": \"cashew nut allergenic extract Injectable Product\"\n }\n ]\n },\n \"manifestation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"39579001\",\n \"display\": \"Anaphylactic reaction\"\n }\n ]\n }\n ],\n \"description\": \"Challenge Protocol. Severe reaction to subcutaneous cashew extract. Epinephrine administered\",\n \"onset\": \"2012-06-12\",\n \"severity\": \"severe\",\n \"exposureRoute\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"34206005\",\n \"display\": \"Subcutaneous route\"\n }\n ]\n }\n },\n {\n \"manifestation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"64305001\",\n \"display\": \"Urticaria\"\n }\n ]\n }\n ],\n \"onset\": \"2004\",\n \"severity\": \"moderate\",\n \"note\": [\n {\n \"text\": \"The patient reports that the onset of urticaria was within 15 minutes of eating cashews.\"\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/AllergyIntolerance", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AllergyIntolerance" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AllergyIntolerance_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AllergyIntolerance?asserter=&patient=&recorder=&_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&clinical-status=&code=&criticality=&date=&identifier=&last-date=&manifestation=&onset=&route=&severity=&type=&verification-status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AllergyIntolerance" - ], - "query": [ - { - "key": "asserter", - "value": "", - "description": "Source of the information about the allergy" - }, - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "recorder", - "value": "", - "description": "Who recorded the sensitivity" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "category", - "value": "", - "description": "food | medication | environment | biologic" - }, - { - "key": "clinical-status", - "value": "", - "description": "active | inactive | resolved" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" - }, - { - "key": "criticality", - "value": "", - "description": "low | high | unable-to-assess" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "last-date", - "value": "", - "description": "Date(/time) of last known occurrence of a reaction" - }, - { - "key": "manifestation", - "value": "", - "description": "Clinical symptoms/signs associated with the Event" - }, - { - "key": "onset", - "value": "", - "description": "Date(/time) when manifestations showed" - }, - { - "key": "route", - "value": "", - "description": "How the subject was exposed to the substance" - }, - { - "key": "severity", - "value": "", - "description": "mild | moderate | severe (of event as a whole)" - }, - { - "key": "type", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" - }, - { - "key": "verification-status", - "value": "", - "description": "unconfirmed | confirmed | refuted | entered-in-error" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AllergyIntoleranceHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AllergyIntolerance/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AllergyIntolerance", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Appointment", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "AppointmentHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Appointment/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Appointment", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AppointmentHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Appointment/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Appointment", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "AppointmentById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Appointment/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Appointment", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AppointmentById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Appointment\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eBrian MRI results discussion\\u003c/div\\u003e\"\n },\n \"status\": \"booked\",\n \"serviceCategory\": [\n {\n \"coding\": [\n {\n \"system\": \"http://example.org/service-category\",\n \"code\": \"gp\",\n \"display\": \"General Practice\"\n }\n ]\n }\n ],\n \"serviceType\": [\n {\n \"coding\": [\n {\n \"code\": \"52\",\n \"display\": \"General Discussion\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394814009\",\n \"display\": \"General practice\"\n }\n ]\n }\n ],\n \"appointmentType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0276\",\n \"code\": \"FOLLOWUP\",\n \"display\": \"A follow up visit from a previous appointment\"\n }\n ]\n },\n \"reasonReference\": [\n {\n \"reference\": \"Condition/example\",\n \"display\": \"Severe burn of left ear\"\n }\n ],\n \"priority\": 5,\n \"description\": \"Discussion on the results of your recent MRI\",\n \"start\": \"2013-12-10T09:00:00Z\",\n \"end\": \"2013-12-10T11:00:00Z\",\n \"created\": \"2013-10-10\",\n \"comment\": \"Further expand on the results of the MRI and determine the next actions that may be appropriate.\",\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/myringotomy\"\n }\n ],\n \"participant\": [\n {\n \"actor\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"required\": \"required\",\n \"status\": \"accepted\"\n },\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\"\n }\n ]\n }\n ],\n \"actor\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"required\": \"required\",\n \"status\": \"accepted\"\n },\n {\n \"actor\": {\n \"reference\": \"Location/1\",\n \"display\": \"South Wing, second floor\"\n },\n \"required\": \"required\",\n \"status\": \"accepted\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Appointment/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Appointment", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AppointmentById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Appointment/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Appointment", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Appointment_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Appointment\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eBrian MRI results discussion\\u003c/div\\u003e\"\n },\n \"status\": \"booked\",\n \"serviceCategory\": [\n {\n \"coding\": [\n {\n \"system\": \"http://example.org/service-category\",\n \"code\": \"gp\",\n \"display\": \"General Practice\"\n }\n ]\n }\n ],\n \"serviceType\": [\n {\n \"coding\": [\n {\n \"code\": \"52\",\n \"display\": \"General Discussion\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394814009\",\n \"display\": \"General practice\"\n }\n ]\n }\n ],\n \"appointmentType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0276\",\n \"code\": \"FOLLOWUP\",\n \"display\": \"A follow up visit from a previous appointment\"\n }\n ]\n },\n \"reasonReference\": [\n {\n \"reference\": \"Condition/example\",\n \"display\": \"Severe burn of left ear\"\n }\n ],\n \"priority\": 5,\n \"description\": \"Discussion on the results of your recent MRI\",\n \"start\": \"2013-12-10T09:00:00Z\",\n \"end\": \"2013-12-10T11:00:00Z\",\n \"created\": \"2013-10-10\",\n \"comment\": \"Further expand on the results of the MRI and determine the next actions that may be appropriate.\",\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/myringotomy\"\n }\n ],\n \"participant\": [\n {\n \"actor\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"required\": \"required\",\n \"status\": \"accepted\"\n },\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\"\n }\n ]\n }\n ],\n \"actor\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"required\": \"required\",\n \"status\": \"accepted\"\n },\n {\n \"actor\": {\n \"reference\": \"Location/1\",\n \"display\": \"South Wing, second floor\"\n },\n \"required\": \"required\",\n \"status\": \"accepted\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Appointment", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Appointment" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Appointment_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Appointment?actor=&incomingreferral=&location=&patient=&practitioner=&_id=&_lastUpdated=&_profile=&_security=&_tag=&appointment-type=&date=&identifier=&part-status=&service-type=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Appointment" - ], - "query": [ - { - "key": "actor", - "value": "", - "description": "Any one of the individuals participating in the appointment" - }, - { - "key": "incomingreferral", - "value": "", - "description": "The ReferralRequest provided as information to allocate to the Encounter" - }, - { - "key": "location", - "value": "", - "description": "This location is listed in the participants of the appointment" - }, - { - "key": "patient", - "value": "", - "description": "One of the individuals of the appointment is this patient" - }, - { - "key": "practitioner", - "value": "", - "description": "One of the individuals of the appointment is this practitioner" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "appointment-type", - "value": "", - "description": "The style of appointment or patient that has been booked in the slot (not service type)" - }, - { - "key": "date", - "value": "", - "description": "Appointment date/time." - }, - { - "key": "identifier", - "value": "", - "description": "An Identifier of the Appointment" - }, - { - "key": "part-status", - "value": "", - "description": "The Participation status of the subject, or other participant on the appointment. Can be used to locate participants that have not responded to meeting requests." - }, - { - "key": "service-type", - "value": "", - "description": "The specific service that is to be performed during this appointment" - }, - { - "key": "status", - "value": "", - "description": "The overall status of the appointment" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AppointmentHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Appointment/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Appointment", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Appointment Response", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "AppointmentResponseHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AppointmentResponse/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AppointmentResponse", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AppointmentResponseHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AppointmentResponse/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AppointmentResponse", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "AppointmentResponseById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AppointmentResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AppointmentResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AppointmentResponseById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"AppointmentResponse\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eAccept Brian MRI results discussion\\u003c/div\\u003e\"\n },\n \"appointment\": {\n \"reference\": \"Appointment/example\",\n \"display\": \"Brian MRI results discussion\"\n },\n \"actor\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"participantStatus\": \"accepted\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/AppointmentResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AppointmentResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AppointmentResponseById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AppointmentResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AppointmentResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "AppointmentResponse_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"AppointmentResponse\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eAccept Brian MRI results discussion\\u003c/div\\u003e\"\n },\n \"appointment\": {\n \"reference\": \"Appointment/example\",\n \"display\": \"Brian MRI results discussion\"\n },\n \"actor\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"participantStatus\": \"accepted\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/AppointmentResponse", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AppointmentResponse" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AppointmentResponse_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AppointmentResponse?actor=&appointment=&location=&patient=&practitioner=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&part-status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AppointmentResponse" - ], - "query": [ - { - "key": "actor", - "value": "", - "description": "The Person, Location/HealthcareService or Device that this appointment response replies for" - }, - { - "key": "appointment", - "value": "", - "description": "The appointment that the response is attached to" - }, - { - "key": "location", - "value": "", - "description": "This Response is for this Location" - }, - { - "key": "patient", - "value": "", - "description": "This Response is for this Patient" - }, - { - "key": "practitioner", - "value": "", - "description": "This Response is for this Practitioner" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "An Identifier in this appointment response" - }, - { - "key": "part-status", - "value": "", - "description": "The participants acceptance status for this appointment" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AppointmentResponseHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AppointmentResponse/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AppointmentResponse", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Audit Event", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "AuditEventHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AuditEvent/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AuditEvent", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AuditEventHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AuditEvent/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AuditEvent", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "AuditEventById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AuditEvent/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AuditEvent", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AuditEventById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"AuditEvent\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eApplication Start for under service login \\u0026quot;Grahame\\u0026quot; (id: Grahame\\u0027s Test HL7Connect)\\u003c/div\\u003e\"\n },\n \"type\": {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110100\",\n \"display\": \"Application Activity\"\n },\n \"subtype\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110120\",\n \"display\": \"Application Start\"\n }\n ],\n \"action\": \"E\",\n \"recorded\": \"2012-10-25T22:04:27+11:00\",\n \"outcome\": \"0\",\n \"agent\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/extra-security-role-type\",\n \"code\": \"humanuser\",\n \"display\": \"human user\"\n }\n ]\n },\n \"role\": [\n {\n \"text\": \"Service User (Logon)\"\n }\n ],\n \"who\": {\n \"identifier\": {\n \"value\": \"Grahame\"\n }\n },\n \"requestor\": false,\n \"network\": {\n \"address\": \"127.0.0.1\",\n \"type\": \"2\"\n }\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110153\",\n \"display\": \"Source Role ID\"\n }\n ]\n },\n \"who\": {\n \"identifier\": {\n \"system\": \"urn:oid:2.16.840.1.113883.4.2\",\n \"value\": \"2.16.840.1.113883.4.2\"\n }\n },\n \"altId\": \"6580\",\n \"requestor\": false,\n \"network\": {\n \"address\": \"Workstation1.ehr.familyclinic.com\",\n \"type\": \"1\"\n }\n }\n ],\n \"source\": {\n \"site\": \"Development\",\n \"observer\": {\n \"display\": \"Grahame\\u0027s Laptop\"\n },\n \"type\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110122\",\n \"display\": \"Login\"\n }\n ]\n },\n \"entity\": [\n {\n \"what\": {\n \"identifier\": {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"SNO\"\n }\n ],\n \"text\": \"Dell Serial Number\"\n },\n \"value\": \"ABCDEF\"\n }\n },\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/audit-entity-type\",\n \"code\": \"4\",\n \"display\": \"Other\"\n },\n \"role\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/object-role\",\n \"code\": \"4\",\n \"display\": \"Domain Resource\"\n },\n \"lifecycle\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dicom-audit-lifecycle\",\n \"code\": \"6\",\n \"display\": \"Access / Use\"\n },\n \"name\": \"Grahame\\u0027s Laptop\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/AuditEvent/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AuditEvent", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AuditEventById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AuditEvent/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AuditEvent", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "AuditEvent_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"AuditEvent\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eApplication Start for under service login \\u0026quot;Grahame\\u0026quot; (id: Grahame\\u0027s Test HL7Connect)\\u003c/div\\u003e\"\n },\n \"type\": {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110100\",\n \"display\": \"Application Activity\"\n },\n \"subtype\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110120\",\n \"display\": \"Application Start\"\n }\n ],\n \"action\": \"E\",\n \"recorded\": \"2012-10-25T22:04:27+11:00\",\n \"outcome\": \"0\",\n \"agent\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/extra-security-role-type\",\n \"code\": \"humanuser\",\n \"display\": \"human user\"\n }\n ]\n },\n \"role\": [\n {\n \"text\": \"Service User (Logon)\"\n }\n ],\n \"who\": {\n \"identifier\": {\n \"value\": \"Grahame\"\n }\n },\n \"requestor\": false,\n \"network\": {\n \"address\": \"127.0.0.1\",\n \"type\": \"2\"\n }\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110153\",\n \"display\": \"Source Role ID\"\n }\n ]\n },\n \"who\": {\n \"identifier\": {\n \"system\": \"urn:oid:2.16.840.1.113883.4.2\",\n \"value\": \"2.16.840.1.113883.4.2\"\n }\n },\n \"altId\": \"6580\",\n \"requestor\": false,\n \"network\": {\n \"address\": \"Workstation1.ehr.familyclinic.com\",\n \"type\": \"1\"\n }\n }\n ],\n \"source\": {\n \"site\": \"Development\",\n \"observer\": {\n \"display\": \"Grahame\\u0027s Laptop\"\n },\n \"type\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110122\",\n \"display\": \"Login\"\n }\n ]\n },\n \"entity\": [\n {\n \"what\": {\n \"identifier\": {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"SNO\"\n }\n ],\n \"text\": \"Dell Serial Number\"\n },\n \"value\": \"ABCDEF\"\n }\n },\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/audit-entity-type\",\n \"code\": \"4\",\n \"display\": \"Other\"\n },\n \"role\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/object-role\",\n \"code\": \"4\",\n \"display\": \"Domain Resource\"\n },\n \"lifecycle\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dicom-audit-lifecycle\",\n \"code\": \"6\",\n \"display\": \"Access / Use\"\n },\n \"name\": \"Grahame\\u0027s Laptop\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/AuditEvent", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AuditEvent" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AuditEvent_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AuditEvent?agent=&entity=&patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&action=&address=&agent-name=&agent-role=&altid=&date=&entity-id=&entity-name=&entity-role=&entity-type=&outcome=&policy=&site=&source=&subtype=&type=&user=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AuditEvent" - ], - "query": [ - { - "key": "agent", - "value": "", - "description": "Direct reference to resource" - }, - { - "key": "entity", - "value": "", - "description": "Specific instance of resource" - }, - { - "key": "patient", - "value": "", - "description": "Direct reference to resource" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "action", - "value": "", - "description": "Type of action performed during the event" - }, - { - "key": "address", - "value": "", - "description": "Identifier for the network access point of the user device" - }, - { - "key": "agent-name", - "value": "", - "description": "Human-meaningful name for the agent" - }, - { - "key": "agent-role", - "value": "", - "description": "Agent role in the event" - }, - { - "key": "altid", - "value": "", - "description": "Alternative User id e.g. authentication" - }, - { - "key": "date", - "value": "", - "description": "Time when the event occurred on source" - }, - { - "key": "entity-id", - "value": "", - "description": "Specific instance of object" - }, - { - "key": "entity-name", - "value": "", - "description": "Descriptor for entity" - }, - { - "key": "entity-role", - "value": "", - "description": "What role the entity played" - }, - { - "key": "entity-type", - "value": "", - "description": "Type of entity involved" - }, - { - "key": "outcome", - "value": "", - "description": "Whether the event succeeded or failed" - }, - { - "key": "policy", - "value": "", - "description": "Policy that authorized event" - }, - { - "key": "site", - "value": "", - "description": "Logical source location within the enterprise" - }, - { - "key": "source", - "value": "", - "description": "The identity of source detecting the event" - }, - { - "key": "subtype", - "value": "", - "description": "More specific type/id for the event" - }, - { - "key": "type", - "value": "", - "description": "Type/identifier of event" - }, - { - "key": "user", - "value": "", - "description": "Unique identifier for the user" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "AuditEventHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/AuditEvent/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "AuditEvent", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Basic", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "BasicHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Basic/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Basic", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "BasicHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Basic/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Basic", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "BasicById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Basic/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Basic", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "BasicById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Basic\",\n \"id\": \"referral\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e\\u003cb\\u003ePatient:\\u003c/b\\u003eRoel\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eRequestor:\\u003c/b\\u003eDokter Bronsig\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eType:\\u003c/b\\u003eConsultation\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eTarget Date:\\u003c/b\\u003eApril 1 - April 31\\u003c/p\\u003e\\n \\u003cp\\u003eCOMPLETED\\u003c/p\\u003e\\n \\u003cb\\u003eThe patient had fever peaks over the last couple of days. He is worried about these peaks.\\u003c/b\\u003e\\n \\u003c/div\\u003e\"\n },\n \"extension\": [\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#requestingPractitioner\",\n \"valueReference\": {\n \"reference\": \"Practitioner/f201\",\n \"display\": \"Dokter Bronsig\"\n }\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#notes\",\n \"valueString\": \"The patient had fever peaks over the last couple of days. He is worried about these peaks.\"\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#fulfillingEncounter\",\n \"valueReference\": {\n \"reference\": \"Encounter/f201\"\n }\n }\n ],\n \"modifierExtension\": [\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#referredForService\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"11429006\",\n \"display\": \"Consultation\"\n }\n ]\n }\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#targetDate\",\n \"valuePeriod\": {\n \"start\": \"2013-04-01\",\n \"end\": \"2013-04-15\"\n }\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#status\",\n \"valueCode\": \"complete\"\n }\n ],\n \"identifier\": [\n {\n \"system\": \"http://goodhealth.org/basic/identifiers\",\n \"value\": \"19283746\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/basic-resource-type\",\n \"code\": \"referral\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/f201\",\n \"display\": \"Roel\"\n },\n \"created\": \"2013-05-14\",\n \"author\": {\n \"reference\": \"Practitioner/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Basic/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Basic", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "BasicById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Basic/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Basic", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Basic_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Basic\",\n \"id\": \"referral\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e\\u003cb\\u003ePatient:\\u003c/b\\u003eRoel\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eRequestor:\\u003c/b\\u003eDokter Bronsig\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eType:\\u003c/b\\u003eConsultation\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eTarget Date:\\u003c/b\\u003eApril 1 - April 31\\u003c/p\\u003e\\n \\u003cp\\u003eCOMPLETED\\u003c/p\\u003e\\n \\u003cb\\u003eThe patient had fever peaks over the last couple of days. He is worried about these peaks.\\u003c/b\\u003e\\n \\u003c/div\\u003e\"\n },\n \"extension\": [\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#requestingPractitioner\",\n \"valueReference\": {\n \"reference\": \"Practitioner/f201\",\n \"display\": \"Dokter Bronsig\"\n }\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#notes\",\n \"valueString\": \"The patient had fever peaks over the last couple of days. He is worried about these peaks.\"\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#fulfillingEncounter\",\n \"valueReference\": {\n \"reference\": \"Encounter/f201\"\n }\n }\n ],\n \"modifierExtension\": [\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#referredForService\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"11429006\",\n \"display\": \"Consultation\"\n }\n ]\n }\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#targetDate\",\n \"valuePeriod\": {\n \"start\": \"2013-04-01\",\n \"end\": \"2013-04-15\"\n }\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#status\",\n \"valueCode\": \"complete\"\n }\n ],\n \"identifier\": [\n {\n \"system\": \"http://goodhealth.org/basic/identifiers\",\n \"value\": \"19283746\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/basic-resource-type\",\n \"code\": \"referral\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/f201\",\n \"display\": \"Roel\"\n },\n \"created\": \"2013-05-14\",\n \"author\": {\n \"reference\": \"Practitioner/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Basic", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Basic" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Basic_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Basic?author=&patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&created=&identifier=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Basic" - ], - "query": [ - { - "key": "author", - "value": "", - "description": "Who created" - }, - { - "key": "patient", - "value": "", - "description": "Identifies the focus of this resource" - }, - { - "key": "subject", - "value": "", - "description": "Identifies the focus of this resource" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Kind of Resource" - }, - { - "key": "created", - "value": "", - "description": "When created" - }, - { - "key": "identifier", - "value": "", - "description": "Business identifier" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "BasicHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Basic/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Basic", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Binary", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "BinaryHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Binary/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Binary", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "BinaryHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Binary/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Binary", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "BinaryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Binary/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Binary", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "BinaryById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Binary\",\n \"id\": \"example\",\n \"contentType\": \"application/pdf\",\n \"securityContext\": {\n \"reference\": \"DocumentReference/example\"\n },\n \"data\": \"JVBERi0xLjUNJeLjz9MNCjEwIDAgb2JqDTw8L0xpbmVhcml6ZWQgMS9MIDEzMDA2OC9PIDEyL0Ug MTI1NzM1L04gMS9UIDEyOTc2NC9IIFsgNTQ2IDIwNF0+Pg1lbmRvYmoNICAgICAgICAgICAgICAg DQo0MSAwIG9iag08PC9EZWNvZGVQYXJtczw8L0NvbHVtbnMgNS9QcmVkaWN0b3IgMTI+Pi9GaWx0 ZXIvRmxhdGVEZWNvZGUvSURbPDRDRDkwQkY3MkI2NjU5NkVCMEJDQzlBN0ZGNzIwMjE3PjwyOTkw ODAzRkY2QTc0OTQ4OEEwNTdBREQzRDdFQTM0Nj5dL0luZGV4WzEwIDU4XS9JbmZvIDkgMCBSL0xl bmd0aCAxMzcvUHJldiAxMjk3NjUvUm9vdCAxMSAwIFIvU2l6ZSA2OC9UeXBlL1hSZWYvV1sxIDMg MV0+PnN0cmVhbQ0KaN5iYmRgEGBgYmBgugciGf1AJMNmEMn2H0RyxIJI9slg9k4wuQNMHgCLZ4DJ NLBIJIjkagGbA2abeIDZmiAyvhFsMkic0fApWFwDRPoWgNmhIFIzHMyWBZFWWWD1YSCS/yhYXAFs yxUQyXoQSP6XmsbABHT/TLBKBsZBRAKDTvQFQIABAIHlFZoNCmVuZHN0cmVhbQ1lbmRvYmoNc3Rh cnR4cmVmDQowDQolJUVPRg0KICAgICAgICAgICAgIA0KNjcgMCBvYmoNPDwvRmlsdGVyL0ZsYXRl RGVjb2RlL0kgMTM3L0wgMTIxL0xlbmd0aCAxMTcvUyAzOD4+c3RyZWFtDQpo3mJgYJBlYGAqYGBg YHz+mgEVMAIxCwNHA7KYLBQzMIQy8DPsEVth4VD84E3jjcNb24X5lGQEAisY3OoSTPXFGFgSFZj9 Mm4wsCo4GMl0NTDKPGDWsf4RdqCuAW4846toqDVtYKsYf/JD+IxcAAEGAMGGGRoNCmVuZHN0cmVh bQ1lbmRvYmoNMTEgMCBvYmoNPDwvTWV0YWRhdGEgMiAwIFIvUGFnZUxhYmVscyA2IDAgUi9QYWdl cyA4IDAgUi9UeXBlL0NhdGFsb2c+Pg1lbmRvYmoNMTIgMCBvYmoNPDwvQ29udGVudHNbMTQgMCBS IDE1IDAgUiAxNiAwIFIgMTcgMCBSIDE4IDAgUiAxOSAwIFIgMjAgMCBSIDIxIDAgUl0vQ3JvcEJv eFswIDAgNjEyIDc5Ml0vTWVkaWFCb3hbMCAwIDYxMiA3OTJdL1BhcmVudCA4IDAgUi9SZXNvdXJj ZXMgNDIgMCBSL1JvdGF0ZSAwL1R5cGUvUGFnZT4+DWVuZG9iag0xMyAwIG9iag08PC9GaWx0ZXIv RmxhdGVEZWNvZGUvRmlyc3QgMTkxL0xlbmd0aCAxNDM3L04gMjUvVHlwZS9PYmpTdG0+PnN0cmVh bQ0KaN7EWFtv4jgU/it+bDVi47sdaVSJQi9I04sKux0J8ZBChmY3EBRSqf33e44NNIRQLrPbCoU4 9rHPxZ8/H1tyQokUhAtFpCRcCSIVEQxemihliTTEKE6kJVaDSEgYNZYoSpgSjChGmNGCgAQXVBHo zpWCnjCUUfCtCLcG2jWMyUDeEKEYJzCwMDCeCokIoVGDEdRIohkYw+ANGjWMB0NLKzjRElRyRrAL A1M1qBCSk+/fg1aWZnl3Fg1j/Jhr9IaSh7Oz4OK1uOoWUYENV12G/vmGy2xaQF2vx9A9qMMiQ+d8 maNfvijQFV+U6IUvOsN9UaPNvmjQTF8M0UKv7D7Pht246Af37cugF78WQWcSjePWIPh59/R3PERL OhNGhHV9OxMOIVkUwXvqhzk76wedVus8mscjwnHSHgbQ8e6e/IrSeQyFG8KCbnPx2b0h9A/Kg97b LH6PQ5DNfPvZGfRtzofxtIDZpUGr0wYTYQqd3lY0u46T8XMBc01p0I69YIOD5GUajedEuhCen2ev /YaigjQENYRxMDbUcuAaL6NJkr6dtKI0ecqTU1+XpDEAxQcJK26jSRz8uG3e3La+LSRdfbfI42L4 HNxm+SRKXdWjt0iCQZ0CRIfN6TiNCQ26RTz5i1jqfUVRNDhPZkWWBz9LjjinMYAoU9WKEXibw1Cd 6a8MA5uP4jyZjk86I/A9Kd5Og4d4nMyL/O2kOcqe4tOg+zKbpfEEQwNj4wi97KrTvolmwbJT0H70 MVw3C5cYhqD78lSg0dAVBdAB/u5G8NgXfc71wFreF1QPBh964KdpFEGYoXXelw6Ag+BiOsxG4MnK qMb1SjHqgsBlf04TEIph7Xr8Lk0o44SBI1uhIWi4gIbgJWywUC6woa2FLlasgaOZJ1F6+o4E9904 T6PhPztgEG6BAaeH4qCscxWqx2TanM6T1fdlks+L1nOUL90rz6Vftz+ihQQz8j2++UvcWwZ6ManJ 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 N2pszN84vslj09HNhM2Jm3/IM8krzXu9JWxLV75y/qb8sa0eW5sLJAr4BcPbbLfVbEdt527v32G+ Y/+OT4XswmtFJkXlRR+KWcXXvjL9quKrhZ2xO/tLLEsO7sLs4u0a2u2w+2ipdGlO6dge3z3tZfSy wrLXe6P2Xi1fVl6zj7BPuG+kwqeic7/m/l37P1TGV96pcq5qrVaq3lE9d4B9YPCg48GWGuWaopr3 h7iH7tZ61LbXadeVH8Yczjj8tD60vvdrxteNDQoNRQ0fj/COjBwNPNrTaNXY2KTUVNIMNwubp45F Hrv5jes3nS2GLbWttNai4+C48Pizb6O/HTrhfaL7JONky3da31W3UdoK26H27PaZjviOkc7wzoFT K051d9l2tX1v9P2R02qnq87Inik5Szibf3bhXM652fOp56cvxF0Y647qfnBx1cXbPQE9/Ze8L125 7H75Yq9T77krdldOX7W5euoa41rHdcvr7X0WfW0/WPzQ1m/Z337D6kbnTeubXQPLB84OOgxeuOV6 6/Jtr9vX76y8MzAUMnR3OHJ45C777uS9pHsv72fcn3+w6SH6YeEjqUflj5Ue1/2o92PriOXImVHX 0b4nQU8ejLHGnv+U/tOH8fyn5KflE6oTjZNmk6en3KduPlv9bPx56vP56YKfpX+ufqH74rtfHH/p m1k1M/6S/3Lh1+JX8q+OvF72unvWf/bxm+Q383OFb+XfHn3HeNf7Puz9xHzmB+yHio96H7s+eX96 uJC8sPCbAAMA94Tz+w0KZW5kc3RyZWFtDWVuZG9iag0yMyAwIG9iag08PC9GaWx0ZXIvRmxhdGVE ZWNvZGUvTGVuZ3RoIDIwPj5zdHJlYW0NCmjemsBAT6DAMAoGAAAEGABBpACxDQplbmRzdHJlYW0N ZW5kb2JqDTI0IDAgb2JqDTw8L0ZpbHRlci9GbGF0ZURlY29kZS9MZW5ndGggMTMyOTgvTGVuZ3Ro MSA0NTU4ND4+c3RyZWFtDQpo3rRbB3xVRfY+t70XQot0CMILj9AVREQEhBCSUEJJCCUJLYWE0Is0 QTECIgSwYFBREaKuBQFfYotrQxcVxcK6Yll37QUVFAvuAsm7/2/KeXl5FNnf7j/w5XxzptyZuXNn zpmZkEFEdamYLOoxOqN7zxP/fOoDaJ4DcvKXLPIF7t73LpHRmshpXTh/+pzffx9Zj8jTh6hOq+mz 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 x6Quk2gmdZhEMfEy8TBxmNhMLCYmE4MJaWK4TIJMqplUMTnF5CSTE0z+zeRfTH5ncpzJb0x+ZfIL k5+ZHGPyE5MfmRxlcoTJD0y+Z/Idk8NMvmXyDZOvmXzF5EsmXzD5nMlnTD5l8gmTfzL5B5OPmfyd yUdMPmTyAZP3mRxi8h6TvzF5l8lfmRxk8g6Tt5m8xeRNJgeYvMHkdSb7mbzG5FUmrzDZx+QvTF5m 8hKTvUxeZPICk+eZPMfkWSZ/ZvIMk0omTzN5ismTTJ5g8jiTCiblTAJMHmOyh8luJruYPMpkJ5NH mDzM5CEmDzL5E5MHmNzP5D4mZUx2MNnO5F4m25jcw+RuJncx2crkTiZ3MLmdyRYmpUxuY7KZya1M bmFyM5ObmGxispHJBiYlTNYzWcfkRiZrmdzAhM0eg80eg80eg80eg80eg80eg80eg80eg80eg80e g80eg80eg80eg80eg80eg80eg80eg80eYyETtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8M tn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8M tn8Mtn8Mtn8MNnsMNnsMNnsMtnYMtnYMtnYMtnYMtnYMtnYMtnYMtnYMtnaMwY8LAqu5os2AtrCZ K9o0hVilQtdXtOkLUaxC1ymxsqJNPYhrVegaJVYosVyJqysuHASxrOLCwRBLlViixGIVt0iFrlJi oVIuqLgwEWK+EvOUmKuSzFFithKzKlonQ8xUYoYSRUpMV6KwonUSRIEKTVMiX4k8JXKVyFFiqhJT VL7JKjRJiYlKZCuRpUSmEhOUGK/EOCXGKpGhxBgl0pVIU2K0EqOUGKnECCVSlRheETsMYpgSQyti h0MMUSKlIjYVIrkidgREkhKDlUhUcYNUvgQlBqp8A5S4Uon+KmU/Jfqq7Fco0UeJy5XorcRlqrBe SlyqSumpxCVK9FCFdVfiYpXvIiW6KdFViS5KdFaikxIdVdEdlIhXZbZXwq9EO1V0nBI+la+tEm2U uFCJ1krEKtGqotUoiJZKtKhoNRqiuRLNlLKpEk2UsrESjZS4QMXFKNFQKRsoUV+JeiqurhLRStRR cVFKeJXwVLRMg3AqWqZD2EpYSmmqkKEESWG4SgRlEqNahaqUOKXESRV3QoX+rcS/lPhdieMVLcZC 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 mgo5X0gTIY2FNBLSUEgDIecJSRBSX0g9IXWF1BFSW0i8kFpC4oT4hfiEOEJsIZYQU4ghhDxiuELC QqqEVAo5KeSEkF+F/FvIv4T8IuRnIT8J+VHID0KOCzkm5Hsh3wk5KuSIkH8K+VbIN0IOC/layFdC vhTyhZDPhXwm5FMhnwj5WMhHQv4h5O9CPhTyNyEfCHlfyHtC3hVySMhfhfxFyDtC/izkoJC3hbwl 5E9C3hRyQMgbQl4Xsl/Ia0JeFfKKkH1C/ijkZSEvCdkr5EUhLwh5XshzQp4V8gchzwjZI+RpIU8J eVLIE0IeF1IhpFxISMhjQh4VslvILiGPCNkp5GEhDwl5UMgDQn4v5H4h9wm5V8gOIduFbBNyj5Ct Qu4WcpeQO4VsEXKHkNuF3CZks5BNQm4VslHILUJuFvI7ITcJ2SBkvZB1QsqErBWyRsiNQlYLuUGI mD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD3GAiFi /xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi /xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi9hhi9hhi9hhi7Rhi7Rhi7Rhi 7Rhi7Rhi7Rhi7Rhi7Rhi7RgDHmcCq7miZd9WsJkrWjaGWKFD11e07AVRqkPXaXFtRcs6ENfo0NVa LNdimRZXVVzQH2JpxQUDIJZosViLRTpuoQ5dqcUCrZxfcUEqxDwt5moxRyeZrcUsLWZWtEiHmKHF dC1KtJimRXFFizSIIh2aqkWhFgVa5GuRp8UULSbrfJN0aKIWE7QYr0WuFjlajNNirBZjtBitRbYW o7TI0iJTi5FajNBiuBbDtMjQYmhF4hCIIVoMrkgcCjFIi4EViRkQ6RWJwyDStBigRaqO66/zpWjR T+frq8UVWvTRKXtr0Utnv1yLnlpcpkUPLS7VhXXX4hJdSjctLtaiqy6sixYX6XwXatFZi05adNSi gxbttWini26rRbIus40WQS1a66KTtAjofK20aKnFBVq00CJRi+YVzUdANNOiaUXzkRDna9FEKxtr 0UgrG2rRQIvzdFyCFvW1sp4WdbWoo+NqaxGvRS0dF6eFXwtfRbNMCKeiWRaErYWllaYOGVqQEoar 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 YJxq3BjiQZK0UkiARSo5JRyDIPmB4vq//9kNCmVuZHN0cmVhbQ1lbmRvYmoNMzkgMCBvYmoNPDwv Qml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDMgMCBSL0ZpbHRlci9EQ1REZWNvZGUvSGVp Z2h0IDQxL0xlbmd0aCAxMzIxL1N1YnR5cGUvSW1hZ2UvVHlwZS9YT2JqZWN0L1dpZHRoIDcxPj5z dHJlYW0NCv/Y/+4ADkFkb2JlAGSAAAAAAf/bAIQADAgICAkIDAkJDBELCgsRFQ8MDA8VGBMTFRMT GBcSFBQUFBIXFxscHhwbFyQkJyckJDUzMzM1Ozs7Ozs7Ozs7OwENCwsNDg0QDg4QFA4PDhQUEBER EBQdFBQVFBQdJRoXFxcXGiUgIx4eHiMgKCglJSgoMjIwMjI7Ozs7Ozs7Ozs7/8AAEQgAKQBHAwEi AAIRAQMRAf/EAT8AAAEFAQEBAQEBAAAAAAAAAAMAAQIEBQYHCAkKCwEAAQUBAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAABBAEDAgQCBQcGCAUDDDMBAAIRAwQhEjEFQVFhEyJxgTIGFJGhsUIjJBVS wWIzNHKC0UMHJZJT8OHxY3M1FqKygyZEk1RkRcKjdDYX0lXiZfKzhMPTdePzRieUpIW0lcTU5PSl tcXV5fVWZnaGlqa2xtbm9jdHV2d3h5ent8fX5/cRAAICAQIEBAMEBQYHBwYFNQEAAhEDITESBEFR YXEiEwUygZEUobFCI8FS0fAzJGLhcoKSQ1MVY3M08SUGFqKygwcmNcLSRJNUoxdkRVU2dGXi8rOE w9N14/NGlKSFtJXE1OT0pbXF1eX1VmZ2hpamtsbW5vYnN0dXZ3eHl6e3x//aAAwDAQACEQMRAD8A 9VVfPtNOFfaDtLK3EO8CBonysujEr9S520Ew0dyT2AXIfWLrd3VrD0fCOylvuzrgdA39yVFmzQxQ lOZoANnlOVnmyR0qANymdgBu9B9WOpO6n0ejJeZfGx5PdzeStZcV9TOp14dTMSwFtGVdY3Gd2lnb 5rtUcM+LHEncgWnn8PtcxkAFQMiYeV/sUkkkpGqpJJJJSkkkklPFdVys3Itys8c1u+y4FPYOOjrf iEI9M+xYTOn4v6TLyfpP7lzvpPd8FsZGAWX0lwhtVxcf7XCk/Hsa622v+evd6VZ/dZ4hc5zWaWfJ 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 dHJlYW0NZW5kb2JqDTIgMCBvYmoNPDwvTGVuZ3RoIDM0MTIvU3VidHlwZS9YTUwvVHlwZS9NZXRh ZGF0YT4+c3RyZWFtDQo8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pO VGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJB ZG9iZSBYTVAgQ29yZSA1LjQtYzAwNSA3OC4xNDczMjYsIDIwMTIvMDgvMjMtMTM6MDM6MDMgICAg ICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8y Mi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAg ICAgICAgICAgIHhtbG5zOnBkZj0iaHR0cDovL25zLmFkb2JlLmNvbS9wZGYvMS4zLyIKICAgICAg ICAgICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICAgICAgICAg ICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICAgICAgICAg IHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIj4KICAgICAgICAg PHBkZjpQcm9kdWNlcj5BY3JvYmF0IERpc3RpbGxlciAxMS4wIChXaW5kb3dzKTwvcGRmOlByb2R1 Y2VyPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPlBTY3JpcHQ1LmRsbCBWZXJzaW9uIDUuMi4y PC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6TW9kaWZ5RGF0ZT4yMDE0LTA1LTEzVDEw OjQ1OjUyLTA1OjAwPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPHhtcDpDcmVhdGVEYXRlPjIw MTQtMDUtMTNUMTA6NDU6NTItMDU6MDA8L3htcDpDcmVhdGVEYXRlPgogICAgICAgICA8ZGM6Zm9y bWF0PmFwcGxpY2F0aW9uL3BkZjwvZGM6Zm9ybWF0PgogICAgICAgICA8ZGM6dGl0bGU+CiAgICAg ICAgICAgIDxyZGY6QWx0PgogICAgICAgICAgICAgICA8cmRmOmxpIHhtbDpsYW5nPSJ4LWRlZmF1 bHQiPk1pY3Jvc29mdCBXb3JkIC0gRkhJUi1Dc3VpdGUuZG9jeDwvcmRmOmxpPgogICAgICAgICAg ICA8L3JkZjpBbHQ+CiAgICAgICAgIDwvZGM6dGl0bGU+CiAgICAgICAgIDxkYzpjcmVhdG9yPgog ICAgICAgICAgICA8cmRmOlNlcT4KICAgICAgICAgICAgICAgPHJkZjpsaT5Xb29keTwvcmRmOmxp PgogICAgICAgICAgICA8L3JkZjpTZXE+CiAgICAgICAgIDwvZGM6Y3JlYXRvcj4KICAgICAgICAg PHhtcE1NOkRvY3VtZW50SUQ+dXVpZDpkNWNkNTNiZS00YWJlLTQ3YTMtOWJkNy02ODZmOGE3NDc4 NGI8L3htcE1NOkRvY3VtZW50SUQ+CiAgICAgICAgIDx4bXBNTTpJbnN0YW5jZUlEPnV1aWQ6ZGQ1 MjEwM2ItMTU4NC00MjgwLTg4ZjItNmYyZjUzMjNkYjU3PC94bXBNTTpJbnN0YW5jZUlEPgogICAg ICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5k PSJ3Ij8+DQplbmRzdHJlYW0NZW5kb2JqDTMgMCBvYmoNPDwvRmlsdGVyL0ZsYXRlRGVjb2RlL0Zp cnN0IDQvTGVuZ3RoIDQ5L04gMS9UeXBlL09ialN0bT4+c3RyZWFtDQpo3rJQMFCwsdF3zi/NK1Ew 1PfOTCmONjQCCgbF6odUFqTqBySmpxbb2QEEGADf+gutDQplbmRzdHJlYW0NZW5kb2JqDTQgMCBv YmoNPDwvRmlsdGVyL0ZsYXRlRGVjb2RlL0ZpcnN0IDQvTGVuZ3RoIDE3My9OIDEvVHlwZS9PYmpT dG0+PnN0cmVhbQ0KaN58zLEKwjAQgOFXuc1kaJrUZlBEEIvoUCgqdulSm4iB4Mnlivr2dnB2/79/ ARpWq3wz8h1JtIjuI/Mt+Z4DPqqevaiWhTaltmZudGltkWk703r2qybUnAYKT7bKxQgXT2mSYFWh CpnX6P5PGkI3Dp7EZiC89gxVSBxi9ATGKA2daMPD4St1UubnwNGLOkxpwhtDi+Qgg93+cMy2aQzs lcPhLdfrrwADAKY3QQENCmVuZHN0cmVhbQ1lbmRvYmoNNSAwIG9iag08PC9EZWNvZGVQYXJtczw8 L0NvbHVtbnMgNS9QcmVkaWN0b3IgMTI+Pi9GaWx0ZXIvRmxhdGVEZWNvZGUvSURbPDRDRDkwQkY3 MkI2NjU5NkVCMEJDQzlBN0ZGNzIwMjE3PjwyOTkwODAzRkY2QTc0OTQ4OEEwNTdBREQzRDdFQTM0 Nj5dL0luZm8gOSAwIFIvTGVuZ3RoIDUwL1Jvb3QgMTEgMCBSL1NpemUgMTAvVHlwZS9YUmVmL1db MSAzIDFdPj5zdHJlYW0NCmjeYmIAASZGxtfqDExAVhuI5FsIZveCSEYuoOx/NhmwCAMjiGT6DyIZ GQACDACdPgUbDQplbmRzdHJlYW0NZW5kb2JqDXN0YXJ0eHJlZg0KMTE2DQolJUVPRg0K\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Binary/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Binary", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "BinaryById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Binary/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Binary", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Binary_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Binary\",\n \"id\": \"example\",\n \"contentType\": \"application/pdf\",\n \"securityContext\": {\n \"reference\": \"DocumentReference/example\"\n },\n \"data\": \"JVBERi0xLjUNJeLjz9MNCjEwIDAgb2JqDTw8L0xpbmVhcml6ZWQgMS9MIDEzMDA2OC9PIDEyL0Ug MTI1NzM1L04gMS9UIDEyOTc2NC9IIFsgNTQ2IDIwNF0+Pg1lbmRvYmoNICAgICAgICAgICAgICAg DQo0MSAwIG9iag08PC9EZWNvZGVQYXJtczw8L0NvbHVtbnMgNS9QcmVkaWN0b3IgMTI+Pi9GaWx0 ZXIvRmxhdGVEZWNvZGUvSURbPDRDRDkwQkY3MkI2NjU5NkVCMEJDQzlBN0ZGNzIwMjE3PjwyOTkw ODAzRkY2QTc0OTQ4OEEwNTdBREQzRDdFQTM0Nj5dL0luZGV4WzEwIDU4XS9JbmZvIDkgMCBSL0xl bmd0aCAxMzcvUHJldiAxMjk3NjUvUm9vdCAxMSAwIFIvU2l6ZSA2OC9UeXBlL1hSZWYvV1sxIDMg MV0+PnN0cmVhbQ0KaN5iYmRgEGBgYmBgugciGf1AJMNmEMn2H0RyxIJI9slg9k4wuQNMHgCLZ4DJ NLBIJIjkagGbA2abeIDZmiAyvhFsMkic0fApWFwDRPoWgNmhIFIzHMyWBZFWWWD1YSCS/yhYXAFs yxUQyXoQSP6XmsbABHT/TLBKBsZBRAKDTvQFQIABAIHlFZoNCmVuZHN0cmVhbQ1lbmRvYmoNc3Rh cnR4cmVmDQowDQolJUVPRg0KICAgICAgICAgICAgIA0KNjcgMCBvYmoNPDwvRmlsdGVyL0ZsYXRl RGVjb2RlL0kgMTM3L0wgMTIxL0xlbmd0aCAxMTcvUyAzOD4+c3RyZWFtDQpo3mJgYJBlYGAqYGBg YHz+mgEVMAIxCwNHA7KYLBQzMIQy8DPsEVth4VD84E3jjcNb24X5lGQEAisY3OoSTPXFGFgSFZj9 Mm4wsCo4GMl0NTDKPGDWsf4RdqCuAW4846toqDVtYKsYf/JD+IxcAAEGAMGGGRoNCmVuZHN0cmVh bQ1lbmRvYmoNMTEgMCBvYmoNPDwvTWV0YWRhdGEgMiAwIFIvUGFnZUxhYmVscyA2IDAgUi9QYWdl cyA4IDAgUi9UeXBlL0NhdGFsb2c+Pg1lbmRvYmoNMTIgMCBvYmoNPDwvQ29udGVudHNbMTQgMCBS IDE1IDAgUiAxNiAwIFIgMTcgMCBSIDE4IDAgUiAxOSAwIFIgMjAgMCBSIDIxIDAgUl0vQ3JvcEJv eFswIDAgNjEyIDc5Ml0vTWVkaWFCb3hbMCAwIDYxMiA3OTJdL1BhcmVudCA4IDAgUi9SZXNvdXJj ZXMgNDIgMCBSL1JvdGF0ZSAwL1R5cGUvUGFnZT4+DWVuZG9iag0xMyAwIG9iag08PC9GaWx0ZXIv RmxhdGVEZWNvZGUvRmlyc3QgMTkxL0xlbmd0aCAxNDM3L04gMjUvVHlwZS9PYmpTdG0+PnN0cmVh bQ0KaN7EWFtv4jgU/it+bDVi47sdaVSJQi9I04sKux0J8ZBChmY3EBRSqf33e44NNIRQLrPbCoU4 9rHPxZ8/H1tyQokUhAtFpCRcCSIVEQxemihliTTEKE6kJVaDSEgYNZYoSpgSjChGmNGCgAQXVBHo zpWCnjCUUfCtCLcG2jWMyUDeEKEYJzCwMDCeCokIoVGDEdRIohkYw+ANGjWMB0NLKzjRElRyRrAL A1M1qBCSk+/fg1aWZnl3Fg1j/Jhr9IaSh7Oz4OK1uOoWUYENV12G/vmGy2xaQF2vx9A9qMMiQ+d8 maNfvijQFV+U6IUvOsN9UaPNvmjQTF8M0UKv7D7Pht246Af37cugF78WQWcSjePWIPh59/R3PERL OhNGhHV9OxMOIVkUwXvqhzk76wedVus8mscjwnHSHgbQ8e6e/IrSeQyFG8KCbnPx2b0h9A/Kg97b LH6PQ5DNfPvZGfRtzofxtIDZpUGr0wYTYQqd3lY0u46T8XMBc01p0I69YIOD5GUajedEuhCen2ev /YaigjQENYRxMDbUcuAaL6NJkr6dtKI0ecqTU1+XpDEAxQcJK26jSRz8uG3e3La+LSRdfbfI42L4 HNxm+SRKXdWjt0iCQZ0CRIfN6TiNCQ26RTz5i1jqfUVRNDhPZkWWBz9LjjinMYAoU9WKEXibw1Cd 6a8MA5uP4jyZjk86I/A9Kd5Og4d4nMyL/O2kOcqe4tOg+zKbpfEEQwNj4wi97KrTvolmwbJT0H70 MVw3C5cYhqD78lSg0dAVBdAB/u5G8NgXfc71wFreF1QPBh964KdpFEGYoXXelw6Ag+BiOsxG4MnK qMb1SjHqgsBlf04TEIph7Xr8Lk0o44SBI1uhIWi4gIbgJWywUC6woa2FLlasgaOZJ1F6+o4E9904 T6PhPztgEG6BAaeH4qCscxWqx2TanM6T1fdlks+L1nOUL90rz6Vftz+ihQQz8j2++UvcWwZ6ManJ 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 N2pszN84vslj09HNhM2Jm3/IM8krzXu9JWxLV75y/qb8sa0eW5sLJAr4BcPbbLfVbEdt527v32G+ Y/+OT4XswmtFJkXlRR+KWcXXvjL9quKrhZ2xO/tLLEsO7sLs4u0a2u2w+2ipdGlO6dge3z3tZfSy wrLXe6P2Xi1fVl6zj7BPuG+kwqeic7/m/l37P1TGV96pcq5qrVaq3lE9d4B9YPCg48GWGuWaopr3 h7iH7tZ61LbXadeVH8Yczjj8tD60vvdrxteNDQoNRQ0fj/COjBwNPNrTaNXY2KTUVNIMNwubp45F Hrv5jes3nS2GLbWttNai4+C48Pizb6O/HTrhfaL7JONky3da31W3UdoK26H27PaZjviOkc7wzoFT K051d9l2tX1v9P2R02qnq87Inik5Szibf3bhXM652fOp56cvxF0Y647qfnBx1cXbPQE9/Ze8L125 7H75Yq9T77krdldOX7W5euoa41rHdcvr7X0WfW0/WPzQ1m/Z337D6kbnTeubXQPLB84OOgxeuOV6 6/Jtr9vX76y8MzAUMnR3OHJ45C777uS9pHsv72fcn3+w6SH6YeEjqUflj5Ue1/2o92PriOXImVHX 0b4nQU8ejLHGnv+U/tOH8fyn5KflE6oTjZNmk6en3KduPlv9bPx56vP56YKfpX+ufqH74rtfHH/p m1k1M/6S/3Lh1+JX8q+OvF72unvWf/bxm+Q383OFb+XfHn3HeNf7Puz9xHzmB+yHio96H7s+eX96 uJC8sPCbAAMA94Tz+w0KZW5kc3RyZWFtDWVuZG9iag0yMyAwIG9iag08PC9GaWx0ZXIvRmxhdGVE ZWNvZGUvTGVuZ3RoIDIwPj5zdHJlYW0NCmjemsBAT6DAMAoGAAAEGABBpACxDQplbmRzdHJlYW0N ZW5kb2JqDTI0IDAgb2JqDTw8L0ZpbHRlci9GbGF0ZURlY29kZS9MZW5ndGggMTMyOTgvTGVuZ3Ro MSA0NTU4ND4+c3RyZWFtDQpo3rRbB3xVRfY+t70XQot0CMILj9AVREQEhBCSUEJJCCUJLYWE0Is0 QTECIgSwYFBREaKuBQFfYotrQxcVxcK6Yll37QUVFAvuAsm7/2/KeXl5FNnf7j/w5XxzptyZuXNn zpmZkEFEdamYLOoxOqN7zxP/fOoDaJ4DcvKXLPIF7t73LpHRmshpXTh/+pzffx9Zj8jTh6hOq+mz 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 x6Quk2gmdZhEMfEy8TBxmNhMLCYmE4MJaWK4TIJMqplUMTnF5CSTE0z+zeRfTH5ncpzJb0x+ZfIL k5+ZHGPyE5MfmRxlcoTJD0y+Z/Idk8NMvmXyDZOvmXzF5EsmXzD5nMlnTD5l8gmTfzL5B5OPmfyd yUdMPmTyAZP3mRxi8h6TvzF5l8lfmRxk8g6Tt5m8xeRNJgeYvMHkdSb7mbzG5FUmrzDZx+QvTF5m 8hKTvUxeZPICk+eZPMfkWSZ/ZvIMk0omTzN5ismTTJ5g8jiTCiblTAJMHmOyh8luJruYPMpkJ5NH mDzM5CEmDzL5E5MHmNzP5D4mZUx2MNnO5F4m25jcw+RuJncx2crkTiZ3MLmdyRYmpUxuY7KZya1M bmFyM5ObmGxispHJBiYlTNYzWcfkRiZrmdzAhM0eg80eg80eg80eg80eg80eg80eg80eg80eg80e g80eg80eg80eg80eg80eg80eg80eg80eYyETtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8M tn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8Mtn8M tn8Mtn8Mtn8MNnsMNnsMNnsMtnYMtnYMtnYMtnYMtnYMtnYMtnYMtnYMtnaMwY8LAqu5os2AtrCZ K9o0hVilQtdXtOkLUaxC1ymxsqJNPYhrVegaJVYosVyJqysuHASxrOLCwRBLlViixGIVt0iFrlJi oVIuqLgwEWK+EvOUmKuSzFFithKzKlonQ8xUYoYSRUpMV6KwonUSRIEKTVMiX4k8JXKVyFFiqhJT VL7JKjRJiYlKZCuRpUSmEhOUGK/EOCXGKpGhxBgl0pVIU2K0EqOUGKnECCVSlRheETsMYpgSQyti h0MMUSKlIjYVIrkidgREkhKDlUhUcYNUvgQlBqp8A5S4Uon+KmU/Jfqq7Fco0UeJy5XorcRlqrBe SlyqSumpxCVK9FCFdVfiYpXvIiW6KdFViS5KdFaikxIdVdEdlIhXZbZXwq9EO1V0nBI+la+tEm2U uFCJ1krEKtGqotUoiJZKtKhoNRqiuRLNlLKpEk2UsrESjZS4QMXFKNFQKRsoUV+JeiqurhLRStRR cVFKeJXwVLRMg3AqWqZD2EpYSmmqkKEESWG4SgRlEqNahaqUOKXESRV3QoX+rcS/lPhdieMVLcZC /FbRIgPiVxX6RYmflTim4n5SoR+VOKrEERX3gxLfK+V3ShxW4lslvlFJvlahr1ToSxX6QonPlfhM xX2qxCdK+U8l/qHEx0r8XSX5SIU+VOKDiuYTIN6vaD4e4pAS7ynl/7Fv59FNVHscwO+dtElpmiYp Seg+YStgobSUJQjSlEIASwu0HaQtFEvXQEshC8hSqCKIS1kUFcUFUUSMYjqsAgKKO5uCKyiL+4bg rmDp+05+9Zx33nnHP57nvPN8ZwKf+d57587NTMjvVs+BExTHKd6keIOmHKM4SoNHKA5THKJ4naa8 RvEqDb5C8TLFSxQvUhykmS9Q73mKAxT76dw+iudocC/FHordFM9S7KKZO6m3g2I7xTaKrbItCyHL tlJEC0WQ4hmKLRRPUzxFEaB4UrZhv+abaZUnKDbRuccpNlI8RvEoxQaKRyjWUzxMiz1EqzxI8QCd W0dxP8V9FGvpgnupdw/F3RRr6NxdtMqdFKvp3CqKlRQrKJop7qCZt1PvNopbKZZT3EKxTLaWI5bK 1mmImymWyNZqxE0UN8pWCdEkW7EZ88WydSBiEUUjXb6QrltAMV+2ViLm0eU3UMylmEPhp/BReGlp D10+m2KWbK1ANNBiM2lmPUUdxQyK6RRuuq6WooburJour6KopJkVFNMoyimup5hKUUYPPYXubDJF KT10CS1dTG80ieI6ut2J9EYSrVJEUUhRQDFBtjgR42WL8g7jZIvy9c6XLUsQebKlD2IsTcmluFa2 4L8L+BjqjaYYRYMu2bIIMVK23IIYIVsWI3JkSxNiuBzjQmRTOCmyKIbJMfj5zq+h3lDZXIwYQnG1 bFa+GoMpHLJ5FGKQbJ6EGCibSxAD6Fx/ikzZ3BvRj2ZmyGblwdJls1KbfSnS6PI+9A69KVJpsaso etFiPSl6UKRQdJfNyqfUjaIrrdmF1uxMi9lpFZEima5LokikSKCIp4iTTVMQsbKpDNFJNk1F2Cis FBaKjhQxdIGZLjDRoJEimsJAEUUz9TQzkgY7UERQ6Ci0NDOcZobRoIZCoOAUzNlmnCYqrhgrxFZj pfg72pfhEvyGsV8x9gv8DD/Bjxj/Ab7Hue/QvwgX4Fs4j/Fv4Guc+wr9L+EL+Bw+i64RP42uFT+B j+EjOIexs8gzcBo+RP8D5Ck4Ce/De4YZ4ruGDPEd5NuGOvEtQ4p4Ao6j/aYhVXwDjsFRnD+CscOG evEQ2q+j/Rrarxqmi68Y3OLLhlrxJUON+CKuPYj1XoDnwdl2AMf9sA+ei5ot7o3yiHuivOLuKJ/4 LOyCnRjfAdtxbhvObcWYDC0QhGf088Qt+vni0/qF4lP6RjGgXyQ+CZvhCdgEj8NGfR/xMeSjsAHX PIJcr58hPoz2Q2g/CA+gvQ5r3Y+17sNaazF2L9wDd8MauAvuxHWrsd6qyHxxZeQ4cUVkjdgcuVG8 I3KTuFTTXbxZ4xCXcId4k9Qk3RhokhZLjdKiQKOkb+T6xoTG3MYFjYHGU43OGG3kQmm+tCAwX5on zZVuCMyVdgvLWLWw1DlUmhPwS2F+i9/n1/zo5wE/H+Hn6X4uML/Jb/dronySR/IGPBLzjPc0eYKe sCFBz1mPwDw8clfbga2ehGQX0rnQYzC5ZksN0qxAgzSzul6ajht0O2qk2kCNVO2olKoClVKFY5pU 7rhemuqYIpUFpkiTHSVSaaBEKnZMkq7D/ImOIkkKFEmFjglSQWCCNM6RL+VjPM+RK40N5ErXOkZL YwKjpVEOlzQSD88STYn2RI1JuYH8RNwJS+DD0xOcCWcTLiaEsYRgwoEETYwxXowXehnjeM64ON4Q tzhuZZzGGHssVnDG9urtMnY61ulMpwudwjo6O/VKczGbyWa3aazKs9nyilyhzBpBmTEg9Kx5tq4p LqOVG62iVRgpWjkznzVfNGus+03HTILRyI3GNqPgNGK6MVqMFpRDW7TGGZ0xyGU0iAZBObQZNDan ASPKij2ixhe5jHpRL0hZ+nF6wanPynE59X3SXUzD7ZwzbkJoIpS74FbRhbreauPhHD/PW4oKU1Nz d0WwgtxgxPjSIF8e7F6oHJ0TSoLa5UEmlZROauF8RXELF3KKgpbcCSXUX9rczIYn5QaTCicF1ycV 5wab0HAqjTY0WFKLjQ0vTi3z+r2pqb4yHMq8vtTQb/S4X+mlKoPKb68PfeWXP9RnqX/6ommIqV68 fH8M+lL/1i/+9779/4VXC8NXdFJ2m3AzqxSWwE1wIzTBYlgEjbAQFsB8mAc3wFyYA37wgRdmwyxo gJlQD3UwA6aDG2qhBqqhCiqhAqZBOVwPU6EMpsBkKIUSKIZJcB1MBAmKoBAKYAKMh3GQD3kwFnLh WhgDo2EUuGAkjIAcGA7Z4IQsGAbXwFAYAlfDYHDAIBgIA6A/ZEI/yIB06Atp0Ad6QypcBb2gJ/SA FOgO3aArdIHOYAcRkiEJEiEB4iEOYqET2MAKFugIMWAGExghGgwQBXqIhA4QATrQQjiEZbfhqAEB ODBWyTHGr0Ar/A6X4RL8Br/CL/Az/AQ/wg/wPXwHF+ECfAvnmfL3iiv51/AVfAlfwOfwGXwKn8DH 8BGcg7NwBk7Dh/ABnIKT8D68B+/CO/A2vAUn4Di8CW/AMTgKR+AwHILX4TV4FV6Bl+EleBEOwgvw PByA/bAPnoO9sAd2w7OwC3bCDtgO22AryNACQXgGtsDT8BQE4EnYDE/AJngcNsJj8ChsgEdgPTwM D8GD8ACsg/vhPlgL98I9cDesgbvgTlgNq2AlrIBmuANuh9vgVlgOt8AyWMoqs5s46p+j/jnqn6P+ Oeqfo/456p+j/jnqn6P+Oeqfo/456p+j/jnqn6P+Oeqfo/65B7AHcOwBHHsAxx7AsQdw7AEcewDH HsCxB3DsARx7AMcewLEHcOwBHHsAxx7AsQdw7AEcewDHHsCxB3DsARx7AMcewLEHcOwBHHsAxx7A sQdw7AEcewDHHsBR/xz1z1H/HLXPUfsctc9R+xy1z1H7HLXPUfsctc9R++pPgr/0KlY/gr/0ip1a xsIZu+LVHFf+LjvTscEsj+Wz0r3MgK+0jV3Nt2+3jhgR0Ue3D19XgdnxhY9gnOc4jWGCYWd8fFbX nQO0zRrzGPzP+7YsXTO28qzW061H+7aePh8zuO953vfDc6fPmb47ah7cN/PcW+cy0rm5sznEEi3o dBZt1y5pwoAeKQMzM/sNEwb0T+naJVoIjfUfOGiYJrNfsqCx/DEyTFD6XHP89xLNuFatsKhr1sTM 8OR4o8WgDRcSY2P6DO1uKiztPjQtSafRaTXhEbqeg4Z3ya0b2eWkzpxktSXFRETEJNmsSWZd66nw 6Evfh0dfzgmru7xGox0yOaubZm1khBCm1e5Kjo27akjnMRONHU1h+o4msy1CF2OO6jlicusya6Ky RqLVSmu15jHORvJtQhp+ZhtZ9Dam058PY8qTH8HD4vk6d0nBs2R2xp0LaTHmK2UxePENEYYO4fy3 HsliSkqy1hxPfwuVD1epVCqVSqVSqVQq1d/KcpVKpVKpVCqVSqVSqVQqlUqlUqlUKpVKpVKpVCqV SqVSqVQqlUqlUqn++1g024KjJvSPlCtDR6WtY3PQ4/Rvl1k/drK9rWHRPKq9HYZ2fHtbi3bP9raO DeEDlVXCOmAkkc9ubwuY09ze1mB8XXs7DO2d7W0t2ifQ5mjjfviF9jbuRyhkm5kd95LOMnC0szzm ZhXMwxqYF6qZD2M5aHnYrNCxHCNutGayNJzJZnX4ZWcFGKthtTjnDfWqkFWYPQfHSszMwXV1mDMN Y27McIfmlYMvtGYl5tUjPWwGxpT3Vc7UYvTf31FNqO/HPf0xuwJZj3457swdev+0zfZ+6Rn97Hnu Ck+Dt6HaZ89p8Mxq8JT73A0z0+zZdXX2AndNrc9rL6jyVnnmVFWmjc3PzsvPSc0pr3NP87j/rNce drfXXm73ecorq+rLPTPsDdV2X23VP71ljafBP0sZrmion1U+013lTWNjWT4+uDwcc1jqv3w0ykdX gwerC30YfzbzPz33f/vHzZRKMaZwOzOxg/huC8i+OMXMq7qZUA88VEnhuwpmn1m9Yapx6E8sLiJU Wnu+XnhYyUMnty65fKn19g7f6Hagq9RWqPb+IcAAOB8cUw0KZW5kc3RyZWFtDWVuZG9iag0yNSAw IG9iag08PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDIyNz4+c3RyZWFtDQpo3lRQsW7EIAzd +QqPPXWAcJW6REjVdcnQa9Wk3TlwUqQGkEOG/H2BRqk6YPSe/exn80v33HmXgL9RMD0mGJ23hEtY ySDccHIeGgnWmbSjGs2sI/As7rcl4dz5MUDbMv6ek0uiDe6GobkXJ+CvZJGcnzLzID8+M9OvMX7j jD6BAKXA4sj45UXHq54ReBX+kcMWEWTFzT47WFyiNkjaTwitEOKs8nd+lArQ2/95Jn9Vt9F8aWJH tXgSiu2iVoomo6zdq0qXsuHhyqxE2XA9Q7VVDDmPx6ViiGV2eexHgAEAFNhtJg0KZW5kc3RyZWFt DWVuZG9iag0yNiAwIG9iag08PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDI0MTA3L0xlbmd0 aDEgNjI3MTI+PnN0cmVhbQ0KaN60Wwd8VUX2Pre9F0KLNIEgvPAIXUFEREAIIaGFkhBKQk0hIfQi TbBEQIQAriKoqAioa0HQl9hwbeiiorjKuotl3bUXdEHBtisk7/6/M3PPy8ujyP52/4Ev55sz5c7M nTtzzsyEDCKqS6VkUebI7C7dfv3HU+9B83cgr3B2/rz7Mp7uS3S0PZH1SeHihYHQXfveITL6EDkt iudNm/3LL8PrEPlyiGo1nzbrquLes1clE81DfMqIkqL8qUc+6vYp0U97UV6PEijq7m5QRFR/IcJt SmYvXDqq6zOfI3wHUZ9Ns+YW5ltT2w0lCq1H+O7Z+UvnJQ1qi/J+2o70gTn5s4v+cdXjbxMd5/os mTf3yoWoN36Ox3H8vAVF82Y+ZoaJhnVG8Qlk2Z2Mm8mhOGeLcwlq3VJL6yCtNimOzPqOaZq2Zdqf kOmm0C4XpXB/0PDsQIBSiMKuj8Jk7PPfY7YNkLGN46ynnXr8NH6y/x6kuZWifzJpBl2J/iyl1bSB bqUX6UMqoJVgW2g7PUAPU4heotfpPfof/oSvcmZTHetp8lFDIveEezT8ALAHNa3W3IpQQztQrXET 3O9idN+Fb3UTwnt8DShe5a1rvgPtj0aVe8Lsx2G3B4fNG8HrqxzH/feEHws/GNMHWTSeJtBEmkR5 lI/2T6USmo6emUmzaDbNUaE5iJuG38UITUGqQqRiXp1qLs0DFtBCWkSL8W8e+JVeiOPmq/AiWoJ/ S+kqWkbL6Wq6xvu9RGmuRswyFV4KXEvX4c1cTysUE6k1K2kV3YC3diOtobVnDa2NsDJaR+vxnm+i 352Rb6gRuhn/bqGNGA+baDPdRndgXNxFd8dob1f6O+ke2oYxw3GbodmmGMc+R6/Sk/QoPUZPqb4s RK/pHpF+KVZ9OA99cDVauDKqxrr/lkR661q0ndtW5rV0KfQronIs9vqRU65ESl2Kfg9cyjUxPXEz 2qB5dYt0aLNqf7U2ulfOppX+uDuqZ+5SIWax2jPx22grvsAd+M29yuxecM22KR6tvyeSdrsK30f3 0+/xLh5UTKTWPAD+ID2Eb3snPUK78K+aRzMtH6Xd6s2FqJwq6HF6Am/yKXqa9ij92eJOp3/c01dE NM/QH+hZjJAXaC9mmpfxTzTPQ/eip92ndDr8Mv0RYU6lQ6/Sa5ih3qAD9Ca9Ta8g9Jb6vR+hg/QO /YXeM+qC/Zm+we8qOuh8QfWoP9aEP6Cf76bJNDll0NQpkydNnDA+N2fM6OxRWZkjRwwfljF0yOBB A9PTBqT2T+nX94o+vXtd3vOyHpd2uejCzu3bJrcJtm7VtNF5CfXr1o6vFef3OZiZDeqcHhyYFwi1 zQvZbYODB1/I4WA+FPlRirxQAKqBNdOEAnkqWaBmyhSkLI5JmaJTpkRSGgmBPtTnws6B9GAg9Ke0 YGCPMT4rB3xDWjA3EDqq+HDF7bYqUBeBpCTkCKQ3LUkLhIy8QHpo4OKSsvS8NJRXXjt+QHBAUfyF nak8vjZobbBQ++C8cqN9X0MRs316r3KsS3X5sSErOT1/aigzKyc9LTEpKVfpaIAqK+QbEPKrsgLT uc60LlDeeW/Z+j0JVJDXqc7U4NT8iTkhKx+Zyqz0srIbQ+d1CnUIpoU6LPuiKZpcFOocTEsPdQqi sIxRkQcYISc5IRgo+5lQ+eDRIzU1+Z7Gl5zwMzHlJka6CfHCCXVDDdG+pCSuy7o9KVSAQKg0K0eH A1SQWEEpXTrlhsw8jtkrMY3HcEypxESy5wWT+FWl53n/F5c0DZUWBC7sjN5X/5PxH/GBkNU2r6Cw hGV+UVkwLU332+icUEoaSEq+19b08q5dkD4/D42Yzt2QlRPqEpwXahRM1QmgCPA7mJ6do7J42UKN BoRgGHm5Ql3S07hegfSyvDRdQS4rmJXzDF3iflLePZD4+CXUnXK5HqEmA/BS2qaX5UwtDrXKS5yK 8VkcyElMCqXkovtygzlFufyWggmhDp/gcUnqiSoX2haTWhJzy/3JcYEcM9HK5bcFRWAgfgVT+yAi Aa9LBfmNpvYJ5BiJJMnwFC8FsxrlIGAlDxjMURZnHTA4MSk3Sf+cpUqJXp2c5FBcVFkJUETqpJ9z xqrp1FyhDoH0orSoCtYo1PEq6JV2+nqa3Bfeg5Ejjl/nYImykvHlQmeiGKXit9g0EKLMQE6wKJgb xBhKyczhtnFfq/ebkR3MyBqfo962N0pG1wjp+J46FKIkREvAHIAxOLBTorxWFR6kwpHg4JjoIRId KIsLZmSXceFBr0AK4AtCo31th+Sv69mgOz7NgZjdggPzg4GEwMCy/D1uaUFZeUpK2bz0vJJeXEZw yNSyYHZOn0RV11E51yQu40c1oAwjY3TqhZ0x96SWB401WeUpxprs8TnPJMDKXTM6p8I0zAF5qbnl bRCX80wApr3SmqxlJQcCHOCSRiEQp9InPgMLulTF2kqhwoV7DFK6ONEZVLjH1LoE0ZnQ2VqXonT8 g5fUtARdjOk2PTCVX8/VuSVlebn8cVETvEr8N0JGsC+FzGDfcsP01QnFB4tSQ7WDqazvx/p+Wu9j vR8Dw2hioHN4TirLC2KewoDKoURDD0WLiwzscd3ROUl/Sjyam4ShNhEYnxOq1Qlzv5M8FOkGMfKg HhQqLcznetCYHM7rTx5SmIthKwUiyZBQLZRQyysBKQaqPDwckakQ7wYvUOUvRSBUmhvK7cQPzZme q4ZzQogGB3vhtesynbb8oC65ZQ2C3dS3iU8hPvlGFrVQN8rO0ZpEBPGwXN1J/jqoeWEQUYV5AfS2 TYXZGOp6Lo1P1JoiTIl22yKF+EQvkrhZVnLtuvGhWhehQPxnXvsi/iSdZH9urq68Ct3oJcCzE0K1 UaO2UV3pZUDvIGoI1wX/b0RVOelLXEzWHhoVXIqZhSutSvIjOlQ3eUg+Jn+dvzY0wZ6SOY7niNpe Gfu01s8tr4N+t5JH73EfDF6VFPVzYecgLw48MCnxGQxsyi2LVYQmdLqwc1ystq5Sl5XF1T19Bt1f cXUjkpWBdKwa2sfUfmX89pMnTmyvdUR7ndU/9dvY9apDBjxeewcFzxW+RPdNhj2edtlplH9aHEHc EbrddimRYR2mXUC6Jwd6KASmANd7+l3Wbtrl1KEJsbArUR7gpFDAtGmXabtDIdtDXg5cDGQCI4Hl 0LcE2tkbkW4D+c0N7sN2e+QHrEkK11sFHp9HLezJtMv3HsrueBr4gWFU+JsYqeH7ngrt1ngW4BSA 54BrZLNE+wZ5aAw0jYS/ovrRcFrTznOFXUat/S3piljY7agrymp5Cl6k3h6aK/kTJZwrnInuZwzb ph3WAZp9OthFtAOYYS+hbgyrFGlLURctAx46Ax2AVE+/w8pEvhU06xQshX4prbe3UopxhHYYR9wc yGaQg4F2wBhgFDAf+vOApnYi7TD7Epl93fXW6ygbMD9RuNH8yuPHULdDtMPnQ/m3RLAFWKp4MbCT in8Tf9BAOcXWK3gWYJeDHwXXSFdyJA3RcH8GfomEc6mFleuGtcR43EDbgLs9eTuwyOOnwKqiJF9f uiwW1pvUw1qJdxaL6ZTmIU7JQzQxBi1Po1PwddGwu9MWfD/jPYwAxknYP5fG+/4BGBpIm2evB2YA 3SnfOkmTzgXmfEr23UnJcYco2X4E/C6P94nByBh4et/iGKyNgaevkb4WnjEgquyV1XH2UQ2nISX7 21OytY8ujYVq66nYYnd3d9sD3F+Nd+kG4113DmR9yPFAAFgA5ADToD8P2GLtpRvslrTG+NY95KHQ ug96D5wG6Gi2UDLDOEktzCra4pvKz6qBEUre625VsifeR02MPEXXR8P3pnp3Uk6e+QZt0XB/hZxj JVGWBsZtklslYedRDZS1xTiO9I9SkrkPYPkctbW/oiR70bkBfZ3kz8D4/uDcgHpuAm7y5GpgOLDW 45uiYW2l1s4eujQW1hLMSduo9SnoQLke/Er2pAVWPk21lmKs7qI080uaZY5QcrC5hwYZL1Eb83a8 o29ollFI+cZs932EZxmTMZ+NRdqvFNJVPuQxfoHsSqnG5xTkPOYN1Mr6njqb12KNW02tzMso1RyN +WwRsIlX7ao4osrD5thTdagfWVMApavcBkyL0W0FphsuwncC9wIPKX0RkGe1QXk/QzcQmKb024Fr rXYIDwFmRMq4xqqDcH3gPKXbBTxs3oL8dwDble4b4DMTNob5MvAk0r4EfAqbQ1kflaOAi423YIe8 C7ylgbYMZ6BtqyCXmdcpudj4F60yLxZ7xV3LNoiVjfV1FfXSNkT4NV7TtL0QvofXZm0vhOEmuKOU HbCZ2sh6jz7O1mu420TlwbptPQLbRK/DWC/Dc1j6GuKZWE99RDc7mTTZyQz/Kmsir4XmSbXGBCNr GeZWb93aYT9BxXrdQtuOuKPVevQpnSfrjnUjTY6sJUv1+mFNoAy1HkTN3Q56iud1J4du5PVFoQy2 FiMF32k3jMeNWPu6It3vMUYBcz/mgGGIY/THfLSUfGY32mR2c48Ay4D6al55Au0rhrwdY92k4ZaF b0fmhFnU3m5Ai5E/F+9/otWMLHsM3ezhGqCJ04PGOL1pDNrdwHmYNjkbaSrDXKveZTz6id91D9Oh 2yNog3Hv0hyGep/Dabd6n/M8LMY7akdWlO2Y7yvBM96gDIftKw+ePZjJtl7E3vqcLN8J4D1tN/qt ajvO/lW/Z7ZTxfZCOzX2YF7YpN+10wJpfgYW0ELfDyijJfg/qb6vKWQKUECT7Hwq8MeBz4d95yL/ D7DdMLDV2PiO7lV2UiMP7fC+S6lelD3U2VmKNbiUxtlrEbeWbgM2ezbOGLZf0NYdDLxbQ42XpZ5N 8jAwwxsrbHeJHbEVY3YrbO4uaEe8Hi/2TcgzHelO0GxfEPZOOsJT6HxnJXSHgS9opnUM9ks3cBfr +xRqZRcC+AKxhhtKj/XfHoB+4bF1CPP6Pg+HeA1yc2Dnnc/rRPQajvL7wibIsLMx9rJhU2VjTdNr 4AJe16ynMN4AuzE18ZnU0JlOU+xBWMfae2vVxUBHtf6sjtgcvM40o3he67y5uan1DrW2w9Bj7sZY 3GJfotbQVOevtMUJIzyU4p3R0L0MrMPY3oC6vQp+gHra2e6vvDbjfTe15qBtHjBWf88w7zLizbvo RYb1JN0ATFb4CGM7j44C5dZUWoa1YArGcUce08CzPL6d1XQbdOtZLxLvaA3QSaSn62Q+RQuBvSLt ZrD5muF78KR1Phnmx1gTHjPKrErjUYRrI3yheSXWEMCqhD0J+PvS5mhA96tVSS9FvrnZdAOwzFyI Ni2k8eYqGgssMlMwr6ZAP5RCwLQzpUNZ9wBLgKXAYjtEM+0rYA9U0gzgCmMfrbMupXUO1iQHa5P/ XwDWDX8fLX276TEG/M9S537q5+yi4WgvIW8/+3EaAn1H8HGQbDvlgD8DDEU4G3I2+qITeHfrR6zV 2/D9vgD/cRvSbYOdlkRD4i7BXFGJ+f1zjPHz6AJ7E00xD2BePkIFQBbGR2vrPcgedK1VAZutB+aD Hhjb9Wgw8CiwAJgGBIAiYCZQCIxSGIC+2UDNrOsxD16J+XAXtbVKUI+n0QdDqAvGRob1HI1CfTKB DUARUAD0AqapOm/D+NmG8Yo0p9Sv/TnXr+vp6ofvY7Dxb9gQIcowd1N/80NKNh/AGPmYJmBd7mZ+ Cv3HsFO+pSzILPMgjTOeozwg57/Ja26lnsbPdLE5ivqYQzAuh1IjcyDyZFFXsye1NsehrOEo+1zT lbsZVkNKc6YAWEud8z15EZANvE4jFKbRIOdp4F7gT9TOuYbSwdOxtrM9NzhuBA2GbqL/dbyvSqzr lTQMyAM6AZM9ngvgG8K70vFjgLE8np1vqLPt0KW+v9B0vPt88yjsv0qKY3uD7QBeM31FmItH0wS7 CQ3FN3cncBvwukI9esxfz+glMn4E3enrCd+tmNobZbAH/qbW3f8SxsGYPZpmQGPgAi/cIgpKF9lv OQxf8bB7GPjGk4dZhzW1MbD9rHsem84A2Zt49fSosRcR8S/dZ4FyYI8GfMoIj+gmRq0vXa2T7oce PgAOsB7rS1teY6p9Gvcw8G21hG77KRiipPgH70Sw3pMDWXrrjckSa282+r5n9d6I+zyw15P7Pd3+ moBO7MNS9xjwILAduBe4CXreu6gFbIraX0gCWkfJYvvIGeDtCTiNI7jTk4tYajvSPc7ynMbdS1Ts tIHdxPDBxrkVcyrjatQfNhP7dGxzsN8a7ZNH+93wI1qYX9NNlg9rdwbdZD4ErEc4DeEJdJPxAHCA HPMT6BG2ZyNuEebNRVhz3ld8PNbecWYpDcTcYMOOGmd+Ts3tdMwVT6LsdcAeyoSNWcWwi103GtZL DKwvdSDrRKTJPgTDcF03GiijFsPcSSs83MGAT7IqSqdxHeoMKH/pFlqF77AK+kZAQ+VvRYBnsp/F /pNaj4E7te9F5MJnCw/DM09qhPtpVL3M8J7bCOWvhGwM3Mqw7jSG6fy63bre7GuxDD/t1aMRP4v7 gdsgz4yFbVAj2zAGcWnmTk6LvnhLQ/cZ69Vz9zOs47Rf4sVfg367Vc511fn9E6mPfyLLaFA/30HX ZYBbHlKMj6mrwtfUjUH/pjSG6ceawKhFwxjGVqTZqnTdFDy95cGY4mEUNVX4IzVReBFjFED/Z0UD ff+I9TzGSXP0AaMJGQrNY2CQGQ1+BvcD2q36At9efeW7pFBL5RNshT/mUqJzrdIPw3w6y0mGb/YG xvxu912nHtaKMozbTPgtbWGrwyf118Lc2BFxmFd9XZD/C+SV/WL4o3Y/b1+YfU/e80319nHhC3G5 WPtL4h6hXXGNaZePfZ1BKPNpoBG+W8z38I96qTn7dPvHUfv6kf329nSlzPMoPy5usy6b4/zsQ/9V +8/wwb/X64n7Kdo5B342+2LDkK+38rVy3BfRjjl4Thd+FtdX7eNjTkGdh8P/7i3rUez6wusDyv/A TnO/tiZRovUV1oBNNNWeib5NR7/Bj8dz7zF3kB++TiF8nOaYxxNVe/hsQmNL1HlEDeCZqzysALqr cwjv/EHOGzy0Z4l29QDmy1kCsN07T7gUyAOK2d8UnHKWENM+OSeIOiNYEnNGMOg/OR/gc4DoswD2 YSNnAC9S48i+P/fly+5d8JMS+XnqXczHcz/Du0jDmrYb9tCT0M2gdt7+n2097u3lduW9Wfc73wC9 N8h7B2Z/amc9gTlkGPytvpSr9PDTMKerfT/YS4lqz4zHajHs4BLK9HN/7YXt1BJpD9FY+ITj1Nrc nZYBa6KBdb0AaXIYav95mPuZ2nO9j3rJOo+yL4JPmafK1XuxKNd9UdsMSK9sg/BbeE4R7ICjnMd8 w73SfIMS7O6YA7rTjWpsdoft/Se0k23pYaizZ3PE7peyDWCupTvsf+o9Tt+tlOfbiGcXYF1nH5Xb i7GKvH3MFPdfDLWP6qKvPoMdsUD5Ogs4rfEj/LsOmD9uxxiDv6l87eq919Xs955ubzlmz7yf7JtL +z1MAxqyXYO2t/IwPmo/eSbW77XeHjQjl31rQXQ9FHQfVO8be/He/nAZEI9+dav3hxUsNR4e9faB H3XfYXh7s/2B5d5e7WprKxnRe7NqP1b2ZDsgTu/BEqdFGa+qNByHPjOOU7Yai4eoA+JuswvRvg+B NOR5mXqgH3ub31EfqxnGaW8agzEfx3s0QCPrAA1W/iWfWf1F6bNhjy2w76diq4xKrEzYjytoFvzO hmY32CxH3DDv4/m60S32LYiDXeZspDn4puK8s55stYe3EmE+0ynX9hn8RH0GczPs21tppnUHjfG/ RTvixuA7HE874MPs8r1NO/wl+B5hL+I5g5TNt4FuO+XsJ+pMTs7KUKdRYjviGSRlc5xvDGy3Atqu 9hx/cl/R9ihs7lIabhwJH8Sz5iHfBSrvUfd+tGMqnkPqWaivOoO7Ve05jbPWow2ePRt7HqbsTI47 QG0wB7Szct1/WpfD1+Uz2Q0IV2FOKIWd0Bdlr1PnZO2Qpw6eMYbT4XvYhXe8S30PeXRU9lg9zIk6 Y2Rc78nNqEtHoC3QHyBgaORMUfZil9KdQIA52tuR99nkfBC41jsjJKA90Ib33ARRZ4Qase32zv6i zv36ArdUn/spUPWZn0JToJn3Tq/y5CI524s+31NnenKuN50c7xxPtQVlxKs0Xt+rfp8M/+IVSNTF fgppvtf70mqsZ2L+2AK92O2DPESfq8Xa8ys8RJ+pyTnaOZznnMsZDr7d26rPzdSeX2/rrur5T60F gJMIX12fOWbYlwK9Mff113OsQhbitlIr6yBsiEuUX6fnKcwPmON+5D1wPkczv3YfNH9lHeJXY84r pE0Kau5zX1b5svV+pIM1UO1r96AxmOeCUdDz3020CQjim75Bgef2b91DZqr7byXL3H2Y//rzHIh5 pZ29GGvAGLpZ5js1j2WhzjzH/QV4DvPHszRWrSObaLKSaLPjpym8B4s2j4ctNJ73TLlszOXteG5T /eTl8c3FuvRXyvM3Q5/8iP7dR0nOMvR1HbyzR5F2Ovr4e+oMzEN7D9nD3UPWu5hT6rufY60tsBug zAM0A3bBFjsXtkQ/pJ9LY9jHNtmfuQX+0THqqvZuuZ8Wot8PwLbh/emHMCe2p0a+N9GGkqi1+iGU 8TbWV0Y/2CAz8E0WUYbzGmX4psKv+YgCvnroj5GUanWBPcJrCN6j+QPyIc7OhEQZThdaiTXUYB8T djixn2meRH3Fz3yIMs/Bz9S+ZgUNZn9T+Zqen6l8TD7b26XP6OxO3jmfd8ansAR+KeN26sjnfHzG V+N8bwT1UNI764uc730Im36sPuczh1Jd8wXwgYhbSe2tIoyvKfBf+NyQzwW988BIGpSDNJmcxrcJ Y/tZ90H7ebzzePdB393ul/YTsANfwLc/CmgObMX6Vh+yg/sy3n9vi+dQ2Ai+NViL8T2Y0zEWS4AP gX2ezZcFWwW2BOzUPBs2mnGMZvquU3pZ72dYy7Gmn8B4wfjFHNPB6gPb72rYLu9H2SfeN8rfLI8Z tQZfgm/yfdpkLaYMtGWmOjedA1QASyiVz04Bf+T8dCN8zJ3qHHW24l8CmxBejvW+DdbcsbrPrUSM xxaQaB/3t9UDfc5nqrPd940vVL8T3llnxM1RuME7V90EPAAsgK3G7+kb3ecqH/ofSDYtYB3K5jPZ 1dTK2Eejre40usb+Pnx15a9voSJgluwp2hmUxjCz6Ad1XsvnuOC8H6A46y7Hd3S53mc47V7DTvQV ++D56JvJ+qxYnQ3zcxLotljY42oCugGQZ0KXWCA9y+RYQN8c8hRAnwp5OsTW40zpUs9Sj9Pp20Ke gv+2HmcpNwh5Cs5SvwzI0+Fc63Gmfm4DeQrOUo8RkKdDjXpgbBUwlG3N+0J8JrUTc7yG2vfhPS4e r5E9NaRTZ13eHpnATnF/YVgm3aH2vBht1B4R+RvQXxlqXuX5k783Hsd8Z+ID19XA9w3w2XE0iCqL GTX31nTZCmfS/xQD0bfTe1tq7+8DLxyVP3Y/NLYc2BBPMZQvr+89DhAJn7uePTa8n6XaU+A0k6il A5vWvpfqq3Ts+/OZPdYfIJXP5u33KMu3Cr40n7c3gN+k58/eItUZ+1LM+byObkG6V/h+D9Xnc3m2 MezFAJ8fYf317uMNjsi1GD9rw3OVzFR31CbAF23pEPgk2M4fIh3fXdvhvmLvCJcBBeCtgVfB10WF S4GcmmcOZ8/jK6Kgr8h9xVcULgMKwKFzXwVfJ2HrcPiY/Xx4BbBM8ZfCqz1+P7DZrgwfc/4cXgEs c3LDO08Tvh/Y7N39OGta3174WXvDx/ybwyuAZf4LWFczbNrhY+YH4RXAMjP/tOH7gc2m7Y4AljnD XJ/zc3iFr054ueI/hK/zOeGFzrDw28Auu3X4mPVVeJNzPurRMHytvS28E+FBGvo8xMlU+Zb76oaX OlvCOyPh88JX6zDKygzv0ndQzp7W34gm+xu5Pv9T4eX+P4eX+iexzgsfCl/N4cj9kd/G+P8gbY18 chcFGOnJUR6U3rufshH4HbApKrwxKszIjeLnlB7fp2F2c1cDK4EChMkLM/KABLNb+G2Pfw8sBzoA 04GS09yZqwn9nS727sKs8LDqNOEGQAJQGnV3pj8wn+/QyH2Z/w/8J/d7/6O7wM/8NrzzriEeYvny KL/8tzD3XNL5+vw29BmbW+Ch6NSwm2AcCX8DOdW7s7Xe2yvI9vZIznofOLIPwL44z7X/M+n+bK0F YvSRu2D/I/gW/TbOZc4/l3n4XOaxc1k7Yudz8OGx4VPmw0bh/BrzIcJif4jNoc7Iou2JaB5lT0Ts hzraLoB/cJXAGaHui8Wru4XF8Hf7o64V+h6b/Xtv738GJTp1qL46ay2nXf6ekJ20XVF9FxF+02L4 2u/AfriTFvK9NGC38wu1Z/A9OL4fZ09B3npkRc4vkM7v1+dAcs5jHaZcPpNieHfqGte4Vxd9TlFA wyL34xgLaD7fueR7cKo9N+hzBrTxUt8kusx3AV1hN6cr/PXJ4rMipzFNcJLQhjdovFML9ZoC//1j 7Wfy3ou1Db78Xn1XDP2p7oRZ/0T8IPTZfMzj7yP+OORcrBdsBzWjeOVzMiqoA2ygeOtb2Mx7FbbY +6kZQ90/exvhJGrCeyT2aO9e2FM0hfvKOkQXyZkC/NOxkb0lfW8tjvdf7GzaDNweuY8GWOvIrnE3 eC914LtwfMdMtadc71mzD+wbQ3nOXWjXHyjD14qa+DJRj3TKtK9HnXlfvxPq9pC6h9dOzRmNII/Q Duegdy+whb7/B7RDPc6370CcgXlsCea7e6lI2XZR90TthtTDSacW6P/ZfN8P2OGMpACD7xWq+4Yu 8o4nQ82ZO7x7gV14T7h6P5n/LoPLZ3h3FC21B7yWtivIHUS2M79Qdw6rcQLpG+FZK3V77PO9fcvD NNRZA+TSAut9WoBxbPiaoQ5r4L+noQ2lVGJPRL1g6ceRvh/M0nwM4L9TGgNdJuRzwBaK+qMm9+9A sl2P+O+a2qjvs9L9lX1yK4fWiK9u3w8sNuIRd9K8Ej75dzRS/l4JNno7vmPG+35ORwr48zC+B6s7 nwHnZ3XWl8jfYdxD1M3u5YbtFZRkV9AEezMFkDfAZfD9M4D76ytnK33F94v8Bj0HWWCPMt6zR9EL NsE3IuN5DeHuL3z+i7ZP4O8ZZc23D1Ivp4AWWq9TAuq0ye5CU+ym+EbHU7ZdG99af5prtcX74vux HuCb7fWwX2Gnu55hf0K5/p8o3v8ZNfLfgW9yFuqKOcipTW18D0LupzH+fvge3qAkvt9s76EWcRPV t9+b0zK4fc4Mau10V/crE53HIEsp0Vcb39QIasJ3fq133H3+dIzpu2m8LxXzC9LzGPftodnOH/Ge s6kBvvMdeO5AtInX/9bqLvNF1Np/nIqd+lTiC2EsIr11N/Ca8ks/xHvZoN9xOIv/Vo19TuM1vH/e byt3M+K30xP2IdpoHqKVDPAKyHms/y3Anxysx1DV+TKaIncj2kQhKsz7NZF14Hl132G9k2l8yXfU JS2nwQ9WBPoUOMp/vlejvLMg9idSn4G6TOV71/fu5w/04gZ7uFdD1XGKSn8PwLf4W3u8Bs7gi9RT iLb19lQj2iaLsqvmwj7Zr4E0Z7An0M/4equaA0uAkUQnw8AJvAc6szwbqg5CdtU46Z6KSvm7hN2e BKoSPXSPQZ6HKz1gtFVNicF1GpU7IOfquzeV3wM/eH8nwXjUe16xF+7igcNTvDofh5wN+SPkfA/l 3t9gHPfQRbeB+0rvfXjx0cAIqLoK8iONqgyNyoc0VLkPaFR+DjnMg5eu6lroP67OX/k7728yorER uN3DWA+3IO8KD/M8nPAgfXWVh995mONhmUblSY2qpzw85KHEg9cvkf4QjAbaeujgoV0MLq2J6PJV Pwz0MMiDWROqb4u9v5+Jxg4PZ9JfFgMZE9v0mKi6RD8vNr8aq2bUmI0pp+p5jUp83ZX3aVT9uSYq ZzB4jwF+wgENas7n+6fcH/DO9c5ljvz/hH0N3Yf5PUijKbGilhXYY656olZTYyjISiErhFwvpFTI dUKuFXKNkKuFLBeyTMhVQpYKWSJksZBFQhYKuVLIfCHzhMwVMkfIbCGzhMwUMkPIdCElQqYJKRZS JGSqkEIhBULyheQJmSJkspBJQiYKmSBkvJBcITlCxgkZK2SMkNFCsoWMEpIlJFPISCEjhAwXMkxI hpChQoYIGSxkkJCBQtKFpAkZICRVSH8hKUL6Cekr5AohfYT0FtJLyOVCegq5TEgPIZcK6S7kEiHd hFwspKuQLkIuEnKhkM5COgnpKKSDkPZC2glpKyRZSBshQSGthSQJCQhpJaSlkAuEtBCSKKS5kGZC mgo5X0gTIY2FNBLSUEgDIecJSRBSX0g9IXWF1BFSW0i8kFpC4oT4hfiEOEJsIZYQU4ghhDxiuELC QqqEVAo5KeSEkF+F/FvIv4T8IuRnIT8J+VHID0KOCzkm5Hsh3wk5KuSIkH8K+VbIN0IOC/layFdC vhTyhZDPhXwm5FMhnwj5WMhHQv4h5O9CPhTyNyEfCHlfyHtC3hVySMhfhfxFyDtC/izkoJC3hbwl 5E9C3hRyQMgbQl4Xsl/Ia0JeFfKKkH1C/ijkZSEvCdkr5EUhLwh5XshzQp4V8gchzwjZI+RpIU8J eVLIE0IeF1IhpFxISMhjQh4VslvILiGPCNkp5GEhDwl5UMgDQn4v5H4h9wm5V8gOIduFbBNyj5Ct Qu4WcpeQO4VsEXKHkNuF3CZks5BNQm4VslHILUJuFvI7ITcJ2SBkvZB1QsqErBWyRsiNQlYLuUGI mD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD2GmD3GAiFi /xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi /xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi/xhi9hhi9hhi9hhi7Rhi7Rhi7Rhi 7Rhi7Rhi7Rhi7Rhi7Rhi7RgDHmcCq7miZd9WsJkrWjaGWKFD11e07AVRqkPXaXFtRcs6ENfo0NVa LNdimRZXVVzQH2JpxQUDIJZosViLRTpuoQ5dqcUCrZxfcUEqxDwt5moxRyeZrcUsLWZWtEiHmKHF dC1KtJimRXFFizSIIh2aqkWhFgVa5GuRp8UULSbrfJN0aKIWE7QYr0WuFjlajNNirBZjtBitRbYW o7TI0iJTi5FajNBiuBbDtMjQYmhF4hCIIVoMrkgcCjFIi4EViRkQ6RWJwyDStBigRaqO66/zpWjR T+frq8UVWvTRKXtr0Utnv1yLnlpcpkUPLS7VhXXX4hJdSjctLtaiqy6sixYX6XwXatFZi05adNSi gxbttWini26rRbIus40WQS1a66KTtAjofK20aKnFBVq00CJRi+YVzUdANNOiaUXzkRDna9FEKxtr 0UgrG2rRQIvzdFyCFvW1sp4WdbWoo+NqaxGvRS0dF6eFXwtfRbNMCKeiWRaErYWllaYOGVqQEoar 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 YJxq3BjiQZK0UkiARSo5JRyDIPmB4vq//9kNCmVuZHN0cmVhbQ1lbmRvYmoNMzkgMCBvYmoNPDwv Qml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDMgMCBSL0ZpbHRlci9EQ1REZWNvZGUvSGVp Z2h0IDQxL0xlbmd0aCAxMzIxL1N1YnR5cGUvSW1hZ2UvVHlwZS9YT2JqZWN0L1dpZHRoIDcxPj5z dHJlYW0NCv/Y/+4ADkFkb2JlAGSAAAAAAf/bAIQADAgICAkIDAkJDBELCgsRFQ8MDA8VGBMTFRMT GBcSFBQUFBIXFxscHhwbFyQkJyckJDUzMzM1Ozs7Ozs7Ozs7OwENCwsNDg0QDg4QFA4PDhQUEBER EBQdFBQVFBQdJRoXFxcXGiUgIx4eHiMgKCglJSgoMjIwMjI7Ozs7Ozs7Ozs7/8AAEQgAKQBHAwEi AAIRAQMRAf/EAT8AAAEFAQEBAQEBAAAAAAAAAAMAAQIEBQYHCAkKCwEAAQUBAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAABBAEDAgQCBQcGCAUDDDMBAAIRAwQhEjEFQVFhEyJxgTIGFJGhsUIjJBVS wWIzNHKC0UMHJZJT8OHxY3M1FqKygyZEk1RkRcKjdDYX0lXiZfKzhMPTdePzRieUpIW0lcTU5PSl tcXV5fVWZnaGlqa2xtbm9jdHV2d3h5ent8fX5/cRAAICAQIEBAMEBQYHBwYFNQEAAhEDITESBEFR YXEiEwUygZEUobFCI8FS0fAzJGLhcoKSQ1MVY3M08SUGFqKygwcmNcLSRJNUoxdkRVU2dGXi8rOE w9N14/NGlKSFtJXE1OT0pbXF1eX1VmZ2hpamtsbW5vYnN0dXZ3eHl6e3x//aAAwDAQACEQMRAD8A 9VVfPtNOFfaDtLK3EO8CBonysujEr9S520Ew0dyT2AXIfWLrd3VrD0fCOylvuzrgdA39yVFmzQxQ lOZoANnlOVnmyR0qANymdgBu9B9WOpO6n0ejJeZfGx5PdzeStZcV9TOp14dTMSwFtGVdY3Gd2lnb 5rtUcM+LHEncgWnn8PtcxkAFQMiYeV/sUkkkpGqpJJJJSkkkklPFdVys3Itys8c1u+y4FPYOOjrf iEI9M+xYTOn4v6TLyfpP7lzvpPd8FsZGAWX0lwhtVxcf7XCk/Hsa622v+evd6VZ/dZ4hc5zWaWfJ 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 dHJlYW0NZW5kb2JqDTIgMCBvYmoNPDwvTGVuZ3RoIDM0MTIvU3VidHlwZS9YTUwvVHlwZS9NZXRh ZGF0YT4+c3RyZWFtDQo8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pO VGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJB ZG9iZSBYTVAgQ29yZSA1LjQtYzAwNSA3OC4xNDczMjYsIDIwMTIvMDgvMjMtMTM6MDM6MDMgICAg ICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8y Mi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAg ICAgICAgICAgIHhtbG5zOnBkZj0iaHR0cDovL25zLmFkb2JlLmNvbS9wZGYvMS4zLyIKICAgICAg ICAgICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICAgICAgICAg ICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICAgICAgICAg IHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIj4KICAgICAgICAg PHBkZjpQcm9kdWNlcj5BY3JvYmF0IERpc3RpbGxlciAxMS4wIChXaW5kb3dzKTwvcGRmOlByb2R1 Y2VyPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPlBTY3JpcHQ1LmRsbCBWZXJzaW9uIDUuMi4y PC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6TW9kaWZ5RGF0ZT4yMDE0LTA1LTEzVDEw OjQ1OjUyLTA1OjAwPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPHhtcDpDcmVhdGVEYXRlPjIw MTQtMDUtMTNUMTA6NDU6NTItMDU6MDA8L3htcDpDcmVhdGVEYXRlPgogICAgICAgICA8ZGM6Zm9y bWF0PmFwcGxpY2F0aW9uL3BkZjwvZGM6Zm9ybWF0PgogICAgICAgICA8ZGM6dGl0bGU+CiAgICAg ICAgICAgIDxyZGY6QWx0PgogICAgICAgICAgICAgICA8cmRmOmxpIHhtbDpsYW5nPSJ4LWRlZmF1 bHQiPk1pY3Jvc29mdCBXb3JkIC0gRkhJUi1Dc3VpdGUuZG9jeDwvcmRmOmxpPgogICAgICAgICAg ICA8L3JkZjpBbHQ+CiAgICAgICAgIDwvZGM6dGl0bGU+CiAgICAgICAgIDxkYzpjcmVhdG9yPgog ICAgICAgICAgICA8cmRmOlNlcT4KICAgICAgICAgICAgICAgPHJkZjpsaT5Xb29keTwvcmRmOmxp PgogICAgICAgICAgICA8L3JkZjpTZXE+CiAgICAgICAgIDwvZGM6Y3JlYXRvcj4KICAgICAgICAg PHhtcE1NOkRvY3VtZW50SUQ+dXVpZDpkNWNkNTNiZS00YWJlLTQ3YTMtOWJkNy02ODZmOGE3NDc4 NGI8L3htcE1NOkRvY3VtZW50SUQ+CiAgICAgICAgIDx4bXBNTTpJbnN0YW5jZUlEPnV1aWQ6ZGQ1 MjEwM2ItMTU4NC00MjgwLTg4ZjItNmYyZjUzMjNkYjU3PC94bXBNTTpJbnN0YW5jZUlEPgogICAg ICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5k PSJ3Ij8+DQplbmRzdHJlYW0NZW5kb2JqDTMgMCBvYmoNPDwvRmlsdGVyL0ZsYXRlRGVjb2RlL0Zp cnN0IDQvTGVuZ3RoIDQ5L04gMS9UeXBlL09ialN0bT4+c3RyZWFtDQpo3rJQMFCwsdF3zi/NK1Ew 1PfOTCmONjQCCgbF6odUFqTqBySmpxbb2QEEGADf+gutDQplbmRzdHJlYW0NZW5kb2JqDTQgMCBv YmoNPDwvRmlsdGVyL0ZsYXRlRGVjb2RlL0ZpcnN0IDQvTGVuZ3RoIDE3My9OIDEvVHlwZS9PYmpT dG0+PnN0cmVhbQ0KaN58zLEKwjAQgOFXuc1kaJrUZlBEEIvoUCgqdulSm4iB4Mnlivr2dnB2/79/ ARpWq3wz8h1JtIjuI/Mt+Z4DPqqevaiWhTaltmZudGltkWk703r2qybUnAYKT7bKxQgXT2mSYFWh CpnX6P5PGkI3Dp7EZiC89gxVSBxi9ATGKA2daMPD4St1UubnwNGLOkxpwhtDi+Qgg93+cMy2aQzs lcPhLdfrrwADAKY3QQENCmVuZHN0cmVhbQ1lbmRvYmoNNSAwIG9iag08PC9EZWNvZGVQYXJtczw8 L0NvbHVtbnMgNS9QcmVkaWN0b3IgMTI+Pi9GaWx0ZXIvRmxhdGVEZWNvZGUvSURbPDRDRDkwQkY3 MkI2NjU5NkVCMEJDQzlBN0ZGNzIwMjE3PjwyOTkwODAzRkY2QTc0OTQ4OEEwNTdBREQzRDdFQTM0 Nj5dL0luZm8gOSAwIFIvTGVuZ3RoIDUwL1Jvb3QgMTEgMCBSL1NpemUgMTAvVHlwZS9YUmVmL1db MSAzIDFdPj5zdHJlYW0NCmjeYmIAASZGxtfqDExAVhuI5FsIZveCSEYuoOx/NhmwCAMjiGT6DyIZ GQACDACdPgUbDQplbmRzdHJlYW0NZW5kb2JqDXN0YXJ0eHJlZg0KMTE2DQolJUVPRg0K\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Binary", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Binary" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Binary_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Binary?_id=&_lastUpdated=&_profile=&_security=&_tag=&contenttype=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Binary" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "contenttype", - "value": "", - "description": "MimeType of the binary content" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "BinaryHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Binary/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Binary", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Body Site", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "BodySiteHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/BodySite/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "BodySite", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "BodySiteHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/BodySite/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "BodySite", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "BodySiteById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/BodySite/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "BodySite", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "BodySiteById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"status\": \"\",\n \"div\": \"\"\n },\n \"patient\": {\n \"reference\": \"\"\n },\n \"identifier\": [\n {\n \"use\": \"\",\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ],\n \"text\": \"\"\n },\n \"modifier\": [\n {\n \"text\": \"\",\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"description\": \"\",\n \"image\": [\n {\n \"contentType\": \"\",\n \"data\": \"\",\n \"title\": \"\"\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/BodySite/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "BodySite", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "BodySiteById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/BodySite/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "BodySite", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "BodySite_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"status\": \"\",\n \"div\": \"\"\n },\n \"patient\": {\n \"reference\": \"\"\n },\n \"identifier\": [\n {\n \"use\": \"\",\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ],\n \"text\": \"\"\n },\n \"modifier\": [\n {\n \"text\": \"\",\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"description\": \"\",\n \"image\": [\n {\n \"contentType\": \"\",\n \"data\": \"\",\n \"title\": \"\"\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/BodySite", - "host": [ - "{{API_URL}}" - ], - "path": [ - "BodySite" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "BodySite_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/BodySite?patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "BodySite" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Patient to whom bodysite belongs" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Named anatomical location" - }, - { - "key": "identifier", - "value": "", - "description": "Identifier for this instance of the anatomical location" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "BodySiteHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/BodySite/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "BodySite", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Capability Statement", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "CapabilityStatementHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CapabilityStatement/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CapabilityStatement", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CapabilityStatementHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CapabilityStatement/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CapabilityStatement", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CapabilityStatementById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CapabilityStatement/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CapabilityStatement", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CapabilityStatementById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"CapabilityStatement\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eThe EHR Server supports the following transactions for the resource Person: read, vread, \\n update, history, search(name,gender), create and updates.\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eThe EHR System supports the following message: admin-notify::Person.\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eThe EHR Application has a \\n \\u003ca href\\u003d\\\"http://fhir.hl7.org/base/Profilebc054d23-75e1-4dc6-aca5-838b6b1ac81d/_history/b5fdd9fc-b021-4ea1-911a-721a60663796\\\"\\u003egeneral document profile\\u003c/a\\u003e.\\n \\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"url\": \"urn:uuid:68D043B5-9ECF-4559-A57A-396E0D452311\",\n \"version\": \"20130510\",\n \"name\": \"ACME-EHR\",\n \"title\": \"ACME EHR capability statement\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2012-01-04\",\n \"publisher\": \"ACME Corporation\",\n \"contact\": [\n {\n \"name\": \"System Administrator\",\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"wile@acme.org\"\n }\n ]\n }\n ],\n \"description\": \"This is the FHIR capability statement for the main EHR at ACME for the private interface - it does not describe the public interface\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/variant-state\",\n \"code\": \"positive\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\",\n \"display\": \"United States of America (the)\"\n }\n ]\n }\n ],\n \"purpose\": \"Main EHR capability statement, published for contracting and operational support\",\n \"copyright\": \"Copyright © Acme Healthcare and GoodCorp EHR Systems\",\n \"kind\": \"instance\",\n \"instantiates\": [\n \"http://ihe.org/fhir/CapabilityStatement/pixm-client\"\n ],\n \"software\": {\n \"name\": \"EHR\",\n \"version\": \"0.00.020.2134\",\n \"releaseDate\": \"2012-01-04\"\n },\n \"implementation\": {\n \"description\": \"main EHR at ACME\",\n \"url\": \"http://10.2.3.4/fhir\"\n },\n \"fhirVersion\": \"4.0.1\",\n \"format\": [\n \"xml\",\n \"json\"\n ],\n \"patchFormat\": [\n \"application/xml-patch+xml\",\n \"application/json-patch+json\"\n ],\n \"implementationGuide\": [\n \"http://hl7.org/fhir/us/lab\"\n ],\n \"rest\": [\n {\n \"mode\": \"server\",\n \"documentation\": \"Main FHIR endpoint for acem health\",\n \"security\": {\n \"cors\": true,\n \"service\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/restful-security-service\",\n \"code\": \"SMART-on-FHIR\"\n }\n ]\n }\n ],\n \"description\": \"See Smart on FHIR documentation\"\n },\n \"resource\": [\n {\n \"type\": \"Patient\",\n \"profile\": \"http://registry.fhir.org/r4/StructureDefinition/7896271d-57f6-4231-89dc-dcc91eab2416\",\n \"supportedProfile\": [\n \"http://registry.fhir.org/r4/StructureDefinition/00ab9e7a-06c7-4f77-9234-4154ca1e3347\"\n ],\n \"documentation\": \"This server does not let the clients create identities.\",\n \"interaction\": [\n {\n \"code\": \"read\"\n },\n {\n \"code\": \"vread\",\n \"documentation\": \"Only supported for patient records since 12-Dec 2012\"\n },\n {\n \"code\": \"update\"\n },\n {\n \"code\": \"history-instance\"\n },\n {\n \"code\": \"create\"\n },\n {\n \"code\": \"history-type\"\n }\n ],\n \"versioning\": \"versioned-update\",\n \"readHistory\": true,\n \"updateCreate\": false,\n \"conditionalCreate\": true,\n \"conditionalRead\": \"full-support\",\n \"conditionalUpdate\": false,\n \"conditionalDelete\": \"not-supported\",\n \"searchInclude\": [\n \"Organization\"\n ],\n \"searchRevInclude\": [\n \"Person\"\n ],\n \"searchParam\": [\n {\n \"name\": \"identifier\",\n \"definition\": \"http://hl7.org/fhir/SearchParameter/Patient-identifier\",\n \"type\": \"token\",\n \"documentation\": \"Only supports search by institution MRN\"\n },\n {\n \"name\": \"general-practitioner\",\n \"definition\": \"http://hl7.org/fhir/SearchParameter/Patient-general-practitioner\",\n \"type\": \"reference\"\n }\n ]\n }\n ],\n \"interaction\": [\n {\n \"code\": \"transaction\"\n },\n {\n \"code\": \"history-system\"\n }\n ],\n \"compartment\": [\n \"http://hl7.org/fhir/CompartmentDefinition/patient\"\n ]\n }\n ],\n \"messaging\": [\n {\n \"endpoint\": [\n {\n \"protocol\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/message-transport\",\n \"code\": \"mllp\"\n },\n \"address\": \"mllp:10.1.1.10:9234\"\n }\n ],\n \"reliableCache\": 30,\n \"documentation\": \"ADT A08 equivalent for external system notifications\",\n \"supportedMessage\": [\n {\n \"mode\": \"receiver\",\n \"definition\": \"MessageDefinition/example\"\n }\n ]\n }\n ],\n \"document\": [\n {\n \"mode\": \"consumer\",\n \"documentation\": \"Basic rules for all documents in the EHR system\",\n \"profile\": \"http://fhir.hl7.org/base/Profilebc054d23-75e1-4dc6-aca5-838b6b1ac81d/_history/b5fdd9fc-b021-4ea1-911a-721a60663796\"\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/CapabilityStatement/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CapabilityStatement", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CapabilityStatementById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CapabilityStatement/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CapabilityStatement", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CapabilityStatement_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"CapabilityStatement\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eThe EHR Server supports the following transactions for the resource Person: read, vread, \\n update, history, search(name,gender), create and updates.\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eThe EHR System supports the following message: admin-notify::Person.\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eThe EHR Application has a \\n \\u003ca href\\u003d\\\"http://fhir.hl7.org/base/Profilebc054d23-75e1-4dc6-aca5-838b6b1ac81d/_history/b5fdd9fc-b021-4ea1-911a-721a60663796\\\"\\u003egeneral document profile\\u003c/a\\u003e.\\n \\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"url\": \"urn:uuid:68D043B5-9ECF-4559-A57A-396E0D452311\",\n \"version\": \"20130510\",\n \"name\": \"ACME-EHR\",\n \"title\": \"ACME EHR capability statement\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2012-01-04\",\n \"publisher\": \"ACME Corporation\",\n \"contact\": [\n {\n \"name\": \"System Administrator\",\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"wile@acme.org\"\n }\n ]\n }\n ],\n \"description\": \"This is the FHIR capability statement for the main EHR at ACME for the private interface - it does not describe the public interface\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/variant-state\",\n \"code\": \"positive\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\",\n \"display\": \"United States of America (the)\"\n }\n ]\n }\n ],\n \"purpose\": \"Main EHR capability statement, published for contracting and operational support\",\n \"copyright\": \"Copyright © Acme Healthcare and GoodCorp EHR Systems\",\n \"kind\": \"instance\",\n \"instantiates\": [\n \"http://ihe.org/fhir/CapabilityStatement/pixm-client\"\n ],\n \"software\": {\n \"name\": \"EHR\",\n \"version\": \"0.00.020.2134\",\n \"releaseDate\": \"2012-01-04\"\n },\n \"implementation\": {\n \"description\": \"main EHR at ACME\",\n \"url\": \"http://10.2.3.4/fhir\"\n },\n \"fhirVersion\": \"4.0.1\",\n \"format\": [\n \"xml\",\n \"json\"\n ],\n \"patchFormat\": [\n \"application/xml-patch+xml\",\n \"application/json-patch+json\"\n ],\n \"implementationGuide\": [\n \"http://hl7.org/fhir/us/lab\"\n ],\n \"rest\": [\n {\n \"mode\": \"server\",\n \"documentation\": \"Main FHIR endpoint for acem health\",\n \"security\": {\n \"cors\": true,\n \"service\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/restful-security-service\",\n \"code\": \"SMART-on-FHIR\"\n }\n ]\n }\n ],\n \"description\": \"See Smart on FHIR documentation\"\n },\n \"resource\": [\n {\n \"type\": \"Patient\",\n \"profile\": \"http://registry.fhir.org/r4/StructureDefinition/7896271d-57f6-4231-89dc-dcc91eab2416\",\n \"supportedProfile\": [\n \"http://registry.fhir.org/r4/StructureDefinition/00ab9e7a-06c7-4f77-9234-4154ca1e3347\"\n ],\n \"documentation\": \"This server does not let the clients create identities.\",\n \"interaction\": [\n {\n \"code\": \"read\"\n },\n {\n \"code\": \"vread\",\n \"documentation\": \"Only supported for patient records since 12-Dec 2012\"\n },\n {\n \"code\": \"update\"\n },\n {\n \"code\": \"history-instance\"\n },\n {\n \"code\": \"create\"\n },\n {\n \"code\": \"history-type\"\n }\n ],\n \"versioning\": \"versioned-update\",\n \"readHistory\": true,\n \"updateCreate\": false,\n \"conditionalCreate\": true,\n \"conditionalRead\": \"full-support\",\n \"conditionalUpdate\": false,\n \"conditionalDelete\": \"not-supported\",\n \"searchInclude\": [\n \"Organization\"\n ],\n \"searchRevInclude\": [\n \"Person\"\n ],\n \"searchParam\": [\n {\n \"name\": \"identifier\",\n \"definition\": \"http://hl7.org/fhir/SearchParameter/Patient-identifier\",\n \"type\": \"token\",\n \"documentation\": \"Only supports search by institution MRN\"\n },\n {\n \"name\": \"general-practitioner\",\n \"definition\": \"http://hl7.org/fhir/SearchParameter/Patient-general-practitioner\",\n \"type\": \"reference\"\n }\n ]\n }\n ],\n \"interaction\": [\n {\n \"code\": \"transaction\"\n },\n {\n \"code\": \"history-system\"\n }\n ],\n \"compartment\": [\n \"http://hl7.org/fhir/CompartmentDefinition/patient\"\n ]\n }\n ],\n \"messaging\": [\n {\n \"endpoint\": [\n {\n \"protocol\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/message-transport\",\n \"code\": \"mllp\"\n },\n \"address\": \"mllp:10.1.1.10:9234\"\n }\n ],\n \"reliableCache\": 30,\n \"documentation\": \"ADT A08 equivalent for external system notifications\",\n \"supportedMessage\": [\n {\n \"mode\": \"receiver\",\n \"definition\": \"MessageDefinition/example\"\n }\n ]\n }\n ],\n \"document\": [\n {\n \"mode\": \"consumer\",\n \"documentation\": \"Basic rules for all documents in the EHR system\",\n \"profile\": \"http://fhir.hl7.org/base/Profilebc054d23-75e1-4dc6-aca5-838b6b1ac81d/_history/b5fdd9fc-b021-4ea1-911a-721a60663796\"\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/CapabilityStatement", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CapabilityStatement" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CapabilityStatement_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CapabilityStatement?resource-profile=&supported-profile=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&event=&fhirversion=&format=&guide=&jurisdiction=&mode=&name=&publisher=&resource=&security-service=&software=&status=&title=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CapabilityStatement" - ], - "query": [ - { - "key": "resource-profile", - "value": "", - "description": "A profile id invoked in a capability statement" - }, - { - "key": "supported-profile", - "value": "", - "description": "Profiles for use cases supported" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "The capability statement publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the capability statement" - }, - { - "key": "event", - "value": "", - "description": "Event code in a capability statement" - }, - { - "key": "fhirversion", - "value": "", - "description": "The version of FHIR" - }, - { - "key": "format", - "value": "", - "description": "formats supported (xml | json | ttl | mime type)" - }, - { - "key": "guide", - "value": "", - "description": "Implementation guides supported" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the capability statement" - }, - { - "key": "mode", - "value": "", - "description": "Mode - restful (server/client) or messaging (sender/receiver)" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the capability statement" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the capability statement" - }, - { - "key": "resource", - "value": "", - "description": "Name of a resource mentioned in a capability statement" - }, - { - "key": "security-service", - "value": "", - "description": "OAuth | SMART-on-FHIR | NTLM | Basic | Kerberos | Certificates" - }, - { - "key": "software", - "value": "", - "description": "Part of a the name of a software application" - }, - { - "key": "status", - "value": "", - "description": "The current status of the capability statement" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the capability statement" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the capability statement" - }, - { - "key": "version", - "value": "", - "description": "The business version of the capability statement" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CapabilityStatementHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CapabilityStatement/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CapabilityStatement", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Care Plan", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "CarePlanHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CarePlan/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CarePlan", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CarePlanHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CarePlan/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CarePlan", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CarePlanById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CarePlan/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CarePlan", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CarePlanById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"CarePlan\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e A simple care plan to indicate a patient taking their weight once a day because of obesity.\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Condition\",\n \"id\": \"p1\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n \"code\": \"confirmed\"\n }\n ]\n },\n \"code\": {\n \"text\": \"Obesity\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n }\n ],\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"instantiatesUri\": [\n \"http://example.org/protocol-for-obesity\"\n ],\n \"basedOn\": [\n {\n \"display\": \"Management of Type 2 Diabetes\"\n }\n ],\n \"replaces\": [\n {\n \"display\": \"Plan from urgent care clinic\"\n }\n ],\n \"partOf\": [\n {\n \"display\": \"Overall wellness plan\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"plan\",\n \"category\": [\n {\n \"text\": \"Weight management plan\"\n }\n ],\n \"description\": \"Manage obesity and weight loss\",\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/home\"\n },\n \"period\": {\n \"end\": \"2017-06-01\"\n },\n \"created\": \"2016-01-01\",\n \"author\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"careTeam\": [\n {\n \"reference\": \"CareTeam/example\"\n }\n ],\n \"addresses\": [\n {\n \"reference\": \"#p1\",\n \"display\": \"obesity\"\n }\n ],\n \"goal\": [\n {\n \"reference\": \"Goal/example\"\n }\n ],\n \"activity\": [\n {\n \"outcomeCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161832001\",\n \"display\": \"Progressive weight loss\"\n }\n ]\n }\n ],\n \"outcomeReference\": [\n {\n \"reference\": \"Observation/example\",\n \"display\": \"Weight Measured\"\n }\n ],\n \"detail\": {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"3141-9\",\n \"display\": \"Weight Measured\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"27113001\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"status\": \"completed\",\n \"statusReason\": {\n \"text\": \"Achieved weight loss to mitigate diabetes risk.\"\n },\n \"doNotPerform\": false,\n \"scheduledTiming\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"location\": {\n \"display\": \"Patient\\u0027s home\"\n },\n \"performer\": [\n {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/CarePlan/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CarePlan", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CarePlanById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CarePlan/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CarePlan", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CarePlan_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"CarePlan\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e A simple care plan to indicate a patient taking their weight once a day because of obesity.\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Condition\",\n \"id\": \"p1\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n \"code\": \"confirmed\"\n }\n ]\n },\n \"code\": {\n \"text\": \"Obesity\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n }\n ],\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"instantiatesUri\": [\n \"http://example.org/protocol-for-obesity\"\n ],\n \"basedOn\": [\n {\n \"display\": \"Management of Type 2 Diabetes\"\n }\n ],\n \"replaces\": [\n {\n \"display\": \"Plan from urgent care clinic\"\n }\n ],\n \"partOf\": [\n {\n \"display\": \"Overall wellness plan\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"plan\",\n \"category\": [\n {\n \"text\": \"Weight management plan\"\n }\n ],\n \"description\": \"Manage obesity and weight loss\",\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/home\"\n },\n \"period\": {\n \"end\": \"2017-06-01\"\n },\n \"created\": \"2016-01-01\",\n \"author\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"careTeam\": [\n {\n \"reference\": \"CareTeam/example\"\n }\n ],\n \"addresses\": [\n {\n \"reference\": \"#p1\",\n \"display\": \"obesity\"\n }\n ],\n \"goal\": [\n {\n \"reference\": \"Goal/example\"\n }\n ],\n \"activity\": [\n {\n \"outcomeCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161832001\",\n \"display\": \"Progressive weight loss\"\n }\n ]\n }\n ],\n \"outcomeReference\": [\n {\n \"reference\": \"Observation/example\",\n \"display\": \"Weight Measured\"\n }\n ],\n \"detail\": {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"3141-9\",\n \"display\": \"Weight Measured\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"27113001\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"status\": \"completed\",\n \"statusReason\": {\n \"text\": \"Achieved weight loss to mitigate diabetes risk.\"\n },\n \"doNotPerform\": false,\n \"scheduledTiming\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"location\": {\n \"display\": \"Patient\\u0027s home\"\n },\n \"performer\": [\n {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/CarePlan", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CarePlan" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CarePlan_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CarePlan?patient=&activity-reference=&based-on=&care-team=&condition=&context=&definition=&encounter=&goal=&part-of=&performer=&replaces=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&activity-code=&activity-date=&category=&intent=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CarePlan" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "activity-reference", - "value": "", - "description": "Activity details defined in specific resource" - }, - { - "key": "based-on", - "value": "", - "description": "Fulfills care plan" - }, - { - "key": "care-team", - "value": "", - "description": "Who's involved in plan?" - }, - { - "key": "condition", - "value": "", - "description": "Health issues this plan addresses" - }, - { - "key": "context", - "value": "", - "description": "Created in context of" - }, - { - "key": "definition", - "value": "", - "description": "Protocol or definition" - }, - { - "key": "encounter", - "value": "", - "description": "Created in context of" - }, - { - "key": "goal", - "value": "", - "description": "Desired outcome of plan" - }, - { - "key": "part-of", - "value": "", - "description": "Part of referenced CarePlan" - }, - { - "key": "performer", - "value": "", - "description": "Matches if the practitioner is listed as a performer in any of the \"simple\" activities. (For performers of the detailed activities, chain through the activitydetail search parameter.)" - }, - { - "key": "replaces", - "value": "", - "description": "CarePlan replaced by this CarePlan" - }, - { - "key": "subject", - "value": "", - "description": "Who care plan is for" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "activity-code", - "value": "", - "description": "Detail type of activity" - }, - { - "key": "activity-date", - "value": "", - "description": "Specified date occurs within period specified by CarePlan.activity.timingSchedule" - }, - { - "key": "category", - "value": "", - "description": "Type of plan" - }, - { - "key": "intent", - "value": "", - "description": "proposal | plan | order | option" - }, - { - "key": "status", - "value": "", - "description": "draft | active | suspended | completed | entered-in-error | cancelled | unknown" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CarePlanHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CarePlan/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CarePlan", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Care Team", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "CareTeamHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CareTeam/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CareTeam", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CareTeamHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CareTeam/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CareTeam", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CareTeamById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CareTeam/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CareTeam", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CareTeamById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"CareTeam\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eCare Team\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"pr1\",\n \"name\": [\n {\n \"family\": \"Dietician\",\n \"given\": [\n \"Dorothy\"\n ]\n }\n ]\n }\n ],\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA27976-2\",\n \"display\": \"Encounter-focused care team\"\n }\n ]\n }\n ],\n \"name\": \"Peter James Charlmers Care Plan for Inpatient Encounter\",\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"period\": {\n \"end\": \"2013-01-01\"\n },\n \"participant\": [\n {\n \"role\": [\n {\n \"text\": \"responsiblePerson\"\n }\n ],\n \"member\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n },\n {\n \"role\": [\n {\n \"text\": \"adviser\"\n }\n ],\n \"member\": {\n \"reference\": \"#pr1\",\n \"display\": \"Dorothy Dietition\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/f001\"\n },\n \"period\": {\n \"end\": \"2013-01-01\"\n }\n }\n ],\n \"managingOrganization\": [\n {\n \"reference\": \"Organization/f001\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/CareTeam/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CareTeam", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CareTeamById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CareTeam/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CareTeam", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CareTeam_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"CareTeam\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eCare Team\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"pr1\",\n \"name\": [\n {\n \"family\": \"Dietician\",\n \"given\": [\n \"Dorothy\"\n ]\n }\n ]\n }\n ],\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA27976-2\",\n \"display\": \"Encounter-focused care team\"\n }\n ]\n }\n ],\n \"name\": \"Peter James Charlmers Care Plan for Inpatient Encounter\",\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"period\": {\n \"end\": \"2013-01-01\"\n },\n \"participant\": [\n {\n \"role\": [\n {\n \"text\": \"responsiblePerson\"\n }\n ],\n \"member\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n },\n {\n \"role\": [\n {\n \"text\": \"adviser\"\n }\n ],\n \"member\": {\n \"reference\": \"#pr1\",\n \"display\": \"Dorothy Dietition\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/f001\"\n },\n \"period\": {\n \"end\": \"2013-01-01\"\n }\n }\n ],\n \"managingOrganization\": [\n {\n \"reference\": \"Organization/f001\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/CareTeam", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CareTeam" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CareTeam_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CareTeam?patient=&context=&encounter=&participant=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&category=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CareTeam" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "context", - "value": "", - "description": "Encounter or episode associated with CareTeam" - }, - { - "key": "encounter", - "value": "", - "description": "Encounter or episode associated with CareTeam" - }, - { - "key": "participant", - "value": "", - "description": "Who is involved" - }, - { - "key": "subject", - "value": "", - "description": "Who care team is for" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "category", - "value": "", - "description": "Type of team" - }, - { - "key": "status", - "value": "", - "description": "proposed | active | suspended | inactive | entered-in-error" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CareTeamHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CareTeam/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CareTeam", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Charge Item", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ChargeItemHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ChargeItem/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ChargeItem", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ChargeItemHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ChargeItem/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ChargeItem", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ChargeItemById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ChargeItem/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ChargeItem", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ChargeItemById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ChargeItem\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eExample of ChargeItem Usage in Context of the German EBM Billing code system\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://myHospital.org/ChargeItems\",\n \"value\": \"654321\"\n }\n ],\n \"definitionUri\": [\n \"http://www.kbv.de/tools/ebm/html/01520_2904360860826220813632.html\"\n ],\n \"status\": \"billable\",\n \"code\": {\n \"coding\": [\n {\n \"code\": \"01510\",\n \"display\": \"Zusatzpauschale für Beobachtung nach diagnostischer Koronarangiografie\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"context\": {\n \"reference\": \"Encounter/example\"\n },\n \"occurrencePeriod\": {\n \"start\": \"2017-01-25T08:00:00+01:00\",\n \"end\": \"2017-01-25T12:35:00+01:00\"\n },\n \"performer\": [\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"17561000\",\n \"display\": \"Cardiologist\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n },\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"224542009\",\n \"display\": \"Coronary Care Nurse\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"performingOrganization\": {\n \"identifier\": {\n \"system\": \"http://myhospital/NamingSystem/departments\",\n \"value\": \"CARD_INTERMEDIATE_CARE\"\n }\n },\n \"requestingOrganization\": {\n \"identifier\": {\n \"system\": \"http://myhospital/NamingSystem/departments\",\n \"value\": \"CARD_U1\"\n }\n },\n \"quantity\": {\n \"value\": 1\n },\n \"factorOverride\": 0.8,\n \"priceOverride\": {\n \"value\": 40,\n \"currency\": \"EUR\"\n },\n \"overrideReason\": \"Patient is Cardiologist\\u0027s golf buddy, so he gets a 20% discount!\",\n \"enterer\": {\n \"reference\": \"Practitioner/example\"\n },\n \"enteredDate\": \"2017-01-25T23:55:04+01:00\",\n \"reason\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"123456\",\n \"display\": \"DIAG-1\"\n }\n ]\n }\n ],\n \"service\": [\n {\n \"reference\": \"Procedure/example\"\n }\n ],\n \"account\": [\n {\n \"reference\": \"Account/example\"\n }\n ],\n \"note\": [\n {\n \"authorReference\": {\n \"reference\": \"Practitioner/example\"\n },\n \"time\": \"2017-01-25T23:55:04+01:00\",\n \"text\": \"The code is only applicable for periods longer than 4h\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ChargeItem/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ChargeItem", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ChargeItemById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ChargeItem/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ChargeItem", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ChargeItem_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ChargeItem\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eExample of ChargeItem Usage in Context of the German EBM Billing code system\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://myHospital.org/ChargeItems\",\n \"value\": \"654321\"\n }\n ],\n \"definitionUri\": [\n \"http://www.kbv.de/tools/ebm/html/01520_2904360860826220813632.html\"\n ],\n \"status\": \"billable\",\n \"code\": {\n \"coding\": [\n {\n \"code\": \"01510\",\n \"display\": \"Zusatzpauschale für Beobachtung nach diagnostischer Koronarangiografie\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"context\": {\n \"reference\": \"Encounter/example\"\n },\n \"occurrencePeriod\": {\n \"start\": \"2017-01-25T08:00:00+01:00\",\n \"end\": \"2017-01-25T12:35:00+01:00\"\n },\n \"performer\": [\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"17561000\",\n \"display\": \"Cardiologist\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n },\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"224542009\",\n \"display\": \"Coronary Care Nurse\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"performingOrganization\": {\n \"identifier\": {\n \"system\": \"http://myhospital/NamingSystem/departments\",\n \"value\": \"CARD_INTERMEDIATE_CARE\"\n }\n },\n \"requestingOrganization\": {\n \"identifier\": {\n \"system\": \"http://myhospital/NamingSystem/departments\",\n \"value\": \"CARD_U1\"\n }\n },\n \"quantity\": {\n \"value\": 1\n },\n \"factorOverride\": 0.8,\n \"priceOverride\": {\n \"value\": 40,\n \"currency\": \"EUR\"\n },\n \"overrideReason\": \"Patient is Cardiologist\\u0027s golf buddy, so he gets a 20% discount!\",\n \"enterer\": {\n \"reference\": \"Practitioner/example\"\n },\n \"enteredDate\": \"2017-01-25T23:55:04+01:00\",\n \"reason\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"123456\",\n \"display\": \"DIAG-1\"\n }\n ]\n }\n ],\n \"service\": [\n {\n \"reference\": \"Procedure/example\"\n }\n ],\n \"account\": [\n {\n \"reference\": \"Account/example\"\n }\n ],\n \"note\": [\n {\n \"authorReference\": {\n \"reference\": \"Practitioner/example\"\n },\n \"time\": \"2017-01-25T23:55:04+01:00\",\n \"text\": \"The code is only applicable for periods longer than 4h\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ChargeItem", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ChargeItem" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ChargeItem_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ChargeItem?account=&context=&enterer=&participant-actor=&patient=&performing-organization=&requesting-organization=&service=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&entered-date=&factor-override=&identifier=&occurrence=&participant-role=&price-override=&quantity=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ChargeItem" - ], - "query": [ - { - "key": "account", - "value": "", - "description": "Account to place this charge" - }, - { - "key": "context", - "value": "", - "description": "Encounter / Episode associated with event" - }, - { - "key": "enterer", - "value": "", - "description": "Individual who was entering" - }, - { - "key": "participant-actor", - "value": "", - "description": "Individual who was performing" - }, - { - "key": "patient", - "value": "", - "description": "Individual service was done for/to" - }, - { - "key": "performing-organization", - "value": "", - "description": "Organization providing the charged sevice" - }, - { - "key": "requesting-organization", - "value": "", - "description": "Organization requesting the charged service" - }, - { - "key": "service", - "value": "", - "description": "Which rendered service is being charged?" - }, - { - "key": "subject", - "value": "", - "description": "Individual service was done for/to" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "A code that identifies the charge, like a billing code" - }, - { - "key": "entered-date", - "value": "", - "description": "Date the charge item was entered" - }, - { - "key": "factor-override", - "value": "", - "description": "Factor overriding the associated rules" - }, - { - "key": "identifier", - "value": "", - "description": "Business Identifier for item" - }, - { - "key": "occurrence", - "value": "", - "description": "When the charged service was applied" - }, - { - "key": "participant-role", - "value": "", - "description": "What type of performance was done" - }, - { - "key": "price-override", - "value": "", - "description": "Price overriding the associated rules" - }, - { - "key": "quantity", - "value": "", - "description": "Quantity of which the charge item has been serviced" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ChargeItemHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ChargeItem/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ChargeItem", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Claim", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ClaimHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Claim/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Claim", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClaimHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Claim/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Claim", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ClaimById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Claim/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Claim", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClaimById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Claim\",\n \"id\": \"100150\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the Oral Health Claim\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://happyvalley.com/claim\",\n \"value\": \"12345\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/claim-type\",\n \"code\": \"oral\"\n }\n ]\n },\n \"use\": \"claim\",\n \"patient\": {\n \"reference\": \"Patient/1\"\n },\n \"created\": \"2014-08-16\",\n \"insurer\": {\n \"reference\": \"Organization/2\"\n },\n \"provider\": {\n \"reference\": \"Organization/1\"\n },\n \"priority\": {\n \"coding\": [\n {\n \"code\": \"normal\"\n }\n ]\n },\n \"payee\": {\n \"type\": {\n \"coding\": [\n {\n \"code\": \"provider\"\n }\n ]\n }\n },\n \"careTeam\": [\n {\n \"sequence\": 1,\n \"provider\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"sequence\": 1,\n \"diagnosisCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"123456\"\n }\n ]\n }\n }\n ],\n \"insurance\": [\n {\n \"sequence\": 1,\n \"focal\": true,\n \"identifier\": {\n \"system\": \"http://happyvalley.com/claim\",\n \"value\": \"12345\"\n },\n \"coverage\": {\n \"reference\": \"Coverage/9876B1\"\n }\n }\n ],\n \"item\": [\n {\n \"sequence\": 1,\n \"careTeamSequence\": [\n 1\n ],\n \"productOrService\": {\n \"coding\": [\n {\n \"code\": \"1200\"\n }\n ]\n },\n \"servicedDate\": \"2014-08-16\",\n \"unitPrice\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n },\n \"net\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Claim/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Claim", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClaimById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Claim/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Claim", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Claim_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Claim\",\n \"id\": \"100150\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the Oral Health Claim\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://happyvalley.com/claim\",\n \"value\": \"12345\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/claim-type\",\n \"code\": \"oral\"\n }\n ]\n },\n \"use\": \"claim\",\n \"patient\": {\n \"reference\": \"Patient/1\"\n },\n \"created\": \"2014-08-16\",\n \"insurer\": {\n \"reference\": \"Organization/2\"\n },\n \"provider\": {\n \"reference\": \"Organization/1\"\n },\n \"priority\": {\n \"coding\": [\n {\n \"code\": \"normal\"\n }\n ]\n },\n \"payee\": {\n \"type\": {\n \"coding\": [\n {\n \"code\": \"provider\"\n }\n ]\n }\n },\n \"careTeam\": [\n {\n \"sequence\": 1,\n \"provider\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"sequence\": 1,\n \"diagnosisCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"123456\"\n }\n ]\n }\n }\n ],\n \"insurance\": [\n {\n \"sequence\": 1,\n \"focal\": true,\n \"identifier\": {\n \"system\": \"http://happyvalley.com/claim\",\n \"value\": \"12345\"\n },\n \"coverage\": {\n \"reference\": \"Coverage/9876B1\"\n }\n }\n ],\n \"item\": [\n {\n \"sequence\": 1,\n \"careTeamSequence\": [\n 1\n ],\n \"productOrService\": {\n \"coding\": [\n {\n \"code\": \"1200\"\n }\n ]\n },\n \"servicedDate\": \"2014-08-16\",\n \"unitPrice\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n },\n \"net\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Claim", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Claim" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Claim_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Claim?care-team=&encounter=&enterer=&facility=&insurer=&organization=&patient=&payee=&provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&identifier=&priority=&use=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Claim" - ], - "query": [ - { - "key": "care-team", - "value": "", - "description": "Member of the CareTeam" - }, - { - "key": "encounter", - "value": "", - "description": "Encounters associated with a billed line item" - }, - { - "key": "enterer", - "value": "", - "description": "The party responsible for the entry of the Claim" - }, - { - "key": "facility", - "value": "", - "description": "Facility responsible for the goods and services" - }, - { - "key": "insurer", - "value": "", - "description": "The target payor/insurer for the Claim" - }, - { - "key": "organization", - "value": "", - "description": "The reference to the providing organization" - }, - { - "key": "patient", - "value": "", - "description": "Patient receiving the services" - }, - { - "key": "payee", - "value": "", - "description": "The party receiving any payment for the Claim" - }, - { - "key": "provider", - "value": "", - "description": "Provider responsible for the Claim" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "created", - "value": "", - "description": "The creation date for the Claim" - }, - { - "key": "identifier", - "value": "", - "description": "The primary identifier of the financial resource" - }, - { - "key": "priority", - "value": "", - "description": "Processing priority requested" - }, - { - "key": "use", - "value": "", - "description": "The kind of financial resource" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClaimHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Claim/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Claim", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Claim Response", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ClaimResponseHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ClaimResponse/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClaimResponse", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClaimResponseHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ClaimResponse/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClaimResponse", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ClaimResponseById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ClaimResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClaimResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClaimResponseById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ClaimResponse\",\n \"id\": \"R3500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the ClaimResponse\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/remittance\",\n \"value\": \"R3500\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/claim-type\",\n \"code\": \"oral\"\n }\n ]\n },\n \"subType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-claimsubtype\",\n \"code\": \"emergency\"\n }\n ]\n },\n \"use\": \"claim\",\n \"patient\": {\n \"reference\": \"Patient/1\"\n },\n \"created\": \"2014-08-16\",\n \"insurer\": {\n \"identifier\": {\n \"system\": \"http://www.jurisdiction.org/insurers\",\n \"value\": \"555123\"\n }\n },\n \"requestor\": {\n \"reference\": \"Organization/1\"\n },\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/oralhealthclaim/15476332402\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"Claim settled as per contract.\",\n \"payeeType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payeetype\",\n \"code\": \"provider\"\n }\n ]\n },\n \"item\": [\n {\n \"itemSequence\": 1,\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligible\"\n }\n ]\n },\n \"amount\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"copay\"\n }\n ]\n },\n \"amount\": {\n \"value\": 10.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligpercent\"\n }\n ]\n },\n \"value\": 80.00\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"reason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adjudication-reason\",\n \"code\": \"ar002\",\n \"display\": \"Plan Limit Reached\"\n }\n ]\n },\n \"amount\": {\n \"value\": 90.47,\n \"currency\": \"USD\"\n }\n }\n ]\n }\n ],\n \"total\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"submitted\"\n }\n ]\n },\n \"amount\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 90.47,\n \"currency\": \"USD\"\n }\n }\n ],\n \"payment\": {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-paymenttype\",\n \"code\": \"complete\"\n }\n ]\n },\n \"date\": \"2014-08-31\",\n \"amount\": {\n \"value\": 100.47,\n \"currency\": \"USD\"\n },\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/fhir/paymentidentifier\",\n \"value\": \"201408-2-1569478\"\n }\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ClaimResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClaimResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClaimResponseById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ClaimResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClaimResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ClaimResponse_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ClaimResponse\",\n \"id\": \"R3500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the ClaimResponse\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/remittance\",\n \"value\": \"R3500\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/claim-type\",\n \"code\": \"oral\"\n }\n ]\n },\n \"subType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-claimsubtype\",\n \"code\": \"emergency\"\n }\n ]\n },\n \"use\": \"claim\",\n \"patient\": {\n \"reference\": \"Patient/1\"\n },\n \"created\": \"2014-08-16\",\n \"insurer\": {\n \"identifier\": {\n \"system\": \"http://www.jurisdiction.org/insurers\",\n \"value\": \"555123\"\n }\n },\n \"requestor\": {\n \"reference\": \"Organization/1\"\n },\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/oralhealthclaim/15476332402\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"Claim settled as per contract.\",\n \"payeeType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payeetype\",\n \"code\": \"provider\"\n }\n ]\n },\n \"item\": [\n {\n \"itemSequence\": 1,\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligible\"\n }\n ]\n },\n \"amount\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"copay\"\n }\n ]\n },\n \"amount\": {\n \"value\": 10.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligpercent\"\n }\n ]\n },\n \"value\": 80.00\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"reason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adjudication-reason\",\n \"code\": \"ar002\",\n \"display\": \"Plan Limit Reached\"\n }\n ]\n },\n \"amount\": {\n \"value\": 90.47,\n \"currency\": \"USD\"\n }\n }\n ]\n }\n ],\n \"total\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"submitted\"\n }\n ]\n },\n \"amount\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 90.47,\n \"currency\": \"USD\"\n }\n }\n ],\n \"payment\": {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-paymenttype\",\n \"code\": \"complete\"\n }\n ]\n },\n \"date\": \"2014-08-31\",\n \"amount\": {\n \"value\": 100.47,\n \"currency\": \"USD\"\n },\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/fhir/paymentidentifier\",\n \"value\": \"201408-2-1569478\"\n }\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ClaimResponse", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClaimResponse" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClaimResponse_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ClaimResponse?insurer=&patient=&request=&request-provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&disposition=&identifier=&outcome=&payment-date=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClaimResponse" - ], - "query": [ - { - "key": "insurer", - "value": "", - "description": "The organization who generated this resource" - }, - { - "key": "patient", - "value": "", - "description": "The subject of care." - }, - { - "key": "request", - "value": "", - "description": "The claim reference" - }, - { - "key": "request-provider", - "value": "", - "description": "The Provider of the claim" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "created", - "value": "", - "description": "The creation date" - }, - { - "key": "disposition", - "value": "", - "description": "The contents of the disposition message" - }, - { - "key": "identifier", - "value": "", - "description": "The identity of the claimresponse" - }, - { - "key": "outcome", - "value": "", - "description": "The processing outcome" - }, - { - "key": "payment-date", - "value": "", - "description": "The expected paymentDate" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClaimResponseHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ClaimResponse/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClaimResponse", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Clinical Impression", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ClinicalImpressionHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ClinicalImpression/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClinicalImpression", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClinicalImpressionHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ClinicalImpression/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClinicalImpression", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ClinicalImpressionById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ClinicalImpression/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClinicalImpression", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClinicalImpressionById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ClinicalImpression\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 12345\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: This 26 yo male patient is brought into ER by ambulance after being involved in a motor vehicle accident\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eeffective\\u003c/b\\u003e: 06/12/2014 8:00:00 PM --\\u0026gt; 06/12/2014 10:33:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 06/12/2014 10:33:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eassessor\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eproblem\\u003c/b\\u003e: MVA\\u003c/p\\u003e\\u003ch3\\u003eInvestigations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eItem\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eInitial Examination \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003edeep laceration of the scalp (left temporo-occipital)\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003esummary\\u003c/b\\u003e: provisional diagnoses of laceration of head and traumatic brain injury (TBI)\\u003c/p\\u003e\\u003ch3\\u003eFindings\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eItemCodeableConcept\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e850.0 \\u003cspan\\u003e(Details : {ICD-9 code \\u0027850.0\\u0027 \\u003d \\u0027850.0)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"This 26 yo male patient is brought into ER by ambulance after being involved in a motor vehicle accident\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"effectivePeriod\": {\n \"start\": \"2014-12-06T20:00:00+11:00\",\n \"end\": \"2014-12-06T22:33:00+11:00\"\n },\n \"date\": \"2014-12-06T22:33:00+11:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/example\"\n },\n \"problem\": [\n {\n \"display\": \"MVA\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Initial Examination\"\n },\n \"item\": [\n {\n \"display\": \"deep laceration of the scalp (left temporo-occipital)\"\n },\n {\n \"display\": \"decreased level of consciousness\"\n },\n {\n \"display\": \"disoriented to time and place\"\n },\n {\n \"display\": \"restless\"\n }\n ]\n }\n ],\n \"summary\": \"provisional diagnoses of laceration of head and traumatic brain injury (TBI)\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9\",\n \"code\": \"850.0\"\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ClinicalImpression/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClinicalImpression", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClinicalImpressionById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ClinicalImpression/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClinicalImpression", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ClinicalImpression_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ClinicalImpression\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 12345\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: This 26 yo male patient is brought into ER by ambulance after being involved in a motor vehicle accident\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eeffective\\u003c/b\\u003e: 06/12/2014 8:00:00 PM --\\u0026gt; 06/12/2014 10:33:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 06/12/2014 10:33:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eassessor\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eproblem\\u003c/b\\u003e: MVA\\u003c/p\\u003e\\u003ch3\\u003eInvestigations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eItem\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eInitial Examination \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003edeep laceration of the scalp (left temporo-occipital)\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003esummary\\u003c/b\\u003e: provisional diagnoses of laceration of head and traumatic brain injury (TBI)\\u003c/p\\u003e\\u003ch3\\u003eFindings\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eItemCodeableConcept\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e850.0 \\u003cspan\\u003e(Details : {ICD-9 code \\u0027850.0\\u0027 \\u003d \\u0027850.0)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"This 26 yo male patient is brought into ER by ambulance after being involved in a motor vehicle accident\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"effectivePeriod\": {\n \"start\": \"2014-12-06T20:00:00+11:00\",\n \"end\": \"2014-12-06T22:33:00+11:00\"\n },\n \"date\": \"2014-12-06T22:33:00+11:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/example\"\n },\n \"problem\": [\n {\n \"display\": \"MVA\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Initial Examination\"\n },\n \"item\": [\n {\n \"display\": \"deep laceration of the scalp (left temporo-occipital)\"\n },\n {\n \"display\": \"decreased level of consciousness\"\n },\n {\n \"display\": \"disoriented to time and place\"\n },\n {\n \"display\": \"restless\"\n }\n ]\n }\n ],\n \"summary\": \"provisional diagnoses of laceration of head and traumatic brain injury (TBI)\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9\",\n \"code\": \"850.0\"\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ClinicalImpression", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClinicalImpression" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClinicalImpression_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ClinicalImpression?patient=&action=&assessor=&context=&finding-ref=&investigation=&previous=&problem=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&finding-code=&identifier=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClinicalImpression" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "action", - "value": "", - "description": "Action taken as part of assessment procedure" - }, - { - "key": "assessor", - "value": "", - "description": "The clinician performing the assessment" - }, - { - "key": "context", - "value": "", - "description": "Encounter or Episode created from" - }, - { - "key": "finding-ref", - "value": "", - "description": "What was found" - }, - { - "key": "investigation", - "value": "", - "description": "Record of a specific investigation" - }, - { - "key": "previous", - "value": "", - "description": "Reference to last assessment" - }, - { - "key": "problem", - "value": "", - "description": "Relevant impressions of patient state" - }, - { - "key": "subject", - "value": "", - "description": "Patient or group assessed" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "finding-code", - "value": "", - "description": "What was found" - }, - { - "key": "identifier", - "value": "", - "description": "Business identifier" - }, - { - "key": "status", - "value": "", - "description": "draft | completed | entered-in-error" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ClinicalImpressionHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ClinicalImpression/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ClinicalImpression", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Code System", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "CodeSystemHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CodeSystem/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CodeSystem", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CodeSystemHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CodeSystem/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CodeSystem", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CodeSystemById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CodeSystem/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CodeSystem", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CodeSystemById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"CodeSystem\",\n \"id\": \"example\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/shareablecodesystem\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eCodeSystem \\u0026quot;ACME Codes for Cholesterol\\u0026quot;: This is an example code system that includes \\n all the codes for serum cholesterol defined by ACME inc.\\u003c/p\\u003e\\n \\u003cp\\u003eDeveloped by: FHIR project team (example)\\u003c/p\\u003e\\n \\u003cp\\u003ePublished for testing on 28-Jan 2016\\u003c/p\\u003e\\n \\u003cp\\u003eThis code system defines all the ACME codes for serum cholesterol:\\u003c/p\\u003e\\n \\u003ctable class\\u003d\\\"grid\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eCode\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDisplay\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDefinition\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003echol-mmol\\u003c/td\\u003e\\n \\u003ctd\\u003eSChol (mmol/L)\\u003c/td\\u003e\\n \\u003ctd\\u003eSerum Cholesterol, in mmol/L\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003echol-mass\\u003c/td\\u003e\\n \\u003ctd\\u003eSChol (mg/L)\\u003c/td\\u003e\\n \\u003ctd\\u003eSerum Cholesterol, in mg/L\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003echol\\u003c/td\\u003e\\n \\u003ctd\\u003eSChol\\u003c/td\\u003e\\n \\u003ctd\\u003eSerum Cholesterol\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/CodeSystem/example\",\n \"identifier\": [\n {\n \"system\": \"http://acme.com/identifiers/codesystems\",\n \"value\": \"internal-cholesterol-inl\"\n }\n ],\n \"version\": \"20160128\",\n \"name\": \"ACMECholCodesBlood\",\n \"title\": \"ACME Codes for Cholesterol in Serum/Plasma\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2016-01-28\",\n \"publisher\": \"Acme Co\",\n \"contact\": [\n {\n \"name\": \"FHIR project team\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"This is an example code system that includes all the ACME codes for serum/plasma cholesterol from v2.36.\",\n \"caseSensitive\": true,\n \"content\": \"complete\",\n \"filter\": [\n {\n \"code\": \"acme-plasma\",\n \"description\": \"An internal filter used to select codes that are only used with plasma\",\n \"operator\": [\n \"\\u003d\"\n ],\n \"value\": \"the value of this filter is either \\u0027true\\u0027 or \\u0027false\\u0027\"\n }\n ],\n \"concept\": [\n {\n \"code\": \"chol-mmol\",\n \"display\": \"SChol (mmol/L)\",\n \"definition\": \"Serum Cholesterol, in mmol/L\",\n \"designation\": [\n {\n \"use\": {\n \"system\": \"http://acme.com/config/fhir/codesystems/internal\",\n \"code\": \"internal-label\"\n },\n \"value\": \"From ACME POC Testing\"\n }\n ]\n },\n {\n \"code\": \"chol-mass\",\n \"display\": \"SChol (mg/L)\",\n \"definition\": \"Serum Cholesterol, in mg/L\",\n \"designation\": [\n {\n \"use\": {\n \"system\": \"http://acme.com/config/fhir/codesystems/internal\",\n \"code\": \"internal-label\"\n },\n \"value\": \"From Paragon Labs\"\n }\n ]\n },\n {\n \"code\": \"chol\",\n \"display\": \"SChol\",\n \"definition\": \"Serum Cholesterol\",\n \"designation\": [\n {\n \"use\": {\n \"system\": \"http://acme.com/config/fhir/codesystems/internal\",\n \"code\": \"internal-label\"\n },\n \"value\": \"Obdurate Labs uses this with both kinds of units...\"\n }\n ]\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/CodeSystem/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CodeSystem", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CodeSystemById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CodeSystem/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CodeSystem", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CodeSystem_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"CodeSystem\",\n \"id\": \"example\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/shareablecodesystem\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eCodeSystem \\u0026quot;ACME Codes for Cholesterol\\u0026quot;: This is an example code system that includes \\n all the codes for serum cholesterol defined by ACME inc.\\u003c/p\\u003e\\n \\u003cp\\u003eDeveloped by: FHIR project team (example)\\u003c/p\\u003e\\n \\u003cp\\u003ePublished for testing on 28-Jan 2016\\u003c/p\\u003e\\n \\u003cp\\u003eThis code system defines all the ACME codes for serum cholesterol:\\u003c/p\\u003e\\n \\u003ctable class\\u003d\\\"grid\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eCode\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDisplay\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDefinition\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003echol-mmol\\u003c/td\\u003e\\n \\u003ctd\\u003eSChol (mmol/L)\\u003c/td\\u003e\\n \\u003ctd\\u003eSerum Cholesterol, in mmol/L\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003echol-mass\\u003c/td\\u003e\\n \\u003ctd\\u003eSChol (mg/L)\\u003c/td\\u003e\\n \\u003ctd\\u003eSerum Cholesterol, in mg/L\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003echol\\u003c/td\\u003e\\n \\u003ctd\\u003eSChol\\u003c/td\\u003e\\n \\u003ctd\\u003eSerum Cholesterol\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/CodeSystem/example\",\n \"identifier\": [\n {\n \"system\": \"http://acme.com/identifiers/codesystems\",\n \"value\": \"internal-cholesterol-inl\"\n }\n ],\n \"version\": \"20160128\",\n \"name\": \"ACMECholCodesBlood\",\n \"title\": \"ACME Codes for Cholesterol in Serum/Plasma\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2016-01-28\",\n \"publisher\": \"Acme Co\",\n \"contact\": [\n {\n \"name\": \"FHIR project team\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"This is an example code system that includes all the ACME codes for serum/plasma cholesterol from v2.36.\",\n \"caseSensitive\": true,\n \"content\": \"complete\",\n \"filter\": [\n {\n \"code\": \"acme-plasma\",\n \"description\": \"An internal filter used to select codes that are only used with plasma\",\n \"operator\": [\n \"\\u003d\"\n ],\n \"value\": \"the value of this filter is either \\u0027true\\u0027 or \\u0027false\\u0027\"\n }\n ],\n \"concept\": [\n {\n \"code\": \"chol-mmol\",\n \"display\": \"SChol (mmol/L)\",\n \"definition\": \"Serum Cholesterol, in mmol/L\",\n \"designation\": [\n {\n \"use\": {\n \"system\": \"http://acme.com/config/fhir/codesystems/internal\",\n \"code\": \"internal-label\"\n },\n \"value\": \"From ACME POC Testing\"\n }\n ]\n },\n {\n \"code\": \"chol-mass\",\n \"display\": \"SChol (mg/L)\",\n \"definition\": \"Serum Cholesterol, in mg/L\",\n \"designation\": [\n {\n \"use\": {\n \"system\": \"http://acme.com/config/fhir/codesystems/internal\",\n \"code\": \"internal-label\"\n },\n \"value\": \"From Paragon Labs\"\n }\n ]\n },\n {\n \"code\": \"chol\",\n \"display\": \"SChol\",\n \"definition\": \"Serum Cholesterol\",\n \"designation\": [\n {\n \"use\": {\n \"system\": \"http://acme.com/config/fhir/codesystems/internal\",\n \"code\": \"internal-label\"\n },\n \"value\": \"Obdurate Labs uses this with both kinds of units...\"\n }\n ]\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/CodeSystem", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CodeSystem" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CodeSystem_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CodeSystem?_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&content-mode=&date=&description=&identifier=&jurisdiction=&language=&name=&publisher=&status=&system=&title=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CodeSystem" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "A code defined in the code system" - }, - { - "key": "content-mode", - "value": "", - "description": "not-present | example | fragment | complete" - }, - { - "key": "date", - "value": "", - "description": "The code system publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the code system" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the code system" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the code system" - }, - { - "key": "language", - "value": "", - "description": "A language in which a designation is provided" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the code system" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the code system" - }, - { - "key": "status", - "value": "", - "description": "The current status of the code system" - }, - { - "key": "system", - "value": "", - "description": "The system for any codes defined by this code system (same as 'url')" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the code system" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the code system" - }, - { - "key": "version", - "value": "", - "description": "The business version of the code system" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CodeSystemHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CodeSystem/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CodeSystem", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Communication", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "CommunicationHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Communication/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Communication", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CommunicationHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Communication/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Communication", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CommunicationById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Communication/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Communication", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CommunicationById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Communication\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003ePatient has very high serum potassium\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"type\": {\n \"text\": \"Paging System\"\n },\n \"system\": \"urn:oid:1.3.4.5.6.7\",\n \"value\": \"2345678901\"\n }\n ],\n \"instantiatesUri\": [\n \"http://example.org/hyperkalemia\"\n ],\n \"partOf\": [\n {\n \"display\": \"Serum Potassium Observation\"\n }\n ],\n \"status\": \"completed\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://acme.org/messagetypes\",\n \"code\": \"Alert\"\n }\n ],\n \"text\": \"Alert\"\n }\n ],\n \"medium\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationMode\",\n \"code\": \"WRITTEN\",\n \"display\": \"written\"\n }\n ],\n \"text\": \"written\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"sent\": \"2014-12-12T18:01:10-08:00\",\n \"received\": \"2014-12-12T18:01:11-08:00\",\n \"recipient\": [\n {\n \"reference\": \"Practitioner/example\"\n }\n ],\n \"sender\": {\n \"reference\": \"Device/f001\"\n },\n \"payload\": [\n {\n \"contentString\": \"Patient 1 has a very high serum potassium value (7.2 mmol/L on 2014-Dec-12 at 5:55 pm)\"\n },\n {\n \"contentReference\": {\n \"display\": \"Serum Potassium Observation\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Communication/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Communication", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CommunicationById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Communication/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Communication", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Communication_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Communication\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003ePatient has very high serum potassium\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"type\": {\n \"text\": \"Paging System\"\n },\n \"system\": \"urn:oid:1.3.4.5.6.7\",\n \"value\": \"2345678901\"\n }\n ],\n \"instantiatesUri\": [\n \"http://example.org/hyperkalemia\"\n ],\n \"partOf\": [\n {\n \"display\": \"Serum Potassium Observation\"\n }\n ],\n \"status\": \"completed\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://acme.org/messagetypes\",\n \"code\": \"Alert\"\n }\n ],\n \"text\": \"Alert\"\n }\n ],\n \"medium\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationMode\",\n \"code\": \"WRITTEN\",\n \"display\": \"written\"\n }\n ],\n \"text\": \"written\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"sent\": \"2014-12-12T18:01:10-08:00\",\n \"received\": \"2014-12-12T18:01:11-08:00\",\n \"recipient\": [\n {\n \"reference\": \"Practitioner/example\"\n }\n ],\n \"sender\": {\n \"reference\": \"Device/f001\"\n },\n \"payload\": [\n {\n \"contentString\": \"Patient 1 has a very high serum potassium value (7.2 mmol/L on 2014-Dec-12 at 5:55 pm)\"\n },\n {\n \"contentReference\": {\n \"display\": \"Serum Potassium Observation\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Communication", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Communication" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Communication_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Communication?based-on=&context=&definition=&encounter=&part-of=&patient=&recipient=&sender=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&identifier=&medium=&received=&sent=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Communication" - ], - "query": [ - { - "key": "based-on", - "value": "", - "description": "Request fulfilled by this communication" - }, - { - "key": "context", - "value": "", - "description": "Encounter or episode leading to message" - }, - { - "key": "definition", - "value": "", - "description": "Instantiates protocol or definition" - }, - { - "key": "encounter", - "value": "", - "description": "Encounter leading to message" - }, - { - "key": "part-of", - "value": "", - "description": "Part of this action" - }, - { - "key": "patient", - "value": "", - "description": "Focus of message" - }, - { - "key": "recipient", - "value": "", - "description": "Message recipient" - }, - { - "key": "sender", - "value": "", - "description": "Message sender" - }, - { - "key": "subject", - "value": "", - "description": "Focus of message" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "category", - "value": "", - "description": "Message category" - }, - { - "key": "identifier", - "value": "", - "description": "Unique identifier" - }, - { - "key": "medium", - "value": "", - "description": "A channel of communication" - }, - { - "key": "received", - "value": "", - "description": "When received" - }, - { - "key": "sent", - "value": "", - "description": "When sent" - }, - { - "key": "status", - "value": "", - "description": "preparation | in-progress | suspended | aborted | completed | entered-in-error" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CommunicationHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Communication/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Communication", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Communication Request", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "CommunicationRequestHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CommunicationRequest/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CommunicationRequest", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CommunicationRequestHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CommunicationRequest/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CommunicationRequest", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CommunicationRequestById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CommunicationRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CommunicationRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CommunicationRequestById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"CommunicationRequest\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eTo be filled out at a later time\\u003c/div\\u003e\"\n },\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/CommunicationRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CommunicationRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CommunicationRequestById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CommunicationRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CommunicationRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CommunicationRequest_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"CommunicationRequest\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eTo be filled out at a later time\\u003c/div\\u003e\"\n },\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/CommunicationRequest", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CommunicationRequest" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CommunicationRequest_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CommunicationRequest?based-on=&context=&encounter=&patient=&recipient=&replaces=&requester=&sender=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&authored=&category=&group-identifier=&identifier=&medium=&occurrence=&priority=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CommunicationRequest" - ], - "query": [ - { - "key": "based-on", - "value": "", - "description": "Fulfills plan or proposal" - }, - { - "key": "context", - "value": "", - "description": "Encounter or episode leading to message" - }, - { - "key": "encounter", - "value": "", - "description": "Encounter leading to message" - }, - { - "key": "patient", - "value": "", - "description": "Focus of message" - }, - { - "key": "recipient", - "value": "", - "description": "Message recipient" - }, - { - "key": "replaces", - "value": "", - "description": "Request(s) replaced by this request" - }, - { - "key": "requester", - "value": "", - "description": "Individual making the request" - }, - { - "key": "sender", - "value": "", - "description": "Message sender" - }, - { - "key": "subject", - "value": "", - "description": "Focus of message" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "authored", - "value": "", - "description": "When request transitioned to being actionable" - }, - { - "key": "category", - "value": "", - "description": "Message category" - }, - { - "key": "group-identifier", - "value": "", - "description": "Composite request this is part of" - }, - { - "key": "identifier", - "value": "", - "description": "Unique identifier" - }, - { - "key": "medium", - "value": "", - "description": "A channel of communication" - }, - { - "key": "occurrence", - "value": "", - "description": "When scheduled" - }, - { - "key": "priority", - "value": "", - "description": "Message urgency" - }, - { - "key": "status", - "value": "", - "description": "draft | active | suspended | cancelled | completed | entered-in-error | unknown" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CommunicationRequestHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CommunicationRequest/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CommunicationRequest", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Compartment Definition", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "CompartmentDefinitionHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CompartmentDefinition/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CompartmentDefinition", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CompartmentDefinitionHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CompartmentDefinition/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CompartmentDefinition", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CompartmentDefinitionById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CompartmentDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CompartmentDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CompartmentDefinitionById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"CompartmentDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/CompartmentDefinition/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: EXAMPLE\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 24/02/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: Health Level Seven International (FHIR Infrastructure)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: The set of resources associated with a particular Device (example with Communication and CommunicationRequest resourses only).\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epurpose\\u003c/b\\u003e: Provides an example of a FHIR compartment definition based on the Device resource type.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Device\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esearch\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Communication\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparam\\u003c/b\\u003e: sender, recipient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The device used as the message sender and recipient\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: CommunicationRequest\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparam\\u003c/b\\u003e: sender, recipient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The device used as the message sender and recipient\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/CompartmentDefinition/example\",\n \"name\": \"EXAMPLE\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2017-02-24\",\n \"publisher\": \"Health Level Seven International (FHIR Infrastructure)\",\n \"contact\": [\n {\n \"name\": \"[string]\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"The set of resources associated with a particular Device (example with Communication and CommunicationRequest resourses only).\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/resource-types\",\n \"code\": \"Device\"\n }\n ]\n }\n }\n ],\n \"purpose\": \"Provides an example of a FHIR compartment definition based on the Device resource type.\",\n \"code\": \"Device\",\n \"search\": true,\n \"resource\": [\n {\n \"code\": \"Communication\",\n \"param\": [\n \"sender\",\n \"recipient\"\n ],\n \"documentation\": \"The device used as the message sender and recipient\"\n },\n {\n \"code\": \"CommunicationRequest\",\n \"param\": [\n \"sender\",\n \"recipient\"\n ],\n \"documentation\": \"The device used as the message sender and recipient\"\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/CompartmentDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CompartmentDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CompartmentDefinitionById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CompartmentDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CompartmentDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CompartmentDefinition_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"CompartmentDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/CompartmentDefinition/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: EXAMPLE\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 24/02/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: Health Level Seven International (FHIR Infrastructure)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: The set of resources associated with a particular Device (example with Communication and CommunicationRequest resourses only).\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epurpose\\u003c/b\\u003e: Provides an example of a FHIR compartment definition based on the Device resource type.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Device\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esearch\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Communication\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparam\\u003c/b\\u003e: sender, recipient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The device used as the message sender and recipient\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: CommunicationRequest\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparam\\u003c/b\\u003e: sender, recipient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The device used as the message sender and recipient\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/CompartmentDefinition/example\",\n \"name\": \"EXAMPLE\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2017-02-24\",\n \"publisher\": \"Health Level Seven International (FHIR Infrastructure)\",\n \"contact\": [\n {\n \"name\": \"[string]\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"The set of resources associated with a particular Device (example with Communication and CommunicationRequest resourses only).\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/resource-types\",\n \"code\": \"Device\"\n }\n ]\n }\n }\n ],\n \"purpose\": \"Provides an example of a FHIR compartment definition based on the Device resource type.\",\n \"code\": \"Device\",\n \"search\": true,\n \"resource\": [\n {\n \"code\": \"Communication\",\n \"param\": [\n \"sender\",\n \"recipient\"\n ],\n \"documentation\": \"The device used as the message sender and recipient\"\n },\n {\n \"code\": \"CommunicationRequest\",\n \"param\": [\n \"sender\",\n \"recipient\"\n ],\n \"documentation\": \"The device used as the message sender and recipient\"\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/CompartmentDefinition", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CompartmentDefinition" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CompartmentDefinition_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CompartmentDefinition?_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&description=&jurisdiction=&name=&publisher=&resource=&status=&title=&url=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CompartmentDefinition" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Patient | Encounter | RelatedPerson | Practitioner | Device" - }, - { - "key": "date", - "value": "", - "description": "The compartment definition publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the compartment definition" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the compartment definition" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the compartment definition" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the compartment definition" - }, - { - "key": "resource", - "value": "", - "description": "Name of resource type" - }, - { - "key": "status", - "value": "", - "description": "The current status of the compartment definition" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the compartment definition" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the compartment definition" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CompartmentDefinitionHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/CompartmentDefinition/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "CompartmentDefinition", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Composition", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "CompositionHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Composition/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Composition", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CompositionHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Composition/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Composition", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CompositionById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Composition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Composition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CompositionById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Composition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eConsultation note for Henry Levin the 7th\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eManaged by Good Health Clinic\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": {\n \"system\": \"http://healthintersections.com.au/test\",\n \"value\": \"1\"\n },\n \"status\": \"final\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11488-4\",\n \"display\": \"Consult note\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LP173421-1\",\n \"display\": \"Report\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/xcda\",\n \"display\": \"Henry Levin the 7th\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/xcda\"\n },\n \"date\": \"2012-01-04T09:10:14Z\",\n \"author\": [\n {\n \"reference\": \"Practitioner/xcda-author\",\n \"display\": \"Harold Hippocrates, MD\"\n }\n ],\n \"title\": \"Consultation Note\",\n \"confidentiality\": \"N\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"time\": \"2012-01-04T09:10:14Z\",\n \"party\": {\n \"reference\": \"Practitioner/xcda-author\",\n \"display\": \"Harold Hippocrates, MD\"\n }\n }\n ],\n \"custodian\": {\n \"reference\": \"Organization/2.16.840.1.113883.19.5\",\n \"display\": \"Good Health Clinic\"\n },\n \"relatesTo\": [\n {\n \"code\": \"replaces\",\n \"targetReference\": {\n \"reference\": \"Composition/old-example\"\n }\n },\n {\n \"code\": \"appends\",\n \"targetIdentifier\": {\n \"system\": \"http://example.org/fhir/NamingSystem/document-ids\",\n \"value\": \"ABC123\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"HEALTHREC\",\n \"display\": \"health record\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2010-07-18\",\n \"end\": \"2012-11-12\"\n },\n \"detail\": [\n {\n \"reference\": \"Observation/example\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"History of present illness\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11348-0\",\n \"display\": \"History of past illness Narrative\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\t\\u003ctable\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eCode\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eDate\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eType\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eBodySite\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eSeverity\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eStroke\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e2010-07-18\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eDiagnosis\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eBurnt Ear\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e2012-05-24\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eDiagnosis\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eLeft Ear\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eAsthma\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e2012-11-12\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFinding\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eMild\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\t\\u003c/div\\u003e\"\n },\n \"mode\": \"snapshot\",\n \"orderedBy\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/list-order\",\n \"code\": \"event-date\",\n \"display\": \"Sorted by Event Date\"\n }\n ]\n },\n \"entry\": [\n {\n \"reference\": \"Condition/stroke\"\n },\n {\n \"reference\": \"Condition/example\"\n },\n {\n \"reference\": \"Condition/example2\"\n }\n ]\n },\n {\n \"title\": \"History of family member diseases\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10157-6\",\n \"display\": \"History of family member diseases Narrative\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\t\\u003cp\\u003eHistory of family member diseases - not available\\u003c/p\\u003e\\n\\t\\t\\t\\u003c/div\\u003e\"\n },\n \"mode\": \"snapshot\",\n \"emptyReason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/list-empty-reason\",\n \"code\": \"withheld\",\n \"display\": \"Information Withheld\"\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Composition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Composition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CompositionById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Composition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Composition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Composition_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Composition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eConsultation note for Henry Levin the 7th\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eManaged by Good Health Clinic\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": {\n \"system\": \"http://healthintersections.com.au/test\",\n \"value\": \"1\"\n },\n \"status\": \"final\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11488-4\",\n \"display\": \"Consult note\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LP173421-1\",\n \"display\": \"Report\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/xcda\",\n \"display\": \"Henry Levin the 7th\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/xcda\"\n },\n \"date\": \"2012-01-04T09:10:14Z\",\n \"author\": [\n {\n \"reference\": \"Practitioner/xcda-author\",\n \"display\": \"Harold Hippocrates, MD\"\n }\n ],\n \"title\": \"Consultation Note\",\n \"confidentiality\": \"N\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"time\": \"2012-01-04T09:10:14Z\",\n \"party\": {\n \"reference\": \"Practitioner/xcda-author\",\n \"display\": \"Harold Hippocrates, MD\"\n }\n }\n ],\n \"custodian\": {\n \"reference\": \"Organization/2.16.840.1.113883.19.5\",\n \"display\": \"Good Health Clinic\"\n },\n \"relatesTo\": [\n {\n \"code\": \"replaces\",\n \"targetReference\": {\n \"reference\": \"Composition/old-example\"\n }\n },\n {\n \"code\": \"appends\",\n \"targetIdentifier\": {\n \"system\": \"http://example.org/fhir/NamingSystem/document-ids\",\n \"value\": \"ABC123\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"HEALTHREC\",\n \"display\": \"health record\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2010-07-18\",\n \"end\": \"2012-11-12\"\n },\n \"detail\": [\n {\n \"reference\": \"Observation/example\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"History of present illness\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11348-0\",\n \"display\": \"History of past illness Narrative\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\t\\u003ctable\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eCode\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eDate\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eType\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eBodySite\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eSeverity\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eStroke\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e2010-07-18\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eDiagnosis\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eBurnt Ear\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e2012-05-24\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eDiagnosis\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eLeft Ear\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eAsthma\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e2012-11-12\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFinding\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eMild\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\t\\u003c/div\\u003e\"\n },\n \"mode\": \"snapshot\",\n \"orderedBy\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/list-order\",\n \"code\": \"event-date\",\n \"display\": \"Sorted by Event Date\"\n }\n ]\n },\n \"entry\": [\n {\n \"reference\": \"Condition/stroke\"\n },\n {\n \"reference\": \"Condition/example\"\n },\n {\n \"reference\": \"Condition/example2\"\n }\n ]\n },\n {\n \"title\": \"History of family member diseases\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10157-6\",\n \"display\": \"History of family member diseases Narrative\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\t\\u003cp\\u003eHistory of family member diseases - not available\\u003c/p\\u003e\\n\\t\\t\\t\\u003c/div\\u003e\"\n },\n \"mode\": \"snapshot\",\n \"emptyReason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/list-empty-reason\",\n \"code\": \"withheld\",\n \"display\": \"Information Withheld\"\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Composition", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Composition" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Composition_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Composition?patient=&attester=&author=&encounter=&entry=&related-ref=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&type=&class=&confidentiality=&context=&period=&related-id=§ion=&status=&title=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Composition" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "attester", - "value": "", - "description": "Who attested the composition" - }, - { - "key": "author", - "value": "", - "description": "Who and/or what authored the composition" - }, - { - "key": "encounter", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" - }, - { - "key": "entry", - "value": "", - "description": "A reference to data that supports this section" - }, - { - "key": "related-ref", - "value": "", - "description": "Target of the relationship" - }, - { - "key": "subject", - "value": "", - "description": "Who and/or what the composition is about" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "type", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" - }, - { - "key": "class", - "value": "", - "description": "Categorization of Composition" - }, - { - "key": "confidentiality", - "value": "", - "description": "As defined by affinity domain" - }, - { - "key": "context", - "value": "", - "description": "Code(s) that apply to the event being documented" - }, - { - "key": "period", - "value": "", - "description": "The period covered by the documentation" - }, - { - "key": "related-id", - "value": "", - "description": "Target of the relationship" - }, - { - "key": "section", - "value": "", - "description": "Classification of section (recommended)" - }, - { - "key": "status", - "value": "", - "description": "preliminary | final | amended | entered-in-error" - }, - { - "key": "title", - "value": "", - "description": "Human Readable name/title" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CompositionHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Composition/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Composition", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Concept Map", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ConceptMapHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ConceptMap/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ConceptMap", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ConceptMapHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ConceptMap/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ConceptMap", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ConceptMapById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ConceptMap/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ConceptMap", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ConceptMapById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ConceptMap\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ch2\\u003eFHIR-v3-Address-Use (http://hl7.org/fhir/ConceptMap/101)\\u003c/h2\\u003e\\n \\u003cp\\u003eMapping from \\n \\u003ca href\\u003d\\\"valueset-address-use.html\\\"\\u003ehttp://hl7.org/fhir/ValueSet/address-use\\u003c/a\\u003e to \\n \\u003ca href\\u003d\\\"v3/AddressUse/vs.html\\\"\\u003ehttp://terminology.hl7.org/ValueSet/v3-AddressUse\\u003c/a\\u003e\\n \\u003c/p\\u003e\\n \\u003cp\\u003eDRAFT (not intended for production usage). Published on 13/06/2012 by HL7, Inc (FHIR project team (example): \\n \\u003ca href\\u003d\\\"http://hl7.org/fhir\\\"\\u003ehttp://hl7.org/fhir\\u003c/a\\u003e). Creative Commons 0\\n \\u003c/p\\u003e\\n \\u003cdiv\\u003e\\n \\u003cp\\u003eA mapping between the FHIR and HL7 v3 AddressUse Code systems\\u003c/p\\u003e\\n\\n \\u003c/div\\u003e\\n \\u003cbr/\\u003e\\n \\u003ctable class\\u003d\\\"grid\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eSource Code\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eEquivalence\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDestination Code\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eComment\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003ehome\\u003c/td\\u003e\\n \\u003ctd\\u003eequivalent\\u003c/td\\u003e\\n \\u003ctd\\u003eH (home address)\\u003c/td\\u003e\\n \\u003ctd/\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003ework\\u003c/td\\u003e\\n \\u003ctd\\u003eequivalent\\u003c/td\\u003e\\n \\u003ctd\\u003eWP (work place)\\u003c/td\\u003e\\n \\u003ctd/\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003etemp (Temporary)\\u003c/td\\u003e\\n \\u003ctd\\u003eequivalent\\u003c/td\\u003e\\n \\u003ctd\\u003eTMP (temporary address)\\u003c/td\\u003e\\n \\u003ctd/\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eold (Old / Incorrect)\\u003c/td\\u003e\\n \\u003ctd\\u003edisjoint\\u003c/td\\u003e\\n \\u003ctd\\u003eBAD (bad address)\\u003c/td\\u003e\\n \\u003ctd\\u003eIn the HL7 v3 AD, old is handled by the usablePeriod element, but you have to provide a time, there\\u0027s no simple equivalent of flagging an address as old\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/ConceptMap/101\",\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:uuid:53cd62ee-033e-414c-9f58-3ca97b5ffc3b\"\n },\n \"version\": \"4.0.1\",\n \"name\": \"FHIR-v3-Address-Use\",\n \"title\": \"FHIR/v3 Address Use Mapping\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2012-06-13\",\n \"publisher\": \"HL7, Inc\",\n \"contact\": [\n {\n \"name\": \"FHIR project team (example)\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"A mapping between the FHIR and HL7 v3 AddressUse Code systems\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"venue\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"for CCDA Usage\"\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"To help implementers map from HL7 v3/CDA to FHIR\",\n \"copyright\": \"Creative Commons 0\",\n \"sourceUri\": \"http://hl7.org/fhir/ValueSet/address-use\",\n \"targetUri\": \"http://terminology.hl7.org/ValueSet/v3-AddressUse\",\n \"group\": [\n {\n \"source\": \"http://hl7.org/fhir/address-use\",\n \"target\": \"http://terminology.hl7.org/CodeSystem/v3-AddressUse\",\n \"element\": [\n {\n \"code\": \"home\",\n \"display\": \"home\",\n \"target\": [\n {\n \"code\": \"H\",\n \"display\": \"home\",\n \"equivalence\": \"equivalent\"\n }\n ]\n },\n {\n \"code\": \"work\",\n \"display\": \"work\",\n \"target\": [\n {\n \"code\": \"WP\",\n \"display\": \"work place\",\n \"equivalence\": \"equivalent\"\n }\n ]\n },\n {\n \"code\": \"temp\",\n \"display\": \"temp\",\n \"target\": [\n {\n \"code\": \"TMP\",\n \"display\": \"temporary address\",\n \"equivalence\": \"equivalent\"\n }\n ]\n },\n {\n \"code\": \"old\",\n \"display\": \"old\",\n \"target\": [\n {\n \"code\": \"BAD\",\n \"display\": \"bad address\",\n \"equivalence\": \"disjoint\",\n \"comment\": \"In the HL7 v3 AD, old is handled by the usablePeriod element, but you have to provide a time, there\\u0027s no simple equivalent of flagging an address as old\"\n }\n ]\n }\n ],\n \"unmapped\": {\n \"mode\": \"fixed\",\n \"code\": \"temp\",\n \"display\": \"temp\"\n }\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/ConceptMap/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ConceptMap", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ConceptMapById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ConceptMap/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ConceptMap", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ConceptMap_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ConceptMap\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ch2\\u003eFHIR-v3-Address-Use (http://hl7.org/fhir/ConceptMap/101)\\u003c/h2\\u003e\\n \\u003cp\\u003eMapping from \\n \\u003ca href\\u003d\\\"valueset-address-use.html\\\"\\u003ehttp://hl7.org/fhir/ValueSet/address-use\\u003c/a\\u003e to \\n \\u003ca href\\u003d\\\"v3/AddressUse/vs.html\\\"\\u003ehttp://terminology.hl7.org/ValueSet/v3-AddressUse\\u003c/a\\u003e\\n \\u003c/p\\u003e\\n \\u003cp\\u003eDRAFT (not intended for production usage). Published on 13/06/2012 by HL7, Inc (FHIR project team (example): \\n \\u003ca href\\u003d\\\"http://hl7.org/fhir\\\"\\u003ehttp://hl7.org/fhir\\u003c/a\\u003e). Creative Commons 0\\n \\u003c/p\\u003e\\n \\u003cdiv\\u003e\\n \\u003cp\\u003eA mapping between the FHIR and HL7 v3 AddressUse Code systems\\u003c/p\\u003e\\n\\n \\u003c/div\\u003e\\n \\u003cbr/\\u003e\\n \\u003ctable class\\u003d\\\"grid\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eSource Code\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eEquivalence\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDestination Code\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eComment\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003ehome\\u003c/td\\u003e\\n \\u003ctd\\u003eequivalent\\u003c/td\\u003e\\n \\u003ctd\\u003eH (home address)\\u003c/td\\u003e\\n \\u003ctd/\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003ework\\u003c/td\\u003e\\n \\u003ctd\\u003eequivalent\\u003c/td\\u003e\\n \\u003ctd\\u003eWP (work place)\\u003c/td\\u003e\\n \\u003ctd/\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003etemp (Temporary)\\u003c/td\\u003e\\n \\u003ctd\\u003eequivalent\\u003c/td\\u003e\\n \\u003ctd\\u003eTMP (temporary address)\\u003c/td\\u003e\\n \\u003ctd/\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eold (Old / Incorrect)\\u003c/td\\u003e\\n \\u003ctd\\u003edisjoint\\u003c/td\\u003e\\n \\u003ctd\\u003eBAD (bad address)\\u003c/td\\u003e\\n \\u003ctd\\u003eIn the HL7 v3 AD, old is handled by the usablePeriod element, but you have to provide a time, there\\u0027s no simple equivalent of flagging an address as old\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/ConceptMap/101\",\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:uuid:53cd62ee-033e-414c-9f58-3ca97b5ffc3b\"\n },\n \"version\": \"4.0.1\",\n \"name\": \"FHIR-v3-Address-Use\",\n \"title\": \"FHIR/v3 Address Use Mapping\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2012-06-13\",\n \"publisher\": \"HL7, Inc\",\n \"contact\": [\n {\n \"name\": \"FHIR project team (example)\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"A mapping between the FHIR and HL7 v3 AddressUse Code systems\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"venue\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"for CCDA Usage\"\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"To help implementers map from HL7 v3/CDA to FHIR\",\n \"copyright\": \"Creative Commons 0\",\n \"sourceUri\": \"http://hl7.org/fhir/ValueSet/address-use\",\n \"targetUri\": \"http://terminology.hl7.org/ValueSet/v3-AddressUse\",\n \"group\": [\n {\n \"source\": \"http://hl7.org/fhir/address-use\",\n \"target\": \"http://terminology.hl7.org/CodeSystem/v3-AddressUse\",\n \"element\": [\n {\n \"code\": \"home\",\n \"display\": \"home\",\n \"target\": [\n {\n \"code\": \"H\",\n \"display\": \"home\",\n \"equivalence\": \"equivalent\"\n }\n ]\n },\n {\n \"code\": \"work\",\n \"display\": \"work\",\n \"target\": [\n {\n \"code\": \"WP\",\n \"display\": \"work place\",\n \"equivalence\": \"equivalent\"\n }\n ]\n },\n {\n \"code\": \"temp\",\n \"display\": \"temp\",\n \"target\": [\n {\n \"code\": \"TMP\",\n \"display\": \"temporary address\",\n \"equivalence\": \"equivalent\"\n }\n ]\n },\n {\n \"code\": \"old\",\n \"display\": \"old\",\n \"target\": [\n {\n \"code\": \"BAD\",\n \"display\": \"bad address\",\n \"equivalence\": \"disjoint\",\n \"comment\": \"In the HL7 v3 AD, old is handled by the usablePeriod element, but you have to provide a time, there\\u0027s no simple equivalent of flagging an address as old\"\n }\n ]\n }\n ],\n \"unmapped\": {\n \"mode\": \"fixed\",\n \"code\": \"temp\",\n \"display\": \"temp\"\n }\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/ConceptMap", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ConceptMap" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ConceptMap_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ConceptMap?source=&source-uri=&target=&target-uri=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&dependson=&description=&identifier=&jurisdiction=&name=&other=&product=&publisher=&source-code=&source-system=&status=&target-code=&target-system=&title=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ConceptMap" - ], - "query": [ - { - "key": "source", - "value": "", - "description": "Identifies the source of the concepts which are being mapped" - }, - { - "key": "source-uri", - "value": "", - "description": "Identifies the source of the concepts which are being mapped" - }, - { - "key": "target", - "value": "", - "description": "Provides context to the mappings" - }, - { - "key": "target-uri", - "value": "", - "description": "Provides context to the mappings" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "The concept map publication date" - }, - { - "key": "dependson", - "value": "", - "description": "Reference to property mapping depends on" - }, - { - "key": "description", - "value": "", - "description": "The description of the concept map" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the concept map" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the concept map" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the concept map" - }, - { - "key": "other", - "value": "", - "description": "Canonical URL for other concept map" - }, - { - "key": "product", - "value": "", - "description": "Reference to property mapping depends on" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the concept map" - }, - { - "key": "source-code", - "value": "", - "description": "Identifies element being mapped" - }, - { - "key": "source-system", - "value": "", - "description": "Code System (if value set crosses code systems)" - }, - { - "key": "status", - "value": "", - "description": "The current status of the concept map" - }, - { - "key": "target-code", - "value": "", - "description": "Code that identifies the target element" - }, - { - "key": "target-system", - "value": "", - "description": "System of the target (if necessary)" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the concept map" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the concept map" - }, - { - "key": "version", - "value": "", - "description": "The business version of the concept map" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ConceptMapHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ConceptMap/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ConceptMap", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Condition", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ConditionHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Condition/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Condition", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ConditionHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Condition/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Condition", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ConditionById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Condition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Condition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ConditionById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Condition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eSevere burn of left ear (Date: 24-May 2012)\\u003c/div\\u003e\"\n },\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n \"code\": \"confirmed\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"439401001\",\n \"display\": \"Diagnosis\"\n }\n ]\n }\n ],\n \"severity\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"24484000\",\n \"display\": \"Severe\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"39065001\",\n \"display\": \"Burn of ear\"\n }\n ],\n \"text\": \"Burnt Ear\"\n },\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"49521004\",\n \"display\": \"Left external ear structure\"\n }\n ],\n \"text\": \"Left Ear\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"onsetDateTime\": \"2012-05-24\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Condition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Condition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ConditionById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Condition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Condition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Condition_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Condition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eSevere burn of left ear (Date: 24-May 2012)\\u003c/div\\u003e\"\n },\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n \"code\": \"confirmed\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"439401001\",\n \"display\": \"Diagnosis\"\n }\n ]\n }\n ],\n \"severity\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"24484000\",\n \"display\": \"Severe\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"39065001\",\n \"display\": \"Burn of ear\"\n }\n ],\n \"text\": \"Burnt Ear\"\n },\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"49521004\",\n \"display\": \"Left external ear structure\"\n }\n ],\n \"text\": \"Left Ear\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"onsetDateTime\": \"2012-05-24\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Condition", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Condition" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Condition_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Condition?patient=&asserter=&context=&encounter=&evidence-detail=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&abatement-age=&abatement-boolean=&abatement-date=&abatement-string=&asserted-date=&body-site=&category=&clinical-status=&evidence=&onset-age=&onset-date=&onset-info=&severity=&stage=&verification-status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Condition" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "asserter", - "value": "", - "description": "Person who asserts this condition" - }, - { - "key": "context", - "value": "", - "description": "Encounter or episode when condition first asserted" - }, - { - "key": "encounter", - "value": "", - "description": "Encounter when condition first asserted" - }, - { - "key": "evidence-detail", - "value": "", - "description": "Supporting information found elsewhere" - }, - { - "key": "subject", - "value": "", - "description": "Who has the condition?" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "abatement-age", - "value": "", - "description": "Abatement as age or age range" - }, - { - "key": "abatement-boolean", - "value": "", - "description": "Abatement boolean (boolean is true or non-boolean values are present)" - }, - { - "key": "abatement-date", - "value": "", - "description": "Date-related abatements (dateTime and period)" - }, - { - "key": "abatement-string", - "value": "", - "description": "Abatement as a string" - }, - { - "key": "asserted-date", - "value": "", - "description": "Date record was believed accurate" - }, - { - "key": "body-site", - "value": "", - "description": "Anatomical location, if relevant" - }, - { - "key": "category", - "value": "", - "description": "The category of the condition" - }, - { - "key": "clinical-status", - "value": "", - "description": "The clinical status of the condition" - }, - { - "key": "evidence", - "value": "", - "description": "Manifestation/symptom" - }, - { - "key": "onset-age", - "value": "", - "description": "Onsets as age or age range" - }, - { - "key": "onset-date", - "value": "", - "description": "Date related onsets (dateTime and Period)" - }, - { - "key": "onset-info", - "value": "", - "description": "Onsets as a string" - }, - { - "key": "severity", - "value": "", - "description": "The severity of the condition" - }, - { - "key": "stage", - "value": "", - "description": "Simple summary (disease specific)" - }, - { - "key": "verification-status", - "value": "", - "description": "provisional | differential | confirmed | refuted | entered-in-error | unknown" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ConditionHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Condition/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Condition", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Consent", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ConsentHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Consent/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Consent", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ConsentHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Consent/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Consent", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ConsentById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Consent/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Consent", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ConsentById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Consent\",\n \"id\": \"consent-example-basic\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003e\\n\\tAuthorize Normal access for Treatment\\n\\t\\t\\t\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003e\\n Patient \\u0026quot;P. van de Heuvel\\u0026quot; wishes to have all of the PHI collected at the Good Health Psychiatric Hospital \\n available for normal treatment use.\\n\\t\\t\\t\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"status\": \"active\",\n \"scope\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/consentscope\",\n \"code\": \"patient-privacy\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"59284-0\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/f001\",\n \"display\": \"P. van de Heuvel\"\n },\n \"dateTime\": \"2016-05-11\",\n \"organization\": [\n {\n \"reference\": \"Organization/f001\"\n }\n ],\n \"sourceAttachment\": {\n \"title\": \"The terms of the consent in lawyer speak.\"\n },\n \"policyRule\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"OPTIN\"\n }\n ]\n },\n \"provision\": {\n \"period\": {\n \"start\": \"1964-01-01\",\n \"end\": \"2016-01-01\"\n }\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Consent/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Consent", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ConsentById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Consent/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Consent", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Consent_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Consent\",\n \"id\": \"consent-example-basic\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003e\\n\\tAuthorize Normal access for Treatment\\n\\t\\t\\t\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003e\\n Patient \\u0026quot;P. van de Heuvel\\u0026quot; wishes to have all of the PHI collected at the Good Health Psychiatric Hospital \\n available for normal treatment use.\\n\\t\\t\\t\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"status\": \"active\",\n \"scope\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/consentscope\",\n \"code\": \"patient-privacy\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"59284-0\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/f001\",\n \"display\": \"P. van de Heuvel\"\n },\n \"dateTime\": \"2016-05-11\",\n \"organization\": [\n {\n \"reference\": \"Organization/f001\"\n }\n ],\n \"sourceAttachment\": {\n \"title\": \"The terms of the consent in lawyer speak.\"\n },\n \"policyRule\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"OPTIN\"\n }\n ]\n },\n \"provision\": {\n \"period\": {\n \"start\": \"1964-01-01\",\n \"end\": \"2016-01-01\"\n }\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Consent", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Consent" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Consent_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Consent?patient=&actor=&consentor=&data=&organization=&source=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&action=&category=&period=&purpose=&securitylabel=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Consent" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "actor", - "value": "", - "description": "Resource for the actor (or group, by role)" - }, - { - "key": "consentor", - "value": "", - "description": "Who is agreeing to the policy and exceptions" - }, - { - "key": "data", - "value": "", - "description": "The actual data reference" - }, - { - "key": "organization", - "value": "", - "description": "Custodian of the consent" - }, - { - "key": "source", - "value": "", - "description": "Source from which this consent is taken" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "action", - "value": "", - "description": "Actions controlled by this consent" - }, - { - "key": "category", - "value": "", - "description": "Classification of the consent statement - for indexing/retrieval" - }, - { - "key": "period", - "value": "", - "description": "Period that this consent applies" - }, - { - "key": "purpose", - "value": "", - "description": "Context of activities for which the agreement is made" - }, - { - "key": "securitylabel", - "value": "", - "description": "Security Labels that define affected resources" - }, - { - "key": "status", - "value": "", - "description": "draft | proposed | active | rejected | inactive | entered-in-error" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ConsentHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Consent/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Consent", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Contract", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ContractHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Contract/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Contract", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ContractHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Contract/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Contract", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ContractById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Contract/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Contract", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ContractById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Contract\",\n \"id\": \"C-123\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the contract\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://happyvalley.com/contract\",\n \"value\": \"12347\"\n }\n ],\n \"term\": [\n {\n \"offer\": {\n \"text\": \"Can\\u0027t refuse\"\n },\n \"asset\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"code\": \"RicardianContract\"\n }\n ]\n }\n ],\n \"subtype\": [\n {\n \"text\": \"sample\"\n }\n ],\n \"period\": [\n {\n \"start\": \"2017-06-01\"\n }\n ],\n \"valuedItem\": [\n {\n \"entityCodeableConcept\": {\n \"text\": \"Ford Bobcat\"\n },\n \"identifier\": {\n \"system\": \"http://somewhere.motor-vehicle.com/vin\",\n \"value\": \"XXSVT34-7665t952236\"\n },\n \"effectiveTime\": \"1995\",\n \"quantity\": {\n \"value\": 1\n },\n \"unitPrice\": {\n \"value\": 200.00,\n \"currency\": \"CAD\"\n },\n \"factor\": 1.0,\n \"points\": 1.0,\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"CAD\"\n }\n }\n ]\n }\n ]\n }\n ],\n \"rule\": [\n {\n \"contentAttachment\": {\n \"contentType\": \"application/txt\",\n \"url\": \"http://www.rfc-editor.org/bcp/bcp13.txt\"\n }\n }\n ],\n \"legallyBindingAttachment\": {\n \"contentType\": \"application/pdf\",\n \"url\": \"http://www.aws3.com/storage/doc.pdf\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Contract/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Contract", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ContractById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Contract/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Contract", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Contract_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Contract\",\n \"id\": \"C-123\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the contract\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://happyvalley.com/contract\",\n \"value\": \"12347\"\n }\n ],\n \"term\": [\n {\n \"offer\": {\n \"text\": \"Can\\u0027t refuse\"\n },\n \"asset\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"code\": \"RicardianContract\"\n }\n ]\n }\n ],\n \"subtype\": [\n {\n \"text\": \"sample\"\n }\n ],\n \"period\": [\n {\n \"start\": \"2017-06-01\"\n }\n ],\n \"valuedItem\": [\n {\n \"entityCodeableConcept\": {\n \"text\": \"Ford Bobcat\"\n },\n \"identifier\": {\n \"system\": \"http://somewhere.motor-vehicle.com/vin\",\n \"value\": \"XXSVT34-7665t952236\"\n },\n \"effectiveTime\": \"1995\",\n \"quantity\": {\n \"value\": 1\n },\n \"unitPrice\": {\n \"value\": 200.00,\n \"currency\": \"CAD\"\n },\n \"factor\": 1.0,\n \"points\": 1.0,\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"CAD\"\n }\n }\n ]\n }\n ]\n }\n ],\n \"rule\": [\n {\n \"contentAttachment\": {\n \"contentType\": \"application/txt\",\n \"url\": \"http://www.rfc-editor.org/bcp/bcp13.txt\"\n }\n }\n ],\n \"legallyBindingAttachment\": {\n \"contentType\": \"application/pdf\",\n \"url\": \"http://www.aws3.com/storage/doc.pdf\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Contract", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Contract" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Contract_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Contract?agent=&authority=&domain=&patient=&signer=&subject=&term-topic=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&issued=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Contract" - ], - "query": [ - { - "key": "agent", - "value": "", - "description": "Agent to the Contact" - }, - { - "key": "authority", - "value": "", - "description": "The authority of the contract" - }, - { - "key": "domain", - "value": "", - "description": "The domain of the contract" - }, - { - "key": "patient", - "value": "", - "description": "The identity of the subject of the contract (if a patient)" - }, - { - "key": "signer", - "value": "", - "description": "Contract Signatory Party" - }, - { - "key": "subject", - "value": "", - "description": "The identity of the subject of the contract" - }, - { - "key": "term-topic", - "value": "", - "description": "The identity of the topic of the contract terms" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "The identity of the contract" - }, - { - "key": "issued", - "value": "", - "description": "The date/time the contract was issued" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ContractHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Contract/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Contract", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Coverage", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "CoverageHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Coverage/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Coverage", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CoverageHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Coverage/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Coverage", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "CoverageById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Coverage/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Coverage", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CoverageById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Coverage\",\n \"id\": \"9876B1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the coverage\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://benefitsinc.com/certificate\",\n \"value\": \"12345\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EHCPOL\",\n \"display\": \"extended healthcare\"\n }\n ]\n },\n \"policyHolder\": {\n \"reference\": \"http://benefitsinc.com/FHIR/Organization/CBI35\"\n },\n \"subscriber\": {\n \"reference\": \"Patient/4\"\n },\n \"beneficiary\": {\n \"reference\": \"Patient/4\"\n },\n \"dependent\": \"0\",\n \"relationship\": {\n \"coding\": [\n {\n \"code\": \"self\"\n }\n ]\n },\n \"period\": {\n \"start\": \"2011-05-23\",\n \"end\": \"2012-05-23\"\n },\n \"payor\": [\n {\n \"reference\": \"Organization/2\"\n }\n ],\n \"class\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"group\"\n }\n ]\n },\n \"value\": \"CB135\",\n \"name\": \"Corporate Baker\\u0027s Inc. Local #35\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"subgroup\"\n }\n ]\n },\n \"value\": \"123\",\n \"name\": \"Trainee Part-time Benefits\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"plan\"\n }\n ]\n },\n \"value\": \"B37FC\",\n \"name\": \"Full Coverage: Medical, Dental, Pharmacy, Vision, EHC\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"subplan\"\n }\n ]\n },\n \"value\": \"P7\",\n \"name\": \"Includes afterlife benefits\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"class\"\n }\n ]\n },\n \"value\": \"SILVER\",\n \"name\": \"Silver: Family Plan spouse only\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"subclass\"\n }\n ]\n },\n \"value\": \"Tier2\",\n \"name\": \"Low deductable, max $20 copay\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"sequence\"\n }\n ]\n },\n \"value\": \"9\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxid\"\n }\n ]\n },\n \"value\": \"MDF12345\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxbin\"\n }\n ]\n },\n \"value\": \"987654\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxgroup\"\n }\n ]\n },\n \"value\": \"M35PT\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxpcn\"\n }\n ]\n },\n \"value\": \"234516\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"sequence\"\n }\n ]\n },\n \"value\": \"9\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Coverage/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Coverage", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CoverageById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Coverage/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Coverage", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Coverage_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Coverage\",\n \"id\": \"9876B1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the coverage\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://benefitsinc.com/certificate\",\n \"value\": \"12345\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EHCPOL\",\n \"display\": \"extended healthcare\"\n }\n ]\n },\n \"policyHolder\": {\n \"reference\": \"http://benefitsinc.com/FHIR/Organization/CBI35\"\n },\n \"subscriber\": {\n \"reference\": \"Patient/4\"\n },\n \"beneficiary\": {\n \"reference\": \"Patient/4\"\n },\n \"dependent\": \"0\",\n \"relationship\": {\n \"coding\": [\n {\n \"code\": \"self\"\n }\n ]\n },\n \"period\": {\n \"start\": \"2011-05-23\",\n \"end\": \"2012-05-23\"\n },\n \"payor\": [\n {\n \"reference\": \"Organization/2\"\n }\n ],\n \"class\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"group\"\n }\n ]\n },\n \"value\": \"CB135\",\n \"name\": \"Corporate Baker\\u0027s Inc. Local #35\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"subgroup\"\n }\n ]\n },\n \"value\": \"123\",\n \"name\": \"Trainee Part-time Benefits\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"plan\"\n }\n ]\n },\n \"value\": \"B37FC\",\n \"name\": \"Full Coverage: Medical, Dental, Pharmacy, Vision, EHC\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"subplan\"\n }\n ]\n },\n \"value\": \"P7\",\n \"name\": \"Includes afterlife benefits\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"class\"\n }\n ]\n },\n \"value\": \"SILVER\",\n \"name\": \"Silver: Family Plan spouse only\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"subclass\"\n }\n ]\n },\n \"value\": \"Tier2\",\n \"name\": \"Low deductable, max $20 copay\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"sequence\"\n }\n ]\n },\n \"value\": \"9\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxid\"\n }\n ]\n },\n \"value\": \"MDF12345\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxbin\"\n }\n ]\n },\n \"value\": \"987654\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxgroup\"\n }\n ]\n },\n \"value\": \"M35PT\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxpcn\"\n }\n ]\n },\n \"value\": \"234516\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"sequence\"\n }\n ]\n },\n \"value\": \"9\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Coverage", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Coverage" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Coverage_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Coverage?beneficiary=&payor=&policy-holder=&subscriber=&_id=&_lastUpdated=&_profile=&_security=&_tag=&class=&dependent=&group=&identifier=&plan=&sequence=&subclass=&subgroup=&subplan=&type=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Coverage" - ], - "query": [ - { - "key": "beneficiary", - "value": "", - "description": "Covered party" - }, - { - "key": "payor", - "value": "", - "description": "The identity of the insurer or party paying for services" - }, - { - "key": "policy-holder", - "value": "", - "description": "Reference to the policyholder" - }, - { - "key": "subscriber", - "value": "", - "description": "Reference to the subscriber" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "class", - "value": "", - "description": "Class identifier" - }, - { - "key": "dependent", - "value": "", - "description": "Dependent number" - }, - { - "key": "group", - "value": "", - "description": "Group identifier" - }, - { - "key": "identifier", - "value": "", - "description": "The primary identifier of the insured and the coverage" - }, - { - "key": "plan", - "value": "", - "description": "A plan or policy identifier" - }, - { - "key": "sequence", - "value": "", - "description": "Sequence number" - }, - { - "key": "subclass", - "value": "", - "description": "Sub-class identifier" - }, - { - "key": "subgroup", - "value": "", - "description": "Sub-group identifier" - }, - { - "key": "subplan", - "value": "", - "description": "Sub-plan identifier" - }, - { - "key": "type", - "value": "", - "description": "The kind of coverage (health plan, auto, Workers Compensation)" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "CoverageHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Coverage/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Coverage", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Data Element", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "DataElementHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DataElement/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DataElement", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DataElementHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DataElement/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DataElement", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DataElementById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DataElement/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DataElement", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DataElementById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"contained\": [\n {\n \"resourceType\": \"\",\n \"id\": \"\",\n \"url\": \"\",\n \"version\": \"\",\n \"name\": \"\",\n \"status\": \"\",\n \"description\": \"\",\n \"compose\": {\n \"include\": [\n {\n \"system\": \"\",\n \"concept\": [\n {\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"value\": \"\"\n }\n ],\n \"version\": \"\",\n \"status\": \"\",\n \"publisher\": \"\",\n \"name\": \"\",\n \"useContext\": [\n {\n \"coding\": [\n {\n \"system\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"element\": [\n {\n \"path\": \"\",\n \"definition\": \"\",\n \"maxLength\": \"\",\n \"extension\": [\n {\n \"url\": \"\",\n \"valueInteger\": \"\"\n }\n ],\n \"type\": [\n {\n \"code\": \"\"\n }\n ],\n \"binding\": {\n \"strength\": \"\",\n \"valueSetReference\": {\n \"extension\": [\n {\n \"value\": \"\"\n }\n ],\n \"reference\": \"\"\n }\n }\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/DataElement/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DataElement", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DataElementById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DataElement/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DataElement", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DataElement_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"contained\": [\n {\n \"resourceType\": \"\",\n \"id\": \"\",\n \"url\": \"\",\n \"version\": \"\",\n \"name\": \"\",\n \"status\": \"\",\n \"description\": \"\",\n \"compose\": {\n \"include\": [\n {\n \"system\": \"\",\n \"concept\": [\n {\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"value\": \"\"\n }\n ],\n \"version\": \"\",\n \"status\": \"\",\n \"publisher\": \"\",\n \"name\": \"\",\n \"useContext\": [\n {\n \"coding\": [\n {\n \"system\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"element\": [\n {\n \"path\": \"\",\n \"definition\": \"\",\n \"maxLength\": \"\",\n \"extension\": [\n {\n \"url\": \"\",\n \"valueInteger\": \"\"\n }\n ],\n \"type\": [\n {\n \"code\": \"\"\n }\n ],\n \"binding\": {\n \"strength\": \"\",\n \"valueSetReference\": {\n \"extension\": [\n {\n \"value\": \"\"\n }\n ],\n \"reference\": \"\"\n }\n }\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/DataElement", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DataElement" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DataElement_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DataElement?_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&description=&identifier=&jurisdiction=&name=&publisher=&status=&stringency=&title=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DataElement" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "A code for the data element (server may choose to do subsumption)" - }, - { - "key": "date", - "value": "", - "description": "The data element publication date" - }, - { - "key": "description", - "value": "", - "description": "Text search in the description of the data element. This corresponds to the definition of the first DataElement.element." - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the data element" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the data element" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the data element" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the data element" - }, - { - "key": "status", - "value": "", - "description": "The current status of the data element" - }, - { - "key": "stringency", - "value": "", - "description": "The stringency of the data element definition" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the data element" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the data element" - }, - { - "key": "version", - "value": "", - "description": "The business version of the data element" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DataElementHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DataElement/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DataElement", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Detected Issue", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "DetectedIssueHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DetectedIssue/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DetectedIssue", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DetectedIssueHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DetectedIssue/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DetectedIssue", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DetectedIssueById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DetectedIssue/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DetectedIssue", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DetectedIssueById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"DetectedIssue\",\n \"id\": \"ddi\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eSeverity: High\\u003c/b\\u003e - Risk of internal bleeding\\u003c/p\\u003e\\n \\u003cp\\u003eThose who take acetaminophen along with the widely used blood-thinning drug warfarin may face the risk of serious internal bleeding. People on warfarin who take acetaminophen for at least seven days in a row should be closely watched for bleeding.\\u003c/p\\u003e\\n \\u003cul\\u003e\\n \\u003cli\\u003e\\u003ca href\\u003d\\\"MedicationStatement/tylenol\\\"\\u003e500 mg Acetaminophen tablet 1/day, PRN since 2010\\u003c/a\\u003e\\u003c/li\\u003e\\n \\u003cli\\u003e\\u003ca href\\u003d\\\"MedicationRequest/warfarin\\\"\\u003eWarfarin 1 MG TAB prescribed Jan. 5, 2014\\u003c/a\\u003e\\u003c/li\\u003e\\n \\u003c/ul\\u003e\\n \\u003cp\\u003eMitigation: Jan 5, 2014 by Dr. Adam Careful: \\u003c/p\\u003e\\n \\u003cp\\u003eAsked patient to discontinue regular use of Tylenol and to consult with clinician if they need to resume to allow appropriate INR monitoring\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"DRG\",\n \"display\": \"Drug Interaction Alert\"\n }\n ]\n },\n \"severity\": \"high\",\n \"identifiedDateTime\": \"2014-01-05\",\n \"author\": {\n \"reference\": \"Device/software\"\n },\n \"implicated\": [\n {\n \"reference\": \"MedicationStatement/example001\",\n \"display\": \"500 mg Acetaminophen tablet 1/day, PRN since 2010\"\n },\n {\n \"reference\": \"MedicationRequest/medrx0331\",\n \"display\": \"Warfarin 1 MG TAB prescribed Jan. 15, 2015\"\n }\n ],\n \"detail\": \"Risk of internal bleeding. Those who take acetaminophen along with the widely used blood-thinning drug warfarin may face the risk of serious internal bleeding. People on warfarin who take acetaminophen for at least seven days in a row should be closely watched for bleeding.\",\n \"mitigation\": [\n {\n \"action\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"13\",\n \"display\": \"Stopped Concurrent Therapy\"\n }\n ],\n \"text\": \"Asked patient to discontinue regular use of Tylenol and to consult with clinician if they need to resume to allow appropriate INR monitoring\"\n },\n \"date\": \"2014-01-05\",\n \"author\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr. Adam Careful\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DetectedIssue/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DetectedIssue", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DetectedIssueById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DetectedIssue/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DetectedIssue", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DetectedIssue_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"DetectedIssue\",\n \"id\": \"ddi\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eSeverity: High\\u003c/b\\u003e - Risk of internal bleeding\\u003c/p\\u003e\\n \\u003cp\\u003eThose who take acetaminophen along with the widely used blood-thinning drug warfarin may face the risk of serious internal bleeding. People on warfarin who take acetaminophen for at least seven days in a row should be closely watched for bleeding.\\u003c/p\\u003e\\n \\u003cul\\u003e\\n \\u003cli\\u003e\\u003ca href\\u003d\\\"MedicationStatement/tylenol\\\"\\u003e500 mg Acetaminophen tablet 1/day, PRN since 2010\\u003c/a\\u003e\\u003c/li\\u003e\\n \\u003cli\\u003e\\u003ca href\\u003d\\\"MedicationRequest/warfarin\\\"\\u003eWarfarin 1 MG TAB prescribed Jan. 5, 2014\\u003c/a\\u003e\\u003c/li\\u003e\\n \\u003c/ul\\u003e\\n \\u003cp\\u003eMitigation: Jan 5, 2014 by Dr. Adam Careful: \\u003c/p\\u003e\\n \\u003cp\\u003eAsked patient to discontinue regular use of Tylenol and to consult with clinician if they need to resume to allow appropriate INR monitoring\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"DRG\",\n \"display\": \"Drug Interaction Alert\"\n }\n ]\n },\n \"severity\": \"high\",\n \"identifiedDateTime\": \"2014-01-05\",\n \"author\": {\n \"reference\": \"Device/software\"\n },\n \"implicated\": [\n {\n \"reference\": \"MedicationStatement/example001\",\n \"display\": \"500 mg Acetaminophen tablet 1/day, PRN since 2010\"\n },\n {\n \"reference\": \"MedicationRequest/medrx0331\",\n \"display\": \"Warfarin 1 MG TAB prescribed Jan. 15, 2015\"\n }\n ],\n \"detail\": \"Risk of internal bleeding. Those who take acetaminophen along with the widely used blood-thinning drug warfarin may face the risk of serious internal bleeding. People on warfarin who take acetaminophen for at least seven days in a row should be closely watched for bleeding.\",\n \"mitigation\": [\n {\n \"action\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"13\",\n \"display\": \"Stopped Concurrent Therapy\"\n }\n ],\n \"text\": \"Asked patient to discontinue regular use of Tylenol and to consult with clinician if they need to resume to allow appropriate INR monitoring\"\n },\n \"date\": \"2014-01-05\",\n \"author\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr. Adam Careful\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DetectedIssue", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DetectedIssue" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DetectedIssue_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DetectedIssue?patient=&author=&implicated=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&category=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DetectedIssue" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "author", - "value": "", - "description": "The provider or device that identified the issue" - }, - { - "key": "implicated", - "value": "", - "description": "Problem resource" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "category", - "value": "", - "description": "Issue Category, e.g. drug-drug, duplicate therapy, etc." - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DetectedIssueHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DetectedIssue/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DetectedIssue", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Device", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "DeviceHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Device/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Device", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Device/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Device", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DeviceById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Device/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Device", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Device\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 345675\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://goodcare.org/devices/id\",\n \"value\": \"345675\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Device/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Device", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Device/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Device", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Device_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Device\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 345675\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://goodcare.org/devices/id\",\n \"value\": \"345675\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Device", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Device" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Device_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Device?location=&organization=&patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&device-name=&identifier=&manufacturer=&model=&status=&type=&udi-carrier=&udi-di=&url=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Device" - ], - "query": [ - { - "key": "location", - "value": "", - "description": "A location, where the resource is found" - }, - { - "key": "organization", - "value": "", - "description": "The organization responsible for the device" - }, - { - "key": "patient", - "value": "", - "description": "Patient information, if the resource is affixed to a person" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "device-name", - "value": "", - "description": "A server defined search that may match any of the string fields in the Device.udi.name or Device.type.coding.display or Device.type.text" - }, - { - "key": "identifier", - "value": "", - "description": "Instance id from manufacturer, owner, and others" - }, - { - "key": "manufacturer", - "value": "", - "description": "The manufacturer of the device" - }, - { - "key": "model", - "value": "", - "description": "The model of the device" - }, - { - "key": "status", - "value": "", - "description": "active | inactive | entered-in-error | unknown" - }, - { - "key": "type", - "value": "", - "description": "The type of the device" - }, - { - "key": "udi-carrier", - "value": "", - "description": "UDI Barcode (RFID or other technology) string either in HRF format or AIDC format converted to base64 string." - }, - { - "key": "udi-di", - "value": "", - "description": "The udi Device Identifier (DI)" - }, - { - "key": "url", - "value": "", - "description": "Network address to contact device" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Device/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Device", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Device Component", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "DeviceComponentHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceComponent/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceComponent", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceComponentHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceComponent/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceComponent", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DeviceComponentById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceComponent/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceComponent", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceComponentById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"_id\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n },\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"contained\": [\n {\n \"resourceType\": \"\",\n \"id\": \"\",\n \"manufacturer\": \"\",\n \"model\": \"\",\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\",\n \"type\": {\n \"text\": \"\"\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"identifier\": {\n \"type\": {\n \"text\": \"\"\n },\n \"value\": \"\"\n },\n \"lastSystemChange\": \"\",\n \"source\": {\n \"reference\": \"\"\n },\n \"operationalStatus\": [\n {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"languageCode\": {\n \"coding\": [\n {\n \"system\": {\n \"value\": \"\"\n },\n \"code\": {\n \"value\": \"\"\n }\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DeviceComponent/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceComponent", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceComponentById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceComponent/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceComponent", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DeviceComponent_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"_id\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n },\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"contained\": [\n {\n \"resourceType\": \"\",\n \"id\": \"\",\n \"manufacturer\": \"\",\n \"model\": \"\",\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\",\n \"type\": {\n \"text\": \"\"\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"identifier\": {\n \"type\": {\n \"text\": \"\"\n },\n \"value\": \"\"\n },\n \"lastSystemChange\": \"\",\n \"source\": {\n \"reference\": \"\"\n },\n \"operationalStatus\": [\n {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"languageCode\": {\n \"coding\": [\n {\n \"system\": {\n \"value\": \"\"\n },\n \"code\": {\n \"value\": \"\"\n }\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DeviceComponent", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceComponent" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceComponent_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceComponent?parent=&source=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&type=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceComponent" - ], - "query": [ - { - "key": "parent", - "value": "", - "description": "The parent DeviceComponent resource" - }, - { - "key": "source", - "value": "", - "description": "The device source" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "The identifier of the component" - }, - { - "key": "type", - "value": "", - "description": "The device component type" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceComponentHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceComponent/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceComponent", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Device Metric", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "DeviceMetricHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceMetric/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceMetric", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceMetricHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceMetric/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceMetric", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DeviceMetricById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceMetric/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceMetric", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceMetricById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"DeviceMetric\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 345675\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: MDC_PULS_OXIM_SAT_O2 \\u003cspan\\u003e(Details : {urn:iso:std:iso:11073:10101 code \\u0027150456\\u0027 \\u003d \\u0027150456\\u0027, given as \\u0027MDC_PULS_OXIM_SAT_O2\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eunit\\u003c/b\\u003e: MDC_DIM_PERCENT \\u003cspan\\u003e(Details : {urn:iso:std:iso:11073:10101 code \\u0027262688\\u0027 \\u003d \\u0027262688\\u0027, given as \\u0027MDC_DIM_PERCENT\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esource\\u003c/b\\u003e: \\u003ca\\u003eDevice/dev1\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparent\\u003c/b\\u003e: \\u003ca\\u003eDeviceDefinition/dc102\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoperationalStatus\\u003c/b\\u003e: on\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecolor\\u003c/b\\u003e: blue\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: measurement\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emeasurementPeriod\\u003c/b\\u003e: Do Once per 1 seconds\\u003c/p\\u003e\\u003ch3\\u003eCalibrations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eState\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTime\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etwo-point\\u003c/td\\u003e\\u003ctd\\u003ecalibrated\\u003c/td\\u003e\\u003ctd\\u003e28/12/2016 9:03:04 AM\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://goodcare.org/devicemetric/id\",\n \"value\": \"345675\"\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:11073:10101\",\n \"code\": \"150456\",\n \"display\": \"MDC_PULS_OXIM_SAT_O2\"\n }\n ]\n },\n \"unit\": {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:11073:10101\",\n \"code\": \"262688\",\n \"display\": \"MDC_DIM_PERCENT\"\n }\n ]\n },\n \"source\": {\n \"reference\": \"Device/dev1\"\n },\n \"parent\": {\n \"reference\": \"DeviceDefinition/dc102\"\n },\n \"operationalStatus\": \"on\",\n \"color\": \"blue\",\n \"category\": \"measurement\",\n \"measurementPeriod\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"s\"\n }\n },\n \"calibration\": [\n {\n \"type\": \"two-point\",\n \"state\": \"calibrated\",\n \"time\": \"2016-12-28T09:03:04-05:00\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DeviceMetric/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceMetric", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceMetricById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceMetric/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceMetric", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DeviceMetric_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"DeviceMetric\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 345675\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: MDC_PULS_OXIM_SAT_O2 \\u003cspan\\u003e(Details : {urn:iso:std:iso:11073:10101 code \\u0027150456\\u0027 \\u003d \\u0027150456\\u0027, given as \\u0027MDC_PULS_OXIM_SAT_O2\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eunit\\u003c/b\\u003e: MDC_DIM_PERCENT \\u003cspan\\u003e(Details : {urn:iso:std:iso:11073:10101 code \\u0027262688\\u0027 \\u003d \\u0027262688\\u0027, given as \\u0027MDC_DIM_PERCENT\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esource\\u003c/b\\u003e: \\u003ca\\u003eDevice/dev1\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparent\\u003c/b\\u003e: \\u003ca\\u003eDeviceDefinition/dc102\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoperationalStatus\\u003c/b\\u003e: on\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecolor\\u003c/b\\u003e: blue\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: measurement\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emeasurementPeriod\\u003c/b\\u003e: Do Once per 1 seconds\\u003c/p\\u003e\\u003ch3\\u003eCalibrations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eState\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTime\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etwo-point\\u003c/td\\u003e\\u003ctd\\u003ecalibrated\\u003c/td\\u003e\\u003ctd\\u003e28/12/2016 9:03:04 AM\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://goodcare.org/devicemetric/id\",\n \"value\": \"345675\"\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:11073:10101\",\n \"code\": \"150456\",\n \"display\": \"MDC_PULS_OXIM_SAT_O2\"\n }\n ]\n },\n \"unit\": {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:11073:10101\",\n \"code\": \"262688\",\n \"display\": \"MDC_DIM_PERCENT\"\n }\n ]\n },\n \"source\": {\n \"reference\": \"Device/dev1\"\n },\n \"parent\": {\n \"reference\": \"DeviceDefinition/dc102\"\n },\n \"operationalStatus\": \"on\",\n \"color\": \"blue\",\n \"category\": \"measurement\",\n \"measurementPeriod\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"s\"\n }\n },\n \"calibration\": [\n {\n \"type\": \"two-point\",\n \"state\": \"calibrated\",\n \"time\": \"2016-12-28T09:03:04-05:00\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DeviceMetric", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceMetric" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceMetric_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceMetric?parent=&source=&_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&identifier=&type=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceMetric" - ], - "query": [ - { - "key": "parent", - "value": "", - "description": "The parent DeviceMetric resource" - }, - { - "key": "source", - "value": "", - "description": "The device resource" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "category", - "value": "", - "description": "The category of the metric" - }, - { - "key": "identifier", - "value": "", - "description": "The identifier of the metric" - }, - { - "key": "type", - "value": "", - "description": "The component type" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceMetricHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceMetric/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceMetric", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Device Request", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "DeviceRequestHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceRequest/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceRequest", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceRequestHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceRequest/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceRequest", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DeviceRequestById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceRequestById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"DeviceRequest\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eintent\\u003c/b\\u003e: original-order\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: \\u003ca\\u003eDevice/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"intent\": \"original-order\",\n \"codeReference\": {\n \"reference\": \"Device/example\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DeviceRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceRequestById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DeviceRequest_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"DeviceRequest\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eintent\\u003c/b\\u003e: original-order\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: \\u003ca\\u003eDevice/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"intent\": \"original-order\",\n \"codeReference\": {\n \"reference\": \"Device/example\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DeviceRequest", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceRequest" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceRequest_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceRequest?patient=&encounter=&based-on=&definition=&device=&performer=&priorrequest=&requester=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&authored-on=&event-date=&group-identifier=&intent=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceRequest" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "encounter", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" - }, - { - "key": "based-on", - "value": "", - "description": "Plan/proposal/order fulfilled by this request" - }, - { - "key": "definition", - "value": "", - "description": "Protocol or definition followed by this request" - }, - { - "key": "device", - "value": "", - "description": "Reference to resource that is being requested/ordered" - }, - { - "key": "performer", - "value": "", - "description": "Desired performer for service" - }, - { - "key": "priorrequest", - "value": "", - "description": "Request takes the place of referenced completed or terminated requests" - }, - { - "key": "requester", - "value": "", - "description": "Who/what is requesting service" - }, - { - "key": "subject", - "value": "", - "description": "Individual the service is ordered for" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "authored-on", - "value": "", - "description": "When the request transitioned to being actionable" - }, - { - "key": "event-date", - "value": "", - "description": "When service should occur" - }, - { - "key": "group-identifier", - "value": "", - "description": "Composite request this is part of" - }, - { - "key": "intent", - "value": "", - "description": "proposal | plan | original-order |reflex-order" - }, - { - "key": "status", - "value": "", - "description": "entered-in-error | draft | active |suspended | completed" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceRequestHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceRequest/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceRequest", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Device Use Statement", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "DeviceUseStatementHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceUseStatement/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceUseStatement", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceUseStatementHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceUseStatement/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceUseStatement", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DeviceUseStatementById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceUseStatement/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceUseStatement", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceUseStatementById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"DeviceUseStatement\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 51ebb7a9-4e3a-4360-9a05-0cc2d869086f\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edevice\\u003c/b\\u003e: \\u003ca\\u003eDevice/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonReference\\u003c/b\\u003e: \\u003ca\\u003eAppendectomy (surgery)\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http:goodhealth.org/identifiers\",\n \"value\": \"51ebb7a9-4e3a-4360-9a05-0cc2d869086f\"\n }\n ],\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"device\": {\n \"reference\": \"Device/example\"\n },\n \"reasonReference\": [\n {\n \"reference\": \"Procedure/example\",\n \"display\": \"Appendectomy (surgery)\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DeviceUseStatement/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceUseStatement", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceUseStatementById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceUseStatement/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceUseStatement", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DeviceUseStatement_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"DeviceUseStatement\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 51ebb7a9-4e3a-4360-9a05-0cc2d869086f\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edevice\\u003c/b\\u003e: \\u003ca\\u003eDevice/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonReference\\u003c/b\\u003e: \\u003ca\\u003eAppendectomy (surgery)\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http:goodhealth.org/identifiers\",\n \"value\": \"51ebb7a9-4e3a-4360-9a05-0cc2d869086f\"\n }\n ],\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"device\": {\n \"reference\": \"Device/example\"\n },\n \"reasonReference\": [\n {\n \"reference\": \"Procedure/example\",\n \"display\": \"Appendectomy (surgery)\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DeviceUseStatement", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceUseStatement" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceUseStatement_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceUseStatement?patient=&device=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceUseStatement" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "device", - "value": "", - "description": "Search by device" - }, - { - "key": "subject", - "value": "", - "description": "Search by subject" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "Search by identifier" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DeviceUseStatementHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DeviceUseStatement/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DeviceUseStatement", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Diagnostic Report", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "DiagnosticReportHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DiagnosticReport/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DiagnosticReport", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DiagnosticReportHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DiagnosticReport/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DiagnosticReport", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DiagnosticReportById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DiagnosticReport/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DiagnosticReport", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DiagnosticReportById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Bundle\",\n \"id\": \"101\",\n \"type\": \"collection\",\n \"entry\": [\n {\n \"fullUrl\": \"https://example.com/base/DiagnosticReport/101\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"id\": \"101\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/workflow-codes\",\n \"code\": \"01\",\n \"display\": \"Needs Review\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ch3\\u003eCBC Report for Wile. E. COYOTE (MRN: 23453) issued 3-Mar 2011 11:45\\u003c/h3\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cpre\\u003e\\nTest Units Value Reference Range\\nHaemoglobin g/L 176 135 - 180\\nRed Cell Count x10*12/L 5.9 4.2 - 6.0\\nHaematocrit 0.55+ 0.38 - 0.52\\nMean Cell Volume fL 99+ 80 - 98\\nMean Cell Haemoglobin pg 36+ 27 - 35\\nPlatelet Count x10*9/L 444 150 - 450\\nWhite Cell Count x10*9/L 4.6 4.0 - 11.0\\nNeutrophils % 20\\nNeutrophils x10*9/L 0.9--- 2.0 - 7.5\\nLymphocytes % 20\\nLymphocytes x10*9/L 0.9- 1.1 - 4.0\\nMonocytes % 20\\nMonocytes x10*9/L 0.9 0.2 - 1.0\\nEosinophils % 20\\nEosinophils x10*9/L 0.92++ 0.04 - 0.40\\nBasophils % 20\\nBasophils x10*9/L 0.92+++ \\u0026lt;0.21\\n \\u003c/pre\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cp\\u003eAcme Laboratory, Inc signed: Dr Pete Pathologist\\u003c/p\\u003e\\n\\t\\t\\t\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://acme.com/lab/reports\",\n \"value\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"HM\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"58410-2\",\n \"display\": \"Complete blood count (hemogram) panel - Blood by Automated count\"\n },\n {\n \"code\": \"CBC\",\n \"display\": \"MASTER FULL BLOOD COUNT\"\n }\n ],\n \"text\": \"Complete Blood Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"effectiveDateTime\": \"2011-03-04T08:30:00+11:00\",\n \"issued\": \"2011-03-04T11:45:33+11:00\",\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/r1\"\n },\n {\n \"reference\": \"Observation/r2\"\n },\n {\n \"reference\": \"Observation/r3\"\n },\n {\n \"reference\": \"Observation/r4\"\n },\n {\n \"reference\": \"Observation/r5\"\n },\n {\n \"reference\": \"Observation/r6\"\n },\n {\n \"reference\": \"Observation/r7\"\n },\n {\n \"reference\": \"Observation/r8\"\n },\n {\n \"reference\": \"Observation/r9\"\n },\n {\n \"reference\": \"Observation/r10\"\n },\n {\n \"reference\": \"Observation/r11\"\n },\n {\n \"reference\": \"Observation/r12\"\n },\n {\n \"reference\": \"Observation/r13\"\n },\n {\n \"reference\": \"Observation/r14\"\n },\n {\n \"reference\": \"Observation/r15\"\n },\n {\n \"reference\": \"Observation/r16\"\n },\n {\n \"reference\": \"Observation/r17\"\n }\n ],\n \"presentedForm\": [\n {\n \"contentType\": \"application/pdf\",\n \"language\": \"en-AU\",\n \"data\": \"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PSdodHRwOi8vbnMuYWRvYmUuY29tL3BkZi8xLjMvJz48cGRmOlByb2R1Y2VyPkdQTCBHaG9zdHNjcmlwdCA5LjA0PC9wZGY6UHJvZHVjZXI+CjxwZGY6S2V5d29yZHM+KCk8L3BkZjpLZXl3b3Jkcz4KPC9yZGY6RGVzY3JpcHRpb24+CjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSdlOTA4ODRhMy0zYzlhLTExZTEtMDAwMC02NDI2MDMzYWE1MCYjODsnIHhtbG5zOnhtcD0naHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyc+PHhtcDpNb2RpZnlEYXRlPjIwMTItMDEtMDlUMDg6MjU6NTQrMTE6MDA8L3htcDpNb2RpZnlEYXRlPgo8eG1wOkNyZWF0ZURhdGU+MjAxMi0wMS0wOVQwODoyNTo1NCsxMTowMDwveG1wOkNyZWF0ZURhdGU+Cjx4bXA6Q3JlYXRvclRvb2w+UERGQ3JlYXRvciBWZXJzaW9uIDEuMi4zPC94bXA6Q3JlYXRvclRvb2w+PC9yZGY6RGVzY3JpcHRpb24+CjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSdlOTA4ODRhMy0zYzlhLTExZTEtMDAwMC02NDI2MDMzYWE1MCYjODsnIHhtbG5zOnhhcE1NPSdodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vJyB4YXBNTTpEb2N1bWVudElEPSd1dWlkOmU5MDg4NGEzLTNjOWEtMTFlMS0wMDAwLTY0MjYwMzNhYTUwJiMxMzg7pyYjMTU3O+7SYyYjMzE7JiMxNjsnLz4KPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9J2U5MDg4NGEzLTNjOWEtMTFlMS0wMDAwLTY0MjYwMzNhYTUwJiM4OycgeG1sbnM6ZGM9J2h0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvJyBkYzpmb3JtYXQ9J2FwcGxpY2F0aW9uL3BkZic+PGRjOnRpdGxlPjxyZGY6QWx0PjxyZGY6bGkgeG1sOmxhbmc9J3gtZGVmYXVsdCc+Q0JDIFJlcG9ydCBmb3IgV2lsZS4gRS4gQ09ZT1RFIChNUk46IDIzNDUzKSBpc3N1ZWQgMy1NYXIgMjAxMSAxMTo0NTwvcmRmOmxpPjwvcmRmOkFsdD48L2RjOnRpdGxlPjxkYzpjcmVhdG9yPjxyZGY6U2VxPjxyZGY6bGk+R3JhaGFtZTwvcmRmOmxpPjwvcmRmOlNlcT48L2RjOmNyZWF0b3I+PGRjOmRlc2NyaXB0aW9uPjxyZGY6U2VxPjxyZGY6bGk+KCk8L3JkZjpsaT48L3JkZjpTZXE+PC9kYzpkZXNjcmlwdGlvbj48L3JkZjpEZXNjcmlwdGlvbj4KPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSd3Jz8+CmVuZHN0cmVhbQplbmRvYmoKMiAwIG9iago8PC9Qcm9kdWNlcihHUEwgR2hvc3RzY3JpcHQgOS4wNCkKL0NyZWF0aW9uRGF0ZShEOjIwMTIwMTA5MDgyNTU0KzExJzAwJykKL01vZERhdGUoRDoyMDEyMDEwOTA4MjU1NCsxMScwMCcpCi9UaXRsZShcMzc2XDM3N1wwMDBDXDAwMEJcMDAwQ1wwMDAgXDAwMFJcMDAwZVwwMDBwXDAwMG9cMDAwclwwMDB0XDAwMCBcMDAwZlwwMDBvXDAwMHJcMDAwIFwwMDBXXDAwMGlcMDAwbFwwMDBlXDAwMC5cMDAwIFwwMDBFXDAwMC5cMDAwIFwwMDBDXDAwME9cMDAwWVwwMDBPXDAwMFRcMDAwRVwwMDAgXDAwMFwoXDAwME1cMDAwUlwwMDBOXDAwMDpcMDAwIFwwMDAyXDAwMDNcMDAwNFwwMDA1XDAwMDNcMDAwXClcMDAwIFwwMDBpXDAwMHNcMDAwc1wwMDB1XDAwMGVcMDAwZFwwMDAgXDAwMDNcMDAwLVwwMDBNXDAwMGFcMDAwclwwMDAgXDAwMDJcMDAwMFwwMDAxXDAwMDFcMDAwIFwwMDAxXDAwMDFcMDAwOlwwMDA0XDAwMDUpCi9DcmVhdG9yKFwzNzZcMzc3XDAwMFBcMDAwRFwwMDBGXDAwMENcMDAwclwwMDBlXDAwMGFcMDAwdFwwMDBvXDAwMHJcMDAwIFwwMDBWXDAwMGVcMDAwclwwMDBzXDAwMGlcMDAwb1wwMDBuXDAwMCBcMDAwMVwwMDAuXDAwMDJcMDAwLlwwMDAzKQovQXV0aG9yKFwzNzZcMzc3XDAwMEdcMDAwclwwMDBhXDAwMGhcMDAwYVwwMDBtXDAwMGUpCi9LZXl3b3JkcygpCi9TdWJqZWN0KCk+PmVuZG9iagp4cmVmCjAgMjEKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAyMTM3IDAwMDAwIG4gCjAwMDAwNjg3OTMgMDAwMDAgbiAKMDAwMDAwMjA3OCAwMDAwMCBuIAowMDAwMDAxOTM2IDAwMDAwIG4gCjAwMDAwMDAwMTUgMDAwMDAgbiAKMDAwMDAwMTkxNiAwMDAwMCBuIAowMDAwMDAyNjU2IDAwMDAwIG4gCjAwMDAwMDQ2ODEgMDAwMDAgbiAKMDAwMDAwMzQ3OSAwMDAwMCBuIAowMDAwMDIxNTc3IDAwMDAwIG4gCjAwMDAwMDQzMjkgMDAwMDAgbiAKMDAwMDA0MTMwNyAwMDAwMCBuIAowMDAwMDAyMjAyIDAwMDAwIG4gCjAwMDAwMDQ5MDUgMDAwMDAgbiAKMDAwMDAyMTc5MyAwMDAwMCBuIAowMDAwMDQxNTI5IDAwMDAwIG4gCjAwMDAwMDIyNTIgMDAwMDAgbiAKMDAwMDAwMjk0OCAwMDAwMCBuIAowMDAwMDAzODMxIDAwMDAwIG4gCjAwMDAwNjcwODggMDAwMDAgbiAKdHJhaWxlcgo8PCAvU2l6ZSAyMSAvUm9vdCAxIDAgUiAvSW5mbyAyIDAgUgovSUQgWzw4RDdGNzc5QTAwQzcwOTc5NTg3MDQyRjA5MkJBQjhDNj48OEQ3Rjc3OUEwMEM3MDk3OTU4NzA0MkYwOTJCQUI4QzY+XQo+PgpzdGFydHhyZWYKNjk0ODUKJSVFT0YK\",\n \"title\": \"HTML Report\"\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r1\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Haemoglobin \\u003cspan\\u003e(Details : {LOINC code \\u0027718-7\\u0027 \\u003d \\u0027Hemoglobin [Mass/volume] in Blood\\u0027, given as \\u0027Hemoglobin [Mass/volume] in Blood\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 176 g/L\\u003cspan\\u003e (Details: UCUM code g/L \\u003d \\u0027g/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e135 g/L\\u003cspan\\u003e (Details: UCUM code g/L \\u003d \\u0027g/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e180 g/L\\u003cspan\\u003e (Details: UCUM code g/L \\u003d \\u0027g/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"718-7\",\n \"display\": \"Hemoglobin [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Haemoglobin\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 176,\n \"unit\": \"g/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 135,\n \"unit\": \"g/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/L\"\n },\n \"high\": {\n \"value\": 180,\n \"unit\": \"g/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r2\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r2\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r2\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Red Cell Count \\u003cspan\\u003e(Details : {LOINC code \\u0027789-8\\u0027 \\u003d \\u0027Erythrocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Erythrocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 5.9 x10*12/L\\u003cspan\\u003e (Details: UCUM code 10*12/L \\u003d \\u002710*12/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e4.2 x10*12/L\\u003cspan\\u003e (Details: UCUM code 10*12/L \\u003d \\u002710*12/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e6.0 x10*12/L\\u003cspan\\u003e (Details: UCUM code 10*12/L \\u003d \\u002710*12/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"789-8\",\n \"display\": \"Erythrocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Red Cell Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5.9,\n \"unit\": \"x10*12/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*12/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 4.2,\n \"unit\": \"x10*12/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*12/L\"\n },\n \"high\": {\n \"value\": 6.0,\n \"unit\": \"x10*12/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*12/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r3\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r3\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r3\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Haematocrit \\u003cspan\\u003e(Details : {LOINC code \\u00274544-3\\u0027 \\u003d \\u0027Hematocrit [Volume Fraction] of Blood by Automated count\\u0027, given as \\u0027Hematocrit [Volume Fraction] of Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 55 %\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: High \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027H\\u0027 \\u003d \\u0027High)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e38 %\\u003c/td\\u003e\\u003ctd\\u003e52 %\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4544-3\",\n \"display\": \"Hematocrit [Volume Fraction] of Blood by Automated count\"\n }\n ],\n \"text\": \"Haematocrit\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 55,\n \"unit\": \"%\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 38,\n \"unit\": \"%\"\n },\n \"high\": {\n \"value\": 52,\n \"unit\": \"%\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r4\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r4\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r4\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Mean Cell Volume \\u003cspan\\u003e(Details : {LOINC code \\u0027787-2\\u0027 \\u003d \\u0027Erythrocyte mean corpuscular volume [Entitic volume] by Automated count\\u0027, given as \\u0027Erythrocyte mean corpuscular volume [Entitic volume] by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 99 fL\\u003cspan\\u003e (Details: UCUM code fL \\u003d \\u0027fL\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: High \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027H\\u0027 \\u003d \\u0027High)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e80 fL\\u003cspan\\u003e (Details: UCUM code fL \\u003d \\u0027fL\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e98 fL\\u003cspan\\u003e (Details: UCUM code fL \\u003d \\u0027fL\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"787-2\",\n \"display\": \"Erythrocyte mean corpuscular volume [Entitic volume] by Automated count\"\n }\n ],\n \"text\": \"Mean Cell Volume\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 99,\n \"unit\": \"fL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"fL\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 80,\n \"unit\": \"fL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"fL\"\n },\n \"high\": {\n \"value\": 98,\n \"unit\": \"fL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"fL\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r5\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r5\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Mean Cell Haemoglobin \\u003cspan\\u003e(Details : {LOINC code \\u0027785-6\\u0027 \\u003d \\u0027Erythrocyte mean corpuscular hemoglobin [Entitic mass] by Automated count\\u0027, given as \\u0027Erythrocyte mean corpuscular hemoglobin [Entitic mass] by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 36 pg\\u003cspan\\u003e (Details: UCUM code pg \\u003d \\u0027pg\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: High \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027H\\u0027 \\u003d \\u0027High)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e27 pg\\u003cspan\\u003e (Details: UCUM code pg \\u003d \\u0027pg\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e35 pg\\u003cspan\\u003e (Details: UCUM code pg \\u003d \\u0027pg\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"785-6\",\n \"display\": \"Erythrocyte mean corpuscular hemoglobin [Entitic mass] by Automated count\"\n }\n ],\n \"text\": \"Mean Cell Haemoglobin\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 36,\n \"unit\": \"pg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"pg\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 27,\n \"unit\": \"pg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"pg\"\n },\n \"high\": {\n \"value\": 35,\n \"unit\": \"pg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"pg\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r6\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r6\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r6\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Platelet Count \\u003cspan\\u003e(Details : {LOINC code \\u0027777-3\\u0027 \\u003d \\u0027Platelets [#/volume] in Blood by Automated count\\u0027, given as \\u0027Platelets [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 444 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e150 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e450 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"777-3\",\n \"display\": \"Platelets [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Platelet Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 444,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 150,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 450,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r7\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r7\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r7\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: White Cell Count \\u003cspan\\u003e(Details : {LOINC code \\u00276690-2\\u0027 \\u003d \\u0027Leukocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Leukocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 4.6 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e4.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e11.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"6690-2\",\n \"display\": \"Leukocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"White Cell Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 4.6,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 4.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 11.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r8\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r8\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Neutrophils \\u003cspan\\u003e(Details : {LOINC code \\u0027770-8\\u0027 \\u003d \\u0027Neutrophils/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Neutrophils/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"770-8\",\n \"display\": \"Neutrophils/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Neutrophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r9\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r9\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r9\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Neutrophils \\u003cspan\\u003e(Details : {LOINC code \\u0027751-8\\u0027 \\u003d \\u0027Neutrophils [#/volume] in Blood by Automated count\\u0027, given as \\u0027Neutrophils [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.9 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: Critical low \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027LL\\u0027 \\u003d \\u0027Critical low)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e2.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e7.5 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"751-8\",\n \"display\": \"Neutrophils [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Neutrophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.9,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"LL\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 2.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 7.5,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r10\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r10\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r10\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Lymphocytes \\u003cspan\\u003e(Details : {LOINC code \\u0027736-9\\u0027 \\u003d \\u0027Lymphocytes/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Lymphocytes/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"736-9\",\n \"display\": \"Lymphocytes/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Lymphocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r11\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r11\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r11\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Lymphocytes \\u003cspan\\u003e(Details : {LOINC code \\u0027731-0\\u0027 \\u003d \\u0027Lymphocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Lymphocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.9 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: Low \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027L\\u0027 \\u003d \\u0027Low)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e1.1 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e4.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"731-0\",\n \"display\": \"Lymphocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Lymphocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.9,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"L\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 1.1,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 4.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r12\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r12\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r12\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Monocytes \\u003cspan\\u003e(Details : {LOINC code \\u00275905-5\\u0027 \\u003d \\u0027Monocytes/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Monocytes/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"5905-5\",\n \"display\": \"Monocytes/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Monocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r13\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r13\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r13\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Monocytes \\u003cspan\\u003e(Details : {LOINC code \\u0027742-7\\u0027 \\u003d \\u0027Monocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Monocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.9 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e0.2 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e1.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"742-7\",\n \"display\": \"Monocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Monocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.9,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 0.2,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 1.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r14\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r14\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r14\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Eosinophils \\u003cspan\\u003e(Details : {LOINC code \\u0027713-8\\u0027 \\u003d \\u0027Eosinophils/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Eosinophils/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"713-8\",\n \"display\": \"Eosinophils/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Eosinophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r15\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r15\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r15\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Eosinophils \\u003cspan\\u003e(Details : {LOINC code \\u0027711-2\\u0027 \\u003d \\u0027Eosinophils [#/volume] in Blood by Automated count\\u0027, given as \\u0027Eosinophils [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.92 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: Critical high \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027HH\\u0027 \\u003d \\u0027Critical high)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e0.04 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e0.40 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"711-2\",\n \"display\": \"Eosinophils [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Eosinophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.92,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"HH\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 0.04,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 0.40,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r16\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r16\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r16\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Basophils \\u003cspan\\u003e(Details : {LOINC code \\u0027706-2\\u0027 \\u003d \\u0027Basophils/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Basophils/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"706-2\",\n \"display\": \"Basophils/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Basophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r17\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r17\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r17\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Basophils \\u003cspan\\u003e(Details : {LOINC code \\u0027704-7\\u0027 \\u003d \\u0027Basophils [#/volume] in Blood by Automated count\\u0027, given as \\u0027Basophils [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.92 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e0.21 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"704-7\",\n \"display\": \"Basophils [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Basophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.92,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"high\": {\n \"value\": 0.21,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DiagnosticReport/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DiagnosticReport", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DiagnosticReportById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DiagnosticReport/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DiagnosticReport", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DiagnosticReport_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Bundle\",\n \"id\": \"101\",\n \"type\": \"collection\",\n \"entry\": [\n {\n \"fullUrl\": \"https://example.com/base/DiagnosticReport/101\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"id\": \"101\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/workflow-codes\",\n \"code\": \"01\",\n \"display\": \"Needs Review\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ch3\\u003eCBC Report for Wile. E. COYOTE (MRN: 23453) issued 3-Mar 2011 11:45\\u003c/h3\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cpre\\u003e\\nTest Units Value Reference Range\\nHaemoglobin g/L 176 135 - 180\\nRed Cell Count x10*12/L 5.9 4.2 - 6.0\\nHaematocrit 0.55+ 0.38 - 0.52\\nMean Cell Volume fL 99+ 80 - 98\\nMean Cell Haemoglobin pg 36+ 27 - 35\\nPlatelet Count x10*9/L 444 150 - 450\\nWhite Cell Count x10*9/L 4.6 4.0 - 11.0\\nNeutrophils % 20\\nNeutrophils x10*9/L 0.9--- 2.0 - 7.5\\nLymphocytes % 20\\nLymphocytes x10*9/L 0.9- 1.1 - 4.0\\nMonocytes % 20\\nMonocytes x10*9/L 0.9 0.2 - 1.0\\nEosinophils % 20\\nEosinophils x10*9/L 0.92++ 0.04 - 0.40\\nBasophils % 20\\nBasophils x10*9/L 0.92+++ \\u0026lt;0.21\\n \\u003c/pre\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cp\\u003eAcme Laboratory, Inc signed: Dr Pete Pathologist\\u003c/p\\u003e\\n\\t\\t\\t\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://acme.com/lab/reports\",\n \"value\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"HM\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"58410-2\",\n \"display\": \"Complete blood count (hemogram) panel - Blood by Automated count\"\n },\n {\n \"code\": \"CBC\",\n \"display\": \"MASTER FULL BLOOD COUNT\"\n }\n ],\n \"text\": \"Complete Blood Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"effectiveDateTime\": \"2011-03-04T08:30:00+11:00\",\n \"issued\": \"2011-03-04T11:45:33+11:00\",\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/r1\"\n },\n {\n \"reference\": \"Observation/r2\"\n },\n {\n \"reference\": \"Observation/r3\"\n },\n {\n \"reference\": \"Observation/r4\"\n },\n {\n \"reference\": \"Observation/r5\"\n },\n {\n \"reference\": \"Observation/r6\"\n },\n {\n \"reference\": \"Observation/r7\"\n },\n {\n \"reference\": \"Observation/r8\"\n },\n {\n \"reference\": \"Observation/r9\"\n },\n {\n \"reference\": \"Observation/r10\"\n },\n {\n \"reference\": \"Observation/r11\"\n },\n {\n \"reference\": \"Observation/r12\"\n },\n {\n \"reference\": \"Observation/r13\"\n },\n {\n \"reference\": \"Observation/r14\"\n },\n {\n \"reference\": \"Observation/r15\"\n },\n {\n \"reference\": \"Observation/r16\"\n },\n {\n \"reference\": \"Observation/r17\"\n }\n ],\n \"presentedForm\": [\n {\n \"contentType\": \"application/pdf\",\n \"language\": \"en-AU\",\n \"data\": \"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PSdodHRwOi8vbnMuYWRvYmUuY29tL3BkZi8xLjMvJz48cGRmOlByb2R1Y2VyPkdQTCBHaG9zdHNjcmlwdCA5LjA0PC9wZGY6UHJvZHVjZXI+CjxwZGY6S2V5d29yZHM+KCk8L3BkZjpLZXl3b3Jkcz4KPC9yZGY6RGVzY3JpcHRpb24+CjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSdlOTA4ODRhMy0zYzlhLTExZTEtMDAwMC02NDI2MDMzYWE1MCYjODsnIHhtbG5zOnhtcD0naHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyc+PHhtcDpNb2RpZnlEYXRlPjIwMTItMDEtMDlUMDg6MjU6NTQrMTE6MDA8L3htcDpNb2RpZnlEYXRlPgo8eG1wOkNyZWF0ZURhdGU+MjAxMi0wMS0wOVQwODoyNTo1NCsxMTowMDwveG1wOkNyZWF0ZURhdGU+Cjx4bXA6Q3JlYXRvclRvb2w+UERGQ3JlYXRvciBWZXJzaW9uIDEuMi4zPC94bXA6Q3JlYXRvclRvb2w+PC9yZGY6RGVzY3JpcHRpb24+CjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSdlOTA4ODRhMy0zYzlhLTExZTEtMDAwMC02NDI2MDMzYWE1MCYjODsnIHhtbG5zOnhhcE1NPSdodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vJyB4YXBNTTpEb2N1bWVudElEPSd1dWlkOmU5MDg4NGEzLTNjOWEtMTFlMS0wMDAwLTY0MjYwMzNhYTUwJiMxMzg7pyYjMTU3O+7SYyYjMzE7JiMxNjsnLz4KPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9J2U5MDg4NGEzLTNjOWEtMTFlMS0wMDAwLTY0MjYwMzNhYTUwJiM4OycgeG1sbnM6ZGM9J2h0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvJyBkYzpmb3JtYXQ9J2FwcGxpY2F0aW9uL3BkZic+PGRjOnRpdGxlPjxyZGY6QWx0PjxyZGY6bGkgeG1sOmxhbmc9J3gtZGVmYXVsdCc+Q0JDIFJlcG9ydCBmb3IgV2lsZS4gRS4gQ09ZT1RFIChNUk46IDIzNDUzKSBpc3N1ZWQgMy1NYXIgMjAxMSAxMTo0NTwvcmRmOmxpPjwvcmRmOkFsdD48L2RjOnRpdGxlPjxkYzpjcmVhdG9yPjxyZGY6U2VxPjxyZGY6bGk+R3JhaGFtZTwvcmRmOmxpPjwvcmRmOlNlcT48L2RjOmNyZWF0b3I+PGRjOmRlc2NyaXB0aW9uPjxyZGY6U2VxPjxyZGY6bGk+KCk8L3JkZjpsaT48L3JkZjpTZXE+PC9kYzpkZXNjcmlwdGlvbj48L3JkZjpEZXNjcmlwdGlvbj4KPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSd3Jz8+CmVuZHN0cmVhbQplbmRvYmoKMiAwIG9iago8PC9Qcm9kdWNlcihHUEwgR2hvc3RzY3JpcHQgOS4wNCkKL0NyZWF0aW9uRGF0ZShEOjIwMTIwMTA5MDgyNTU0KzExJzAwJykKL01vZERhdGUoRDoyMDEyMDEwOTA4MjU1NCsxMScwMCcpCi9UaXRsZShcMzc2XDM3N1wwMDBDXDAwMEJcMDAwQ1wwMDAgXDAwMFJcMDAwZVwwMDBwXDAwMG9cMDAwclwwMDB0XDAwMCBcMDAwZlwwMDBvXDAwMHJcMDAwIFwwMDBXXDAwMGlcMDAwbFwwMDBlXDAwMC5cMDAwIFwwMDBFXDAwMC5cMDAwIFwwMDBDXDAwME9cMDAwWVwwMDBPXDAwMFRcMDAwRVwwMDAgXDAwMFwoXDAwME1cMDAwUlwwMDBOXDAwMDpcMDAwIFwwMDAyXDAwMDNcMDAwNFwwMDA1XDAwMDNcMDAwXClcMDAwIFwwMDBpXDAwMHNcMDAwc1wwMDB1XDAwMGVcMDAwZFwwMDAgXDAwMDNcMDAwLVwwMDBNXDAwMGFcMDAwclwwMDAgXDAwMDJcMDAwMFwwMDAxXDAwMDFcMDAwIFwwMDAxXDAwMDFcMDAwOlwwMDA0XDAwMDUpCi9DcmVhdG9yKFwzNzZcMzc3XDAwMFBcMDAwRFwwMDBGXDAwMENcMDAwclwwMDBlXDAwMGFcMDAwdFwwMDBvXDAwMHJcMDAwIFwwMDBWXDAwMGVcMDAwclwwMDBzXDAwMGlcMDAwb1wwMDBuXDAwMCBcMDAwMVwwMDAuXDAwMDJcMDAwLlwwMDAzKQovQXV0aG9yKFwzNzZcMzc3XDAwMEdcMDAwclwwMDBhXDAwMGhcMDAwYVwwMDBtXDAwMGUpCi9LZXl3b3JkcygpCi9TdWJqZWN0KCk+PmVuZG9iagp4cmVmCjAgMjEKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAyMTM3IDAwMDAwIG4gCjAwMDAwNjg3OTMgMDAwMDAgbiAKMDAwMDAwMjA3OCAwMDAwMCBuIAowMDAwMDAxOTM2IDAwMDAwIG4gCjAwMDAwMDAwMTUgMDAwMDAgbiAKMDAwMDAwMTkxNiAwMDAwMCBuIAowMDAwMDAyNjU2IDAwMDAwIG4gCjAwMDAwMDQ2ODEgMDAwMDAgbiAKMDAwMDAwMzQ3OSAwMDAwMCBuIAowMDAwMDIxNTc3IDAwMDAwIG4gCjAwMDAwMDQzMjkgMDAwMDAgbiAKMDAwMDA0MTMwNyAwMDAwMCBuIAowMDAwMDAyMjAyIDAwMDAwIG4gCjAwMDAwMDQ5MDUgMDAwMDAgbiAKMDAwMDAyMTc5MyAwMDAwMCBuIAowMDAwMDQxNTI5IDAwMDAwIG4gCjAwMDAwMDIyNTIgMDAwMDAgbiAKMDAwMDAwMjk0OCAwMDAwMCBuIAowMDAwMDAzODMxIDAwMDAwIG4gCjAwMDAwNjcwODggMDAwMDAgbiAKdHJhaWxlcgo8PCAvU2l6ZSAyMSAvUm9vdCAxIDAgUiAvSW5mbyAyIDAgUgovSUQgWzw4RDdGNzc5QTAwQzcwOTc5NTg3MDQyRjA5MkJBQjhDNj48OEQ3Rjc3OUEwMEM3MDk3OTU4NzA0MkYwOTJCQUI4QzY+XQo+PgpzdGFydHhyZWYKNjk0ODUKJSVFT0YK\",\n \"title\": \"HTML Report\"\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r1\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Haemoglobin \\u003cspan\\u003e(Details : {LOINC code \\u0027718-7\\u0027 \\u003d \\u0027Hemoglobin [Mass/volume] in Blood\\u0027, given as \\u0027Hemoglobin [Mass/volume] in Blood\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 176 g/L\\u003cspan\\u003e (Details: UCUM code g/L \\u003d \\u0027g/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e135 g/L\\u003cspan\\u003e (Details: UCUM code g/L \\u003d \\u0027g/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e180 g/L\\u003cspan\\u003e (Details: UCUM code g/L \\u003d \\u0027g/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"718-7\",\n \"display\": \"Hemoglobin [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Haemoglobin\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 176,\n \"unit\": \"g/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 135,\n \"unit\": \"g/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/L\"\n },\n \"high\": {\n \"value\": 180,\n \"unit\": \"g/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r2\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r2\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r2\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Red Cell Count \\u003cspan\\u003e(Details : {LOINC code \\u0027789-8\\u0027 \\u003d \\u0027Erythrocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Erythrocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 5.9 x10*12/L\\u003cspan\\u003e (Details: UCUM code 10*12/L \\u003d \\u002710*12/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e4.2 x10*12/L\\u003cspan\\u003e (Details: UCUM code 10*12/L \\u003d \\u002710*12/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e6.0 x10*12/L\\u003cspan\\u003e (Details: UCUM code 10*12/L \\u003d \\u002710*12/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"789-8\",\n \"display\": \"Erythrocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Red Cell Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5.9,\n \"unit\": \"x10*12/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*12/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 4.2,\n \"unit\": \"x10*12/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*12/L\"\n },\n \"high\": {\n \"value\": 6.0,\n \"unit\": \"x10*12/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*12/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r3\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r3\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r3\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Haematocrit \\u003cspan\\u003e(Details : {LOINC code \\u00274544-3\\u0027 \\u003d \\u0027Hematocrit [Volume Fraction] of Blood by Automated count\\u0027, given as \\u0027Hematocrit [Volume Fraction] of Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 55 %\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: High \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027H\\u0027 \\u003d \\u0027High)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e38 %\\u003c/td\\u003e\\u003ctd\\u003e52 %\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4544-3\",\n \"display\": \"Hematocrit [Volume Fraction] of Blood by Automated count\"\n }\n ],\n \"text\": \"Haematocrit\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 55,\n \"unit\": \"%\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 38,\n \"unit\": \"%\"\n },\n \"high\": {\n \"value\": 52,\n \"unit\": \"%\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r4\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r4\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r4\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Mean Cell Volume \\u003cspan\\u003e(Details : {LOINC code \\u0027787-2\\u0027 \\u003d \\u0027Erythrocyte mean corpuscular volume [Entitic volume] by Automated count\\u0027, given as \\u0027Erythrocyte mean corpuscular volume [Entitic volume] by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 99 fL\\u003cspan\\u003e (Details: UCUM code fL \\u003d \\u0027fL\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: High \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027H\\u0027 \\u003d \\u0027High)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e80 fL\\u003cspan\\u003e (Details: UCUM code fL \\u003d \\u0027fL\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e98 fL\\u003cspan\\u003e (Details: UCUM code fL \\u003d \\u0027fL\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"787-2\",\n \"display\": \"Erythrocyte mean corpuscular volume [Entitic volume] by Automated count\"\n }\n ],\n \"text\": \"Mean Cell Volume\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 99,\n \"unit\": \"fL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"fL\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 80,\n \"unit\": \"fL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"fL\"\n },\n \"high\": {\n \"value\": 98,\n \"unit\": \"fL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"fL\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r5\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r5\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Mean Cell Haemoglobin \\u003cspan\\u003e(Details : {LOINC code \\u0027785-6\\u0027 \\u003d \\u0027Erythrocyte mean corpuscular hemoglobin [Entitic mass] by Automated count\\u0027, given as \\u0027Erythrocyte mean corpuscular hemoglobin [Entitic mass] by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 36 pg\\u003cspan\\u003e (Details: UCUM code pg \\u003d \\u0027pg\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: High \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027H\\u0027 \\u003d \\u0027High)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e27 pg\\u003cspan\\u003e (Details: UCUM code pg \\u003d \\u0027pg\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e35 pg\\u003cspan\\u003e (Details: UCUM code pg \\u003d \\u0027pg\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"785-6\",\n \"display\": \"Erythrocyte mean corpuscular hemoglobin [Entitic mass] by Automated count\"\n }\n ],\n \"text\": \"Mean Cell Haemoglobin\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 36,\n \"unit\": \"pg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"pg\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 27,\n \"unit\": \"pg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"pg\"\n },\n \"high\": {\n \"value\": 35,\n \"unit\": \"pg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"pg\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r6\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r6\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r6\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Platelet Count \\u003cspan\\u003e(Details : {LOINC code \\u0027777-3\\u0027 \\u003d \\u0027Platelets [#/volume] in Blood by Automated count\\u0027, given as \\u0027Platelets [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 444 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e150 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e450 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"777-3\",\n \"display\": \"Platelets [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Platelet Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 444,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 150,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 450,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r7\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r7\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r7\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: White Cell Count \\u003cspan\\u003e(Details : {LOINC code \\u00276690-2\\u0027 \\u003d \\u0027Leukocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Leukocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 4.6 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e4.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e11.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"6690-2\",\n \"display\": \"Leukocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"White Cell Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 4.6,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 4.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 11.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r8\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r8\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Neutrophils \\u003cspan\\u003e(Details : {LOINC code \\u0027770-8\\u0027 \\u003d \\u0027Neutrophils/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Neutrophils/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"770-8\",\n \"display\": \"Neutrophils/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Neutrophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r9\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r9\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r9\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Neutrophils \\u003cspan\\u003e(Details : {LOINC code \\u0027751-8\\u0027 \\u003d \\u0027Neutrophils [#/volume] in Blood by Automated count\\u0027, given as \\u0027Neutrophils [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.9 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: Critical low \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027LL\\u0027 \\u003d \\u0027Critical low)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e2.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e7.5 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"751-8\",\n \"display\": \"Neutrophils [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Neutrophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.9,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"LL\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 2.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 7.5,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r10\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r10\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r10\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Lymphocytes \\u003cspan\\u003e(Details : {LOINC code \\u0027736-9\\u0027 \\u003d \\u0027Lymphocytes/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Lymphocytes/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"736-9\",\n \"display\": \"Lymphocytes/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Lymphocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r11\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r11\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r11\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Lymphocytes \\u003cspan\\u003e(Details : {LOINC code \\u0027731-0\\u0027 \\u003d \\u0027Lymphocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Lymphocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.9 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: Low \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027L\\u0027 \\u003d \\u0027Low)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e1.1 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e4.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"731-0\",\n \"display\": \"Lymphocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Lymphocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.9,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"L\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 1.1,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 4.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r12\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r12\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r12\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Monocytes \\u003cspan\\u003e(Details : {LOINC code \\u00275905-5\\u0027 \\u003d \\u0027Monocytes/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Monocytes/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"5905-5\",\n \"display\": \"Monocytes/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Monocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r13\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r13\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r13\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Monocytes \\u003cspan\\u003e(Details : {LOINC code \\u0027742-7\\u0027 \\u003d \\u0027Monocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Monocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.9 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e0.2 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e1.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"742-7\",\n \"display\": \"Monocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Monocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.9,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 0.2,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 1.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r14\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r14\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r14\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Eosinophils \\u003cspan\\u003e(Details : {LOINC code \\u0027713-8\\u0027 \\u003d \\u0027Eosinophils/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Eosinophils/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"713-8\",\n \"display\": \"Eosinophils/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Eosinophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r15\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r15\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r15\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Eosinophils \\u003cspan\\u003e(Details : {LOINC code \\u0027711-2\\u0027 \\u003d \\u0027Eosinophils [#/volume] in Blood by Automated count\\u0027, given as \\u0027Eosinophils [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.92 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: Critical high \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027HH\\u0027 \\u003d \\u0027Critical high)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e0.04 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e0.40 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"711-2\",\n \"display\": \"Eosinophils [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Eosinophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.92,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"HH\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 0.04,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 0.40,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r16\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r16\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r16\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Basophils \\u003cspan\\u003e(Details : {LOINC code \\u0027706-2\\u0027 \\u003d \\u0027Basophils/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Basophils/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"706-2\",\n \"display\": \"Basophils/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Basophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r17\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r17\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r17\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Basophils \\u003cspan\\u003e(Details : {LOINC code \\u0027704-7\\u0027 \\u003d \\u0027Basophils [#/volume] in Blood by Automated count\\u0027, given as \\u0027Basophils [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.92 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e0.21 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"704-7\",\n \"display\": \"Basophils [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Basophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.92,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"high\": {\n \"value\": 0.21,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DiagnosticReport", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DiagnosticReport" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DiagnosticReport_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DiagnosticReport?patient=&encounter=&based-on=&context=&image=&performer=&result=&specimen=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&identifier=&category=&diagnosis=&issued=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DiagnosticReport" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "encounter", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" - }, - { - "key": "based-on", - "value": "", - "description": "Reference to the procedure request." - }, - { - "key": "context", - "value": "", - "description": "Healthcare event (Episode of Care or Encounter) related to the report" - }, - { - "key": "image", - "value": "", - "description": "A reference to the image source." - }, - { - "key": "performer", - "value": "", - "description": "Who was the source of the report (organization)" - }, - { - "key": "result", - "value": "", - "description": "Link to an atomic result (observation resource)" - }, - { - "key": "specimen", - "value": "", - "description": "The specimen details" - }, - { - "key": "subject", - "value": "", - "description": "The subject of the report" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "category", - "value": "", - "description": "Which diagnostic discipline/department created the report" - }, - { - "key": "diagnosis", - "value": "", - "description": "A coded diagnosis on the report" - }, - { - "key": "issued", - "value": "", - "description": "When the report was issued" - }, - { - "key": "status", - "value": "", - "description": "The status of the report" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DiagnosticReportHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DiagnosticReport/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DiagnosticReport", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Document Manifest", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "DocumentManifestHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DocumentManifest/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentManifest", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DocumentManifestHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DocumentManifest/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentManifest", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DocumentManifestById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DocumentManifest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentManifest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DocumentManifestById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"DocumentManifest\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eText\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"a1\",\n \"name\": [\n {\n \"family\": \"Dopplemeyer\",\n \"given\": [\n \"Sherry\"\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"john.doe@healthcare.example.org\"\n }\n ]\n }\n ],\n \"masterIdentifier\": {\n \"system\": \"http://example.org/documents\",\n \"value\": \"23425234234-2346\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org/documents\",\n \"value\": \"23425234234-2347\"\n }\n ],\n \"status\": \"current\",\n \"type\": {\n \"text\": \"History and Physical\"\n },\n \"subject\": {\n \"reference\": \"Patient/xcda\"\n },\n \"created\": \"2004-12-25T23:50:50-05:00\",\n \"author\": [\n {\n \"reference\": \"#a1\"\n }\n ],\n \"recipient\": [\n {\n \"reference\": \"Practitioner/xcda1\"\n }\n ],\n \"source\": \"urn:oid:1.3.6.1.4.1.21367.2009.1.2.1\",\n \"description\": \"Physical\",\n \"content\": [\n {\n \"reference\": \"DocumentReference/example\"\n }\n ],\n \"related\": [\n {\n \"identifier\": {\n \"system\": \"http://example.org/documents\",\n \"value\": \"23425234234-9999\"\n },\n \"ref\": {\n \"reference\": \"DocumentReference/example\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DocumentManifest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentManifest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DocumentManifestById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DocumentManifest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentManifest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DocumentManifest_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"DocumentManifest\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eText\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"a1\",\n \"name\": [\n {\n \"family\": \"Dopplemeyer\",\n \"given\": [\n \"Sherry\"\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"john.doe@healthcare.example.org\"\n }\n ]\n }\n ],\n \"masterIdentifier\": {\n \"system\": \"http://example.org/documents\",\n \"value\": \"23425234234-2346\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org/documents\",\n \"value\": \"23425234234-2347\"\n }\n ],\n \"status\": \"current\",\n \"type\": {\n \"text\": \"History and Physical\"\n },\n \"subject\": {\n \"reference\": \"Patient/xcda\"\n },\n \"created\": \"2004-12-25T23:50:50-05:00\",\n \"author\": [\n {\n \"reference\": \"#a1\"\n }\n ],\n \"recipient\": [\n {\n \"reference\": \"Practitioner/xcda1\"\n }\n ],\n \"source\": \"urn:oid:1.3.6.1.4.1.21367.2009.1.2.1\",\n \"description\": \"Physical\",\n \"content\": [\n {\n \"reference\": \"DocumentReference/example\"\n }\n ],\n \"related\": [\n {\n \"identifier\": {\n \"system\": \"http://example.org/documents\",\n \"value\": \"23425234234-9999\"\n },\n \"ref\": {\n \"reference\": \"DocumentReference/example\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DocumentManifest", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentManifest" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DocumentManifest_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DocumentManifest?patient=&author=&content-ref=&recipient=&related-ref=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&type=&created=&description=&related-id=&source=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentManifest" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "author", - "value": "", - "description": "Who and/or what authored the manifest" - }, - { - "key": "content-ref", - "value": "", - "description": "Contents of this set of documents" - }, - { - "key": "recipient", - "value": "", - "description": "Intended to get notified about this set of documents" - }, - { - "key": "related-ref", - "value": "", - "description": "Related Resource" - }, - { - "key": "subject", - "value": "", - "description": "The subject of the set of documents" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "type", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" - }, - { - "key": "created", - "value": "", - "description": "When this document manifest created" - }, - { - "key": "description", - "value": "", - "description": "Human-readable description (title)" - }, - { - "key": "related-id", - "value": "", - "description": "Identifiers of things that are related" - }, - { - "key": "source", - "value": "", - "description": "The source system/application/software" - }, - { - "key": "status", - "value": "", - "description": "current | superseded | entered-in-error" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DocumentManifestHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DocumentManifest/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentManifest", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Document Reference", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "DocumentReferenceHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DocumentReference/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentReference", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DocumentReferenceHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DocumentReference/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentReference", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DocumentReferenceById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DocumentReference/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentReference", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DocumentReferenceById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"DocumentReference\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emasterIdentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: current\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocStatus\\u003c/b\\u003e: preliminary\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Outpatient Note \\u003cspan\\u003e(Details : {LOINC code \\u002734108-1\\u0027 \\u003d \\u0027Outpatient Note\\u0027, given as \\u0027Outpatient Note\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: History and Physical \\u003cspan\\u003e(Details : {http://ihe.net/xds/connectathon/classCodes code \\u0027History and Physical\\u0027 \\u003d \\u0027History and Physical\\u0027, given as \\u0027History and Physical\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 24/12/2005 9:43:41 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eauthor\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cul\\u003e\\u003cli\\u003e\\u003ca\\u003ePractitioner/xcda1\\u003c/a\\u003e\\u003c/li\\u003e\\u003cli\\u003eid: a2; Gerald Smitty \\u003c/li\\u003e\\u003c/ul\\u003e\\u003cp\\u003e\\u003cb\\u003eauthenticator\\u003c/b\\u003e: \\u003ca\\u003eOrganization/f001\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecustodian\\u003c/b\\u003e: \\u003ca\\u003eOrganization/f001\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eRelatesTos\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTarget\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eappends\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eDocumentReference/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Physical\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esecurityLabel\\u003c/b\\u003e: very restricted \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-Confidentiality code \\u0027V\\u0027 \\u003d \\u0027very restricted\\u0027, given as \\u0027very restricted\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eContents\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAttachment\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eFormat\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd/\\u003e\\u003ctd\\u003eHistory and Physical Specification (Details: urn:oid:1.3.6.1.4.1.19376.1.2.3 code urn:ihe:pcc:handp:2008 \\u003d \\u0027urn:ihe:pcc:handp:2008\\u0027, stated as \\u0027History and Physical Specification\\u0027)\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eContexts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncounter\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEvent\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePeriod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eFacilityType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePracticeSetting\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSourcePatientInfo\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRelated\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eEncounter/xcda\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eArm \\u003cspan\\u003e(Details : {http://ihe.net/xds/connectathon/eventCodes code \\u0027T-D8200\\u0027 \\u003d \\u0027T-D8200\\u0027, given as \\u0027Arm\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e23/12/2004 8:00:00 AM --\\u0026gt; 23/12/2004 8:01:00 AM\\u003c/td\\u003e\\u003ctd\\u003eOutpatient \\u003cspan\\u003e(Details : {http://www.ihe.net/xds/connectathon/healthcareFacilityTypeCodes code \\u0027Outpatient\\u0027 \\u003d \\u0027Outpatient\\u0027, given as \\u0027Outpatient\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003eGeneral Medicine \\u003cspan\\u003e(Details : {http://www.ihe.net/xds/connectathon/practiceSettingCodes code \\u0027General Medicine\\u0027 \\u003d \\u0027General Medicine\\u0027, given as \\u0027General Medicine\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"a2\",\n \"name\": [\n {\n \"family\": \"Smitty\",\n \"given\": [\n \"Gerald\"\n ]\n }\n ]\n }\n ],\n \"masterIdentifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\"\n }\n ],\n \"status\": \"current\",\n \"docStatus\": \"preliminary\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34108-1\",\n \"display\": \"Outpatient Note\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://ihe.net/xds/connectathon/classCodes\",\n \"code\": \"History and Physical\",\n \"display\": \"History and Physical\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/xcda\"\n },\n \"date\": \"2005-12-24T09:43:41+11:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/xcda1\"\n },\n {\n \"reference\": \"#a2\"\n }\n ],\n \"authenticator\": {\n \"reference\": \"Organization/f001\"\n },\n \"custodian\": {\n \"reference\": \"Organization/f001\"\n },\n \"relatesTo\": [\n {\n \"code\": \"appends\",\n \"target\": {\n \"reference\": \"DocumentReference/example\"\n }\n }\n ],\n \"description\": \"Physical\",\n \"securityLabel\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-Confidentiality\",\n \"code\": \"V\",\n \"display\": \"very restricted\"\n }\n ]\n }\n ],\n \"content\": [\n {\n \"attachment\": {\n \"contentType\": \"application/hl7-v3+xml\",\n \"language\": \"en-US\",\n \"url\": \"http://example.org/xds/mhd/Binary/07a6483f-732b-461e-86b6-edb665c45510\",\n \"size\": 3654,\n \"hash\": \"2jmj7l5rSw0yVb/vlWAYkK/YBwk\\u003d\",\n \"title\": \"Physical\",\n \"creation\": \"2005-12-24T09:35:00+11:00\"\n },\n \"format\": {\n \"system\": \"urn:oid:1.3.6.1.4.1.19376.1.2.3\",\n \"code\": \"urn:ihe:pcc:handp:2008\",\n \"display\": \"History and Physical Specification\"\n }\n }\n ],\n \"context\": {\n \"encounter\": [\n {\n \"reference\": \"Encounter/xcda\"\n }\n ],\n \"event\": [\n {\n \"coding\": [\n {\n \"system\": \"http://ihe.net/xds/connectathon/eventCodes\",\n \"code\": \"T-D8200\",\n \"display\": \"Arm\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2004-12-23T08:00:00+11:00\",\n \"end\": \"2004-12-23T08:01:00+11:00\"\n },\n \"facilityType\": {\n \"coding\": [\n {\n \"system\": \"http://www.ihe.net/xds/connectathon/healthcareFacilityTypeCodes\",\n \"code\": \"Outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"practiceSetting\": {\n \"coding\": [\n {\n \"system\": \"http://www.ihe.net/xds/connectathon/practiceSettingCodes\",\n \"code\": \"General Medicine\",\n \"display\": \"General Medicine\"\n }\n ]\n },\n \"sourcePatientInfo\": {\n \"reference\": \"Patient/xcda\"\n },\n \"related\": [\n {\n \"reference\": \"Patient/xcda\",\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.2345\"\n }\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DocumentReference/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentReference", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DocumentReferenceById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DocumentReference/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentReference", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DocumentReference_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"DocumentReference\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emasterIdentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: current\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocStatus\\u003c/b\\u003e: preliminary\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Outpatient Note \\u003cspan\\u003e(Details : {LOINC code \\u002734108-1\\u0027 \\u003d \\u0027Outpatient Note\\u0027, given as \\u0027Outpatient Note\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: History and Physical \\u003cspan\\u003e(Details : {http://ihe.net/xds/connectathon/classCodes code \\u0027History and Physical\\u0027 \\u003d \\u0027History and Physical\\u0027, given as \\u0027History and Physical\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 24/12/2005 9:43:41 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eauthor\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cul\\u003e\\u003cli\\u003e\\u003ca\\u003ePractitioner/xcda1\\u003c/a\\u003e\\u003c/li\\u003e\\u003cli\\u003eid: a2; Gerald Smitty \\u003c/li\\u003e\\u003c/ul\\u003e\\u003cp\\u003e\\u003cb\\u003eauthenticator\\u003c/b\\u003e: \\u003ca\\u003eOrganization/f001\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecustodian\\u003c/b\\u003e: \\u003ca\\u003eOrganization/f001\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eRelatesTos\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTarget\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eappends\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eDocumentReference/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Physical\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esecurityLabel\\u003c/b\\u003e: very restricted \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-Confidentiality code \\u0027V\\u0027 \\u003d \\u0027very restricted\\u0027, given as \\u0027very restricted\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eContents\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAttachment\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eFormat\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd/\\u003e\\u003ctd\\u003eHistory and Physical Specification (Details: urn:oid:1.3.6.1.4.1.19376.1.2.3 code urn:ihe:pcc:handp:2008 \\u003d \\u0027urn:ihe:pcc:handp:2008\\u0027, stated as \\u0027History and Physical Specification\\u0027)\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eContexts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncounter\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEvent\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePeriod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eFacilityType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePracticeSetting\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSourcePatientInfo\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRelated\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eEncounter/xcda\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eArm \\u003cspan\\u003e(Details : {http://ihe.net/xds/connectathon/eventCodes code \\u0027T-D8200\\u0027 \\u003d \\u0027T-D8200\\u0027, given as \\u0027Arm\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e23/12/2004 8:00:00 AM --\\u0026gt; 23/12/2004 8:01:00 AM\\u003c/td\\u003e\\u003ctd\\u003eOutpatient \\u003cspan\\u003e(Details : {http://www.ihe.net/xds/connectathon/healthcareFacilityTypeCodes code \\u0027Outpatient\\u0027 \\u003d \\u0027Outpatient\\u0027, given as \\u0027Outpatient\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003eGeneral Medicine \\u003cspan\\u003e(Details : {http://www.ihe.net/xds/connectathon/practiceSettingCodes code \\u0027General Medicine\\u0027 \\u003d \\u0027General Medicine\\u0027, given as \\u0027General Medicine\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"a2\",\n \"name\": [\n {\n \"family\": \"Smitty\",\n \"given\": [\n \"Gerald\"\n ]\n }\n ]\n }\n ],\n \"masterIdentifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\"\n }\n ],\n \"status\": \"current\",\n \"docStatus\": \"preliminary\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34108-1\",\n \"display\": \"Outpatient Note\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://ihe.net/xds/connectathon/classCodes\",\n \"code\": \"History and Physical\",\n \"display\": \"History and Physical\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/xcda\"\n },\n \"date\": \"2005-12-24T09:43:41+11:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/xcda1\"\n },\n {\n \"reference\": \"#a2\"\n }\n ],\n \"authenticator\": {\n \"reference\": \"Organization/f001\"\n },\n \"custodian\": {\n \"reference\": \"Organization/f001\"\n },\n \"relatesTo\": [\n {\n \"code\": \"appends\",\n \"target\": {\n \"reference\": \"DocumentReference/example\"\n }\n }\n ],\n \"description\": \"Physical\",\n \"securityLabel\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-Confidentiality\",\n \"code\": \"V\",\n \"display\": \"very restricted\"\n }\n ]\n }\n ],\n \"content\": [\n {\n \"attachment\": {\n \"contentType\": \"application/hl7-v3+xml\",\n \"language\": \"en-US\",\n \"url\": \"http://example.org/xds/mhd/Binary/07a6483f-732b-461e-86b6-edb665c45510\",\n \"size\": 3654,\n \"hash\": \"2jmj7l5rSw0yVb/vlWAYkK/YBwk\\u003d\",\n \"title\": \"Physical\",\n \"creation\": \"2005-12-24T09:35:00+11:00\"\n },\n \"format\": {\n \"system\": \"urn:oid:1.3.6.1.4.1.19376.1.2.3\",\n \"code\": \"urn:ihe:pcc:handp:2008\",\n \"display\": \"History and Physical Specification\"\n }\n }\n ],\n \"context\": {\n \"encounter\": [\n {\n \"reference\": \"Encounter/xcda\"\n }\n ],\n \"event\": [\n {\n \"coding\": [\n {\n \"system\": \"http://ihe.net/xds/connectathon/eventCodes\",\n \"code\": \"T-D8200\",\n \"display\": \"Arm\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2004-12-23T08:00:00+11:00\",\n \"end\": \"2004-12-23T08:01:00+11:00\"\n },\n \"facilityType\": {\n \"coding\": [\n {\n \"system\": \"http://www.ihe.net/xds/connectathon/healthcareFacilityTypeCodes\",\n \"code\": \"Outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"practiceSetting\": {\n \"coding\": [\n {\n \"system\": \"http://www.ihe.net/xds/connectathon/practiceSettingCodes\",\n \"code\": \"General Medicine\",\n \"display\": \"General Medicine\"\n }\n ]\n },\n \"sourcePatientInfo\": {\n \"reference\": \"Patient/xcda\"\n },\n \"related\": [\n {\n \"reference\": \"Patient/xcda\",\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.2345\"\n }\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/DocumentReference", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentReference" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DocumentReference_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DocumentReference?patient=&encounter=&authenticator=&author=&custodian=&related-ref=&relatesto=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&type=&class=&created=&description=&event=&facility=&format=&indexed=&language=&location=&period=&related-id=&relation=&relationship=&securitylabel=&setting=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentReference" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "encounter", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" - }, - { - "key": "authenticator", - "value": "", - "description": "Who/what authenticated the document" - }, - { - "key": "author", - "value": "", - "description": "Who and/or what authored the document" - }, - { - "key": "custodian", - "value": "", - "description": "Organization which maintains the document" - }, - { - "key": "related-ref", - "value": "", - "description": "Related Resource" - }, - { - "key": "relatesto", - "value": "", - "description": "Target of the relationship" - }, - { - "key": "subject", - "value": "", - "description": "Who/what is the subject of the document" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "type", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" - }, - { - "key": "class", - "value": "", - "description": "Categorization of document" - }, - { - "key": "created", - "value": "", - "description": "Document creation time" - }, - { - "key": "description", - "value": "", - "description": "Human-readable description (title)" - }, - { - "key": "event", - "value": "", - "description": "Main clinical acts documented" - }, - { - "key": "facility", - "value": "", - "description": "Kind of facility where patient was seen" - }, - { - "key": "format", - "value": "", - "description": "Format/content rules for the document" - }, - { - "key": "indexed", - "value": "", - "description": "When this document reference was created" - }, - { - "key": "language", - "value": "", - "description": "Human language of the content (BCP-47)" - }, - { - "key": "location", - "value": "", - "description": "Uri where the data can be found" - }, - { - "key": "period", - "value": "", - "description": "Time of service that is being documented" - }, - { - "key": "related-id", - "value": "", - "description": "Identifier of related objects or events" - }, - { - "key": "relation", - "value": "", - "description": "replaces | transforms | signs | appends" - }, - { - "key": "relationship", - "value": "", - "description": "Combination of relation and relatesTo" - }, - { - "key": "securitylabel", - "value": "", - "description": "Document security-tags" - }, - { - "key": "setting", - "value": "", - "description": "Additional details about where the content was created (e.g. clinical specialty)" - }, - { - "key": "status", - "value": "", - "description": "current | superseded | entered-in-error" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DocumentReferenceHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DocumentReference/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DocumentReference", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Domain Resource", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "DomainResourceHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DomainResource/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DomainResource", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DomainResourceHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DomainResource/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DomainResource", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DomainResourceById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DomainResource/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DomainResource", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DomainResourceById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "\"\"" - }, - "url": { - "raw": "{{API_URL}}/DomainResource/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DomainResource", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DomainResourceById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DomainResource/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DomainResource", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "DomainResource_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "\"\"" - }, - "url": { - "raw": "{{API_URL}}/DomainResource", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DomainResource" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DomainResource_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DomainResource?_id=&_lastUpdated=&_profile=&_security=&_tag=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DomainResource" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "DomainResourceHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/DomainResource/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "DomainResource", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Eligibility Request", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "EligibilityRequestHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EligibilityRequest/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityRequest", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EligibilityRequestHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EligibilityRequest/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityRequest", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "EligibilityRequestById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EligibilityRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EligibilityRequestById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"created\": \"\",\n \"targetReference\": {\n \"reference\": \"\"\n },\n \"organizationReference\": {\n \"reference\": \"\"\n },\n \"priority\": {\n \"code\": \"\"\n },\n \"patientReference\": {\n \"reference\": \"\"\n },\n \"coverageReference\": {\n \"reference\": \"\"\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/EligibilityRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EligibilityRequestById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EligibilityRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "EligibilityRequest_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"created\": \"\",\n \"targetReference\": {\n \"reference\": \"\"\n },\n \"organizationReference\": {\n \"reference\": \"\"\n },\n \"priority\": {\n \"code\": \"\"\n },\n \"patientReference\": {\n \"reference\": \"\"\n },\n \"coverageReference\": {\n \"reference\": \"\"\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/EligibilityRequest", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityRequest" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EligibilityRequest_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EligibilityRequest?enterer=&facility=&organization=&patient=&provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&identifier=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityRequest" - ], - "query": [ - { - "key": "enterer", - "value": "", - "description": "The party who is responsible for the request" - }, - { - "key": "facility", - "value": "", - "description": "Facility responsible for the goods and services" - }, - { - "key": "organization", - "value": "", - "description": "The reference to the providing organization" - }, - { - "key": "patient", - "value": "", - "description": "The reference to the patient" - }, - { - "key": "provider", - "value": "", - "description": "The reference to the provider" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "created", - "value": "", - "description": "The creation date for the EOB" - }, - { - "key": "identifier", - "value": "", - "description": "The business identifier of the Eligibility" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EligibilityRequestHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EligibilityRequest/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityRequest", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Eligibility Response", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "EligibilityResponseHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EligibilityResponse/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityResponse", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EligibilityResponseHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EligibilityResponse/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityResponse", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "EligibilityResponseById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EligibilityResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EligibilityResponseById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"requestReference\": {\n \"reference\": \"\"\n },\n \"outcome\": \"\",\n \"disposition\": \"\",\n \"created\": \"\",\n \"organizationReference\": {\n \"reference\": \"\"\n },\n \"inforce\": \"\",\n \"_inforce\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/EligibilityResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EligibilityResponseById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EligibilityResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "EligibilityResponse_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"requestReference\": {\n \"reference\": \"\"\n },\n \"outcome\": \"\",\n \"disposition\": \"\",\n \"created\": \"\",\n \"organizationReference\": {\n \"reference\": \"\"\n },\n \"inforce\": \"\",\n \"_inforce\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/EligibilityResponse", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityResponse" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EligibilityResponse_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EligibilityResponse?insurer=&request=&request-organization=&request-provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&disposition=&identifier=&outcome=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityResponse" - ], - "query": [ - { - "key": "insurer", - "value": "", - "description": "The organization which generated this resource" - }, - { - "key": "request", - "value": "", - "description": "The EligibilityRequest reference" - }, - { - "key": "request-organization", - "value": "", - "description": "The EligibilityRequest organization" - }, - { - "key": "request-provider", - "value": "", - "description": "The EligibilityRequest provider" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "created", - "value": "", - "description": "The creation date" - }, - { - "key": "disposition", - "value": "", - "description": "The contents of the disposition message" - }, - { - "key": "identifier", - "value": "", - "description": "The business identifier" - }, - { - "key": "outcome", - "value": "", - "description": "The processing outcome" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EligibilityResponseHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EligibilityResponse/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EligibilityResponse", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Encounter", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "EncounterHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Encounter/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Encounter", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EncounterHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Encounter/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Encounter", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "EncounterById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Encounter/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Encounter", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EncounterById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eEncounter with patient @example\\u003c/div\\u003e\"\n },\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"IMP\",\n \"display\": \"inpatient encounter\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Encounter/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Encounter", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EncounterById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Encounter/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Encounter", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Encounter_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eEncounter with patient @example\\u003c/div\\u003e\"\n },\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"IMP\",\n \"display\": \"inpatient encounter\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Encounter", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Encounter" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Encounter_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Encounter?patient=&appointment=&diagnosis=&episodeofcare=&incomingreferral=&location=&part-of=&participant=&practitioner=&service-provider=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&type=&class=&length=&location-period=&participant-type=&reason=&special-arrangement=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Encounter" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "appointment", - "value": "", - "description": "The appointment that scheduled this encounter" - }, - { - "key": "diagnosis", - "value": "", - "description": "Reason the encounter takes place (resource)" - }, - { - "key": "episodeofcare", - "value": "", - "description": "Episode(s) of care that this encounter should be recorded against" - }, - { - "key": "incomingreferral", - "value": "", - "description": "The ReferralRequest that initiated this encounter" - }, - { - "key": "location", - "value": "", - "description": "Location the encounter takes place" - }, - { - "key": "part-of", - "value": "", - "description": "Another Encounter this encounter is part of" - }, - { - "key": "participant", - "value": "", - "description": "Persons involved in the encounter other than the patient" - }, - { - "key": "practitioner", - "value": "", - "description": "Persons involved in the encounter other than the patient" - }, - { - "key": "service-provider", - "value": "", - "description": "The custodian organization of this Encounter record" - }, - { - "key": "subject", - "value": "", - "description": "The patient ro group present at the encounter" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "type", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" - }, - { - "key": "class", - "value": "", - "description": "inpatient | outpatient | ambulatory | emergency +" - }, - { - "key": "length", - "value": "", - "description": "Length of encounter in days" - }, - { - "key": "location-period", - "value": "", - "description": "Time period during which the patient was present at the location" - }, - { - "key": "participant-type", - "value": "", - "description": "Role of participant in encounter" - }, - { - "key": "reason", - "value": "", - "description": "Reason the encounter takes place (code)" - }, - { - "key": "special-arrangement", - "value": "", - "description": "Wheelchair, translator, stretcher, etc." - }, - { - "key": "status", - "value": "", - "description": "planned | arrived | triaged | in-progress | onleave | finished | cancelled +" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EncounterHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Encounter/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Encounter", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Endpoint", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "EndpointHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Endpoint/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Endpoint", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EndpointHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Endpoint/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Endpoint", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "EndpointById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Endpoint/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Endpoint", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EndpointById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Endpoint\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\tHealth Intersections CarePlan Hub\\u003cbr/\\u003e\\n\\t\\t\\tCarePlans can be uploaded to/from this loccation\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org/enpoint-identifier\",\n \"value\": \"epcp12\"\n }\n ],\n \"status\": \"active\",\n \"connectionType\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/endpoint-connection-type\",\n \"code\": \"hl7-fhir-rest\"\n },\n \"name\": \"Health Intersections CarePlan Hub\",\n \"managingOrganization\": {\n \"reference\": \"Organization/hl7\"\n },\n \"contact\": [\n {\n \"system\": \"email\",\n \"value\": \"endpointmanager@example.org\",\n \"use\": \"work\"\n }\n ],\n \"period\": {\n \"start\": \"2014-09-01\"\n },\n \"payloadType\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/resource-types\",\n \"code\": \"CarePlan\"\n }\n ]\n }\n ],\n \"payloadMimeType\": [\n \"application/fhir+xml\"\n ],\n \"address\": \"http://fhir3.healthintersections.com.au/open/CarePlan\",\n \"header\": [\n \"bearer-code BASGS534s4\"\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Endpoint/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Endpoint", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EndpointById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Endpoint/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Endpoint", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Endpoint_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Endpoint\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\tHealth Intersections CarePlan Hub\\u003cbr/\\u003e\\n\\t\\t\\tCarePlans can be uploaded to/from this loccation\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org/enpoint-identifier\",\n \"value\": \"epcp12\"\n }\n ],\n \"status\": \"active\",\n \"connectionType\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/endpoint-connection-type\",\n \"code\": \"hl7-fhir-rest\"\n },\n \"name\": \"Health Intersections CarePlan Hub\",\n \"managingOrganization\": {\n \"reference\": \"Organization/hl7\"\n },\n \"contact\": [\n {\n \"system\": \"email\",\n \"value\": \"endpointmanager@example.org\",\n \"use\": \"work\"\n }\n ],\n \"period\": {\n \"start\": \"2014-09-01\"\n },\n \"payloadType\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/resource-types\",\n \"code\": \"CarePlan\"\n }\n ]\n }\n ],\n \"payloadMimeType\": [\n \"application/fhir+xml\"\n ],\n \"address\": \"http://fhir3.healthintersections.com.au/open/CarePlan\",\n \"header\": [\n \"bearer-code BASGS534s4\"\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Endpoint", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Endpoint" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Endpoint_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Endpoint?organization=&_id=&_lastUpdated=&_profile=&_security=&_tag=&connection-type=&identifier=&name=&payload-type=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Endpoint" - ], - "query": [ - { - "key": "organization", - "value": "", - "description": "The organization that is managing the endpoint" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "connection-type", - "value": "", - "description": "Protocol/Profile/Standard to be used with this endpoint connection" - }, - { - "key": "identifier", - "value": "", - "description": "Identifies this endpoint across multiple systems" - }, - { - "key": "name", - "value": "", - "description": "A name that this endpoint can be identified by" - }, - { - "key": "payload-type", - "value": "", - "description": "The type of content that may be used at this endpoint (e.g. XDS Discharge summaries)" - }, - { - "key": "status", - "value": "", - "description": "The current status of the Endpoint (usually expected to be active)" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EndpointHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Endpoint/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Endpoint", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Enrollment Request", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "EnrollmentRequestHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EnrollmentRequest/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentRequest", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EnrollmentRequestHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EnrollmentRequest/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentRequest", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "EnrollmentRequestById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EnrollmentRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EnrollmentRequestById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"EnrollmentRequest\",\n \"id\": \"22345\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the EnrollmentRequest.\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://happyvalley.com/enrollmentrequest\",\n \"value\": \"EN22345\"\n }\n ],\n \"status\": \"active\",\n \"created\": \"2014-08-16\",\n \"insurer\": {\n \"reference\": \"Organization/2\"\n },\n \"provider\": {\n \"reference\": \"Organization/1\"\n },\n \"candidate\": {\n \"reference\": \"Patient/1\"\n },\n \"coverage\": {\n \"reference\": \"Coverage/9876B1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/EnrollmentRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EnrollmentRequestById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EnrollmentRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "EnrollmentRequest_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"EnrollmentRequest\",\n \"id\": \"22345\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the EnrollmentRequest.\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://happyvalley.com/enrollmentrequest\",\n \"value\": \"EN22345\"\n }\n ],\n \"status\": \"active\",\n \"created\": \"2014-08-16\",\n \"insurer\": {\n \"reference\": \"Organization/2\"\n },\n \"provider\": {\n \"reference\": \"Organization/1\"\n },\n \"candidate\": {\n \"reference\": \"Patient/1\"\n },\n \"coverage\": {\n \"reference\": \"Coverage/9876B1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/EnrollmentRequest", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentRequest" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EnrollmentRequest_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EnrollmentRequest?organization=&patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentRequest" - ], - "query": [ - { - "key": "organization", - "value": "", - "description": "The organization who generated this resource" - }, - { - "key": "patient", - "value": "", - "description": "The party to be enrolled" - }, - { - "key": "subject", - "value": "", - "description": "The party to be enrolled" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "The business identifier of the Enrollment" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EnrollmentRequestHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EnrollmentRequest/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentRequest", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Enrollment Response", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "EnrollmentResponseHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EnrollmentResponse/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentResponse", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EnrollmentResponseHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EnrollmentResponse/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentResponse", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "EnrollmentResponseById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EnrollmentResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EnrollmentResponseById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"EnrollmentResponse\",\n \"id\": \"ER2500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the EnrollmentResponse\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/enrollmentresponse\",\n \"value\": \"781234\"\n }\n ],\n \"status\": \"active\",\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/eligibility/225476332402\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"Dependant added to policy.\",\n \"created\": \"2014-08-16\",\n \"organization\": {\n \"reference\": \"Organization/2\"\n },\n \"requestProvider\": {\n \"reference\": \"Organization/1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/EnrollmentResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EnrollmentResponseById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EnrollmentResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "EnrollmentResponse_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"EnrollmentResponse\",\n \"id\": \"ER2500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the EnrollmentResponse\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/enrollmentresponse\",\n \"value\": \"781234\"\n }\n ],\n \"status\": \"active\",\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/eligibility/225476332402\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"Dependant added to policy.\",\n \"created\": \"2014-08-16\",\n \"organization\": {\n \"reference\": \"Organization/2\"\n },\n \"requestProvider\": {\n \"reference\": \"Organization/1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/EnrollmentResponse", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentResponse" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EnrollmentResponse_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EnrollmentResponse?organization=&request=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentResponse" - ], - "query": [ - { - "key": "organization", - "value": "", - "description": "The organization who generated this resource" - }, - { - "key": "request", - "value": "", - "description": "The reference to the claim" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "The business identifier of the EnrollmentResponse" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EnrollmentResponseHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EnrollmentResponse/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EnrollmentResponse", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Episode Of Care", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "EpisodeOfCareHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EpisodeOfCare/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EpisodeOfCare", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EpisodeOfCareHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EpisodeOfCare/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EpisodeOfCare", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "EpisodeOfCareById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EpisodeOfCare/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EpisodeOfCare", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EpisodeOfCareById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"EpisodeOfCare\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n HACC Program for Peter James Chalmers at HL7 Healthcare 15 Sept 2014 - current\\u003cbr/\\u003e\\n\\t\\t\\twas on leave from 22 Sept - 24 Sept while in respite care\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org/sampleepisodeofcare-identifier\",\n \"value\": \"123\"\n }\n ],\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"status\": \"planned\",\n \"period\": {\n \"start\": \"2014-09-01\",\n \"end\": \"2014-09-14\"\n }\n },\n {\n \"status\": \"active\",\n \"period\": {\n \"start\": \"2014-09-15\",\n \"end\": \"2014-09-21\"\n }\n },\n {\n \"status\": \"onhold\",\n \"period\": {\n \"start\": \"2014-09-22\",\n \"end\": \"2014-09-24\"\n }\n },\n {\n \"status\": \"active\",\n \"period\": {\n \"start\": \"2014-09-25\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/episodeofcare-type\",\n \"code\": \"hacc\",\n \"display\": \"Home and Community Care\"\n }\n ]\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/stroke\"\n },\n \"role\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"CC\",\n \"display\": \"Chief complaint\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/hl7\"\n },\n \"period\": {\n \"start\": \"2014-09-01\"\n },\n \"referralRequest\": [\n {\n \"display\": \"Referral from Example Aged Care Services\"\n }\n ],\n \"careManager\": {\n \"reference\": \"Practitioner/14\",\n \"display\": \"Amanda Assigned\"\n },\n \"team\": [\n {\n \"reference\": \"CareTeam/example\",\n \"display\": \"example care team\"\n }\n ],\n \"account\": [\n {\n \"reference\": \"Account/example\",\n \"display\": \"example account\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/EpisodeOfCare/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EpisodeOfCare", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EpisodeOfCareById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EpisodeOfCare/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EpisodeOfCare", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "EpisodeOfCare_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"EpisodeOfCare\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n HACC Program for Peter James Chalmers at HL7 Healthcare 15 Sept 2014 - current\\u003cbr/\\u003e\\n\\t\\t\\twas on leave from 22 Sept - 24 Sept while in respite care\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org/sampleepisodeofcare-identifier\",\n \"value\": \"123\"\n }\n ],\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"status\": \"planned\",\n \"period\": {\n \"start\": \"2014-09-01\",\n \"end\": \"2014-09-14\"\n }\n },\n {\n \"status\": \"active\",\n \"period\": {\n \"start\": \"2014-09-15\",\n \"end\": \"2014-09-21\"\n }\n },\n {\n \"status\": \"onhold\",\n \"period\": {\n \"start\": \"2014-09-22\",\n \"end\": \"2014-09-24\"\n }\n },\n {\n \"status\": \"active\",\n \"period\": {\n \"start\": \"2014-09-25\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/episodeofcare-type\",\n \"code\": \"hacc\",\n \"display\": \"Home and Community Care\"\n }\n ]\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/stroke\"\n },\n \"role\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"CC\",\n \"display\": \"Chief complaint\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/hl7\"\n },\n \"period\": {\n \"start\": \"2014-09-01\"\n },\n \"referralRequest\": [\n {\n \"display\": \"Referral from Example Aged Care Services\"\n }\n ],\n \"careManager\": {\n \"reference\": \"Practitioner/14\",\n \"display\": \"Amanda Assigned\"\n },\n \"team\": [\n {\n \"reference\": \"CareTeam/example\",\n \"display\": \"example care team\"\n }\n ],\n \"account\": [\n {\n \"reference\": \"Account/example\",\n \"display\": \"example account\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/EpisodeOfCare", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EpisodeOfCare" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EpisodeOfCare_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EpisodeOfCare?patient=&care-manager=&condition=&incomingreferral=&organization=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&type=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EpisodeOfCare" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "care-manager", - "value": "", - "description": "Care manager/care co-ordinator for the patient" - }, - { - "key": "condition", - "value": "", - "description": "Conditions/problems/diagnoses this episode of care is for" - }, - { - "key": "incomingreferral", - "value": "", - "description": "Incoming Referral Request" - }, - { - "key": "organization", - "value": "", - "description": "The organization that has assumed the specific responsibilities of this EpisodeOfCare" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "type", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" - }, - { - "key": "status", - "value": "", - "description": "The current status of the Episode of Care as provided (does not check the status history collection)" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "EpisodeOfCareHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/EpisodeOfCare/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "EpisodeOfCare", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Expansion Profile", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ExpansionProfileHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ExpansionProfile/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExpansionProfile", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ExpansionProfileHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ExpansionProfile/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExpansionProfile", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ExpansionProfileById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ExpansionProfile/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExpansionProfile", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ExpansionProfileById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"status\": \"\",\n \"experimental\": \"\",\n \"excludeNested\": \"\"\n}" - }, - "url": { - "raw": "{{API_URL}}/ExpansionProfile/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExpansionProfile", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ExpansionProfileById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ExpansionProfile/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExpansionProfile", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ExpansionProfile_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"status\": \"\",\n \"experimental\": \"\",\n \"excludeNested\": \"\"\n}" - }, - "url": { - "raw": "{{API_URL}}/ExpansionProfile", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExpansionProfile" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ExpansionProfile_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ExpansionProfile?_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&identifier=&jurisdiction=&name=&publisher=&status=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExpansionProfile" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "The expansion profile publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the expansion profile" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the expansion profile" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the expansion profile" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the expansion profile" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the expansion profile" - }, - { - "key": "status", - "value": "", - "description": "The current status of the expansion profile" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the expansion profile" - }, - { - "key": "version", - "value": "", - "description": "The business version of the expansion profile" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ExpansionProfileHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ExpansionProfile/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExpansionProfile", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Explanation Of Benefit", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ExplanationOfBenefitHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ExplanationOfBenefit/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExplanationOfBenefit", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ExplanationOfBenefitHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ExplanationOfBenefit/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExplanationOfBenefit", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ExplanationOfBenefitById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ExplanationOfBenefit/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExplanationOfBenefit", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ExplanationOfBenefitById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ExplanationOfBenefit\",\n \"id\": \"EB3500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the ExplanationOfBenefit\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/explanationofbenefit\",\n \"value\": \"987654321\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/claim-type\",\n \"code\": \"oral\"\n }\n ]\n },\n \"use\": \"claim\",\n \"patient\": {\n \"reference\": \"Patient/pat1\"\n },\n \"created\": \"2014-08-16\",\n \"enterer\": {\n \"reference\": \"Practitioner/1\"\n },\n \"insurer\": {\n \"reference\": \"Organization/3\"\n },\n \"provider\": {\n \"reference\": \"Practitioner/1\"\n },\n \"payee\": {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payeetype\",\n \"code\": \"provider\"\n }\n ]\n },\n \"party\": {\n \"reference\": \"Organization/2\"\n }\n },\n \"facility\": {\n \"reference\": \"Location/1\"\n },\n \"claim\": {\n \"reference\": \"Claim/100150\"\n },\n \"claimResponse\": {\n \"reference\": \"ClaimResponse/R3500\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"Claim settled as per contract.\",\n \"careTeam\": [\n {\n \"sequence\": 1,\n \"provider\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"insurance\": [\n {\n \"focal\": true,\n \"coverage\": {\n \"reference\": \"Coverage/9876B1\"\n }\n }\n ],\n \"item\": [\n {\n \"sequence\": 1,\n \"careTeamSequence\": [\n 1\n ],\n \"productOrService\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-USCLS\",\n \"code\": \"1205\"\n }\n ]\n },\n \"servicedDate\": \"2014-08-16\",\n \"unitPrice\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n },\n \"net\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n },\n \"udi\": [\n {\n \"reference\": \"Device/example\"\n }\n ],\n \"encounter\": [\n {\n \"reference\": \"Encounter/example\"\n }\n ],\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligible\"\n }\n ]\n },\n \"amount\": {\n \"value\": 120.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligpercent\"\n }\n ]\n },\n \"value\": 0.80\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 96.00,\n \"currency\": \"USD\"\n }\n }\n ]\n },\n {\n \"sequence\": 2,\n \"careTeamSequence\": [\n 1\n ],\n \"productOrService\": {\n \"coding\": [\n {\n \"code\": \"group\"\n }\n ]\n },\n \"servicedDate\": \"2014-08-16\",\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 180.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"detail\": [\n {\n \"sequence\": 1,\n \"productOrService\": {\n \"coding\": [\n {\n \"code\": \"group\"\n }\n ]\n },\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"udi\": [\n {\n \"reference\": \"Device/example\"\n }\n ],\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 180.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"subDetail\": [\n {\n \"sequence\": 1,\n \"productOrService\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-USCLS\",\n \"code\": \"1205\"\n }\n ]\n },\n \"unitPrice\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"udi\": [\n {\n \"reference\": \"Device/example\"\n }\n ],\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligible\"\n }\n ]\n },\n \"amount\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligpercent\"\n }\n ]\n },\n \"value\": 0.90\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 180.00,\n \"currency\": \"USD\"\n }\n }\n ]\n }\n ]\n }\n ]\n }\n ],\n \"total\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"submitted\"\n }\n ]\n },\n \"amount\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 96.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ExplanationOfBenefit/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExplanationOfBenefit", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ExplanationOfBenefitById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ExplanationOfBenefit/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExplanationOfBenefit", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ExplanationOfBenefit_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ExplanationOfBenefit\",\n \"id\": \"EB3500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the ExplanationOfBenefit\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/explanationofbenefit\",\n \"value\": \"987654321\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/claim-type\",\n \"code\": \"oral\"\n }\n ]\n },\n \"use\": \"claim\",\n \"patient\": {\n \"reference\": \"Patient/pat1\"\n },\n \"created\": \"2014-08-16\",\n \"enterer\": {\n \"reference\": \"Practitioner/1\"\n },\n \"insurer\": {\n \"reference\": \"Organization/3\"\n },\n \"provider\": {\n \"reference\": \"Practitioner/1\"\n },\n \"payee\": {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payeetype\",\n \"code\": \"provider\"\n }\n ]\n },\n \"party\": {\n \"reference\": \"Organization/2\"\n }\n },\n \"facility\": {\n \"reference\": \"Location/1\"\n },\n \"claim\": {\n \"reference\": \"Claim/100150\"\n },\n \"claimResponse\": {\n \"reference\": \"ClaimResponse/R3500\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"Claim settled as per contract.\",\n \"careTeam\": [\n {\n \"sequence\": 1,\n \"provider\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"insurance\": [\n {\n \"focal\": true,\n \"coverage\": {\n \"reference\": \"Coverage/9876B1\"\n }\n }\n ],\n \"item\": [\n {\n \"sequence\": 1,\n \"careTeamSequence\": [\n 1\n ],\n \"productOrService\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-USCLS\",\n \"code\": \"1205\"\n }\n ]\n },\n \"servicedDate\": \"2014-08-16\",\n \"unitPrice\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n },\n \"net\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n },\n \"udi\": [\n {\n \"reference\": \"Device/example\"\n }\n ],\n \"encounter\": [\n {\n \"reference\": \"Encounter/example\"\n }\n ],\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligible\"\n }\n ]\n },\n \"amount\": {\n \"value\": 120.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligpercent\"\n }\n ]\n },\n \"value\": 0.80\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 96.00,\n \"currency\": \"USD\"\n }\n }\n ]\n },\n {\n \"sequence\": 2,\n \"careTeamSequence\": [\n 1\n ],\n \"productOrService\": {\n \"coding\": [\n {\n \"code\": \"group\"\n }\n ]\n },\n \"servicedDate\": \"2014-08-16\",\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 180.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"detail\": [\n {\n \"sequence\": 1,\n \"productOrService\": {\n \"coding\": [\n {\n \"code\": \"group\"\n }\n ]\n },\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"udi\": [\n {\n \"reference\": \"Device/example\"\n }\n ],\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 180.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"subDetail\": [\n {\n \"sequence\": 1,\n \"productOrService\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-USCLS\",\n \"code\": \"1205\"\n }\n ]\n },\n \"unitPrice\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"udi\": [\n {\n \"reference\": \"Device/example\"\n }\n ],\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligible\"\n }\n ]\n },\n \"amount\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligpercent\"\n }\n ]\n },\n \"value\": 0.90\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 180.00,\n \"currency\": \"USD\"\n }\n }\n ]\n }\n ]\n }\n ]\n }\n ],\n \"total\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"submitted\"\n }\n ]\n },\n \"amount\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 96.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ExplanationOfBenefit", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExplanationOfBenefit" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ExplanationOfBenefit_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ExplanationOfBenefit?care-team=&claim=&coverage=&encounter=&enterer=&facility=&organization=&patient=&payee=&provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&disposition=&identifier=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExplanationOfBenefit" - ], - "query": [ - { - "key": "care-team", - "value": "", - "description": "Member of the CareTeam" - }, - { - "key": "claim", - "value": "", - "description": "The reference to the claim" - }, - { - "key": "coverage", - "value": "", - "description": "The plan under which the claim was adjudicated" - }, - { - "key": "encounter", - "value": "", - "description": "Encounters associated with a billed line item" - }, - { - "key": "enterer", - "value": "", - "description": "The party responsible for the entry of the Claim" - }, - { - "key": "facility", - "value": "", - "description": "Facility responsible for the goods and services" - }, - { - "key": "organization", - "value": "", - "description": "The reference to the providing organization" - }, - { - "key": "patient", - "value": "", - "description": "The reference to the patient" - }, - { - "key": "payee", - "value": "", - "description": "The party receiving any payment for the Claim" - }, - { - "key": "provider", - "value": "", - "description": "The reference to the provider" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "created", - "value": "", - "description": "The creation date for the EOB" - }, - { - "key": "disposition", - "value": "", - "description": "The contents of the disposition message" - }, - { - "key": "identifier", - "value": "", - "description": "The business identifier of the Explanation of Benefit" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ExplanationOfBenefitHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ExplanationOfBenefit/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ExplanationOfBenefit", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Export", - "item": [ - { - "name": "GET System Export", - "request": { - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - }, - "method": "GET", - "header": [ - { - "key": "x-api-key", - "type": "text", - "value": "{{API_KEY}}" - } - ], - "url": { - "raw": "{{API_URL}}/$export?_outputFormat=ndjson&_since=2020-10-13T15:47:51.15Z&_type=Patient", - "host": [ - "{{API_URL}}" - ], - "path": [ - "$export" - ], - "query": [ - { - "key": "_outputFormat", - "value": "ndjson" - }, - { - "key": "_since", - "value": "2020-10-13T15:47:51.15Z" - }, - { - "key": "_type", - "value": "Patient" - } - ] - } - }, - "response": [] - }, - { - "name": "GET System Job Status", - "request": { - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - }, - "method": "GET", - "header": [ - { - "key": "x-api-key", - "type": "text", - "value": "{{API_KEY}}" - } - ], - "url": { - "raw": "{{API_URL}}/$export/:jobId", - "host": [ - "{{API_URL}}" - ], - "path": [ - "$export", - ":jobId" - ], - "variable": [ - { - "key": "jobId", - "value": "a40b8a52-b7d1-4d0c-8856-8a3ff0e5680a" - } - ] - } - }, - "response": [] - }, - { - "name": "Cancel Export Job", - "request": { - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - }, - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "type": "text", - "value": "{{API_KEY}}" - } - ], - "url": { - "raw": "{{API_URL}}/$export/:jobId", - "host": [ - "{{API_URL}}" - ], - "path": [ - "$export", - ":jobId" - ], - "variable": [ - { - "key": "jobId", - "value": "1da17d30-7248-4cb5-802b-0a947344dddc" - } - ] - } - }, - "response": [] - } - ] - }, - { - "name": "Family Member History", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "FamilyMemberHistoryHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/FamilyMemberHistory/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "FamilyMemberHistory", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "FamilyMemberHistoryHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/FamilyMemberHistory/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "FamilyMemberHistory", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "FamilyMemberHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/FamilyMemberHistory/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "FamilyMemberHistory", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "FamilyMemberHistoryById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"FamilyMemberHistory\",\n \"id\": \"father\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eFather died of a heart attack aged 74\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"instantiatesUri\": [\n \"http://example.org/family-member-history-questionnaire\"\n ],\n \"status\": \"completed\",\n \"patient\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Patient\"\n },\n \"date\": \"2011-03-18\",\n \"relationship\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"FTH\",\n \"display\": \"father\"\n }\n ]\n },\n \"sex\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/administrative-gender\",\n \"code\": \"male\",\n \"display\": \"Male\"\n }\n ]\n },\n \"condition\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"315619001\",\n \"display\": \"Myocardial Infarction\"\n }\n ],\n \"text\": \"Heart Attack\"\n },\n \"contributedToDeath\": true,\n \"onsetAge\": {\n \"value\": 74,\n \"unit\": \"yr\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"note\": [\n {\n \"text\": \"Was fishing at the time. At least he went doing someting he loved.\"\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/FamilyMemberHistory/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "FamilyMemberHistory", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "FamilyMemberHistoryById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/FamilyMemberHistory/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "FamilyMemberHistory", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "FamilyMemberHistory_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"FamilyMemberHistory\",\n \"id\": \"father\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eFather died of a heart attack aged 74\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"instantiatesUri\": [\n \"http://example.org/family-member-history-questionnaire\"\n ],\n \"status\": \"completed\",\n \"patient\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Patient\"\n },\n \"date\": \"2011-03-18\",\n \"relationship\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"FTH\",\n \"display\": \"father\"\n }\n ]\n },\n \"sex\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/administrative-gender\",\n \"code\": \"male\",\n \"display\": \"Male\"\n }\n ]\n },\n \"condition\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"315619001\",\n \"display\": \"Myocardial Infarction\"\n }\n ],\n \"text\": \"Heart Attack\"\n },\n \"contributedToDeath\": true,\n \"onsetAge\": {\n \"value\": 74,\n \"unit\": \"yr\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"note\": [\n {\n \"text\": \"Was fishing at the time. At least he went doing someting he loved.\"\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/FamilyMemberHistory", - "host": [ - "{{API_URL}}" - ], - "path": [ - "FamilyMemberHistory" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "FamilyMemberHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/FamilyMemberHistory?patient=&definition=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&identifier=&gender=&relationship=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "FamilyMemberHistory" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "definition", - "value": "", - "description": "Instantiates protocol or definition" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "gender", - "value": "", - "description": "A search by a gender code of a family member" - }, - { - "key": "relationship", - "value": "", - "description": "A search by a relationship type" - }, - { - "key": "status", - "value": "", - "description": "partial | completed | entered-in-error | health-unknown" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "FamilyMemberHistoryHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/FamilyMemberHistory/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "FamilyMemberHistory", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Flag", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "FlagHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Flag/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Flag", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "FlagHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Flag/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Flag", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "FlagById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Flag/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Flag", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "FlagById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Flag\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eLarge Dog warning for Peter Patient\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"status\": \"inactive\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/flag-category\",\n \"code\": \"safety\",\n \"display\": \"Safety\"\n }\n ],\n \"text\": \"Safety\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/local\",\n \"code\": \"bigdog\",\n \"display\": \"Big dog\"\n }\n ],\n \"text\": \"Patient has a big dog at his home. Always always wear a suit of armor or take other active counter-measures\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Patient\"\n },\n \"period\": {\n \"start\": \"2015-01-17\",\n \"end\": \"2016-12-01\"\n },\n \"author\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Nancy Nurse\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Flag/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Flag", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "FlagById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Flag/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Flag", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Flag_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Flag\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eLarge Dog warning for Peter Patient\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"status\": \"inactive\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/flag-category\",\n \"code\": \"safety\",\n \"display\": \"Safety\"\n }\n ],\n \"text\": \"Safety\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/local\",\n \"code\": \"bigdog\",\n \"display\": \"Big dog\"\n }\n ],\n \"text\": \"Patient has a big dog at his home. Always always wear a suit of armor or take other active counter-measures\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Patient\"\n },\n \"period\": {\n \"start\": \"2015-01-17\",\n \"end\": \"2016-12-01\"\n },\n \"author\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Nancy Nurse\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Flag", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Flag" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Flag_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Flag?patient=&encounter=&author=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Flag" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "encounter", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" - }, - { - "key": "author", - "value": "", - "description": "Flag creator" - }, - { - "key": "subject", - "value": "", - "description": "The identity of a subject to list flags for" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Business identifier" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "FlagHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Flag/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Flag", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Goal", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "GoalHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Goal/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Goal", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GoalHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Goal/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Goal", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "GoalById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Goal/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Goal", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GoalById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Goal\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003e A simple care goal for a patient to lose weight due to obesity.\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"123\"\n }\n ],\n \"lifecycleStatus\": \"on-hold\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/goal-category\",\n \"code\": \"dietary\"\n }\n ]\n }\n ],\n \"priority\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/goal-priority\",\n \"code\": \"high-priority\",\n \"display\": \"High Priority\"\n }\n ],\n \"text\": \"high\"\n },\n \"description\": {\n \"text\": \"Target weight is 160 to 180 lbs.\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"startDate\": \"2015-04-05\",\n \"target\": [\n {\n \"measure\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"3141-9\",\n \"display\": \"Weight Measured\"\n }\n ]\n },\n \"detailRange\": {\n \"low\": {\n \"value\": 160,\n \"unit\": \"lbs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[lb_av]\"\n },\n \"high\": {\n \"value\": 180,\n \"unit\": \"lbs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[lb_av]\"\n }\n },\n \"dueDate\": \"2016-04-05\"\n }\n ],\n \"statusDate\": \"2016-02-14\",\n \"statusReason\": \"Patient wants to defer weight loss until after honeymoon.\",\n \"expressedBy\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"addresses\": [\n {\n \"display\": \"obesity condition\"\n }\n ],\n \"outcomeReference\": [\n {\n \"reference\": \"Observation/example\",\n \"display\": \"Body Weight Measured\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Goal/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Goal", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GoalById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Goal/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Goal", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Goal_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Goal\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003e A simple care goal for a patient to lose weight due to obesity.\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"123\"\n }\n ],\n \"lifecycleStatus\": \"on-hold\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/goal-category\",\n \"code\": \"dietary\"\n }\n ]\n }\n ],\n \"priority\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/goal-priority\",\n \"code\": \"high-priority\",\n \"display\": \"High Priority\"\n }\n ],\n \"text\": \"high\"\n },\n \"description\": {\n \"text\": \"Target weight is 160 to 180 lbs.\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"startDate\": \"2015-04-05\",\n \"target\": [\n {\n \"measure\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"3141-9\",\n \"display\": \"Weight Measured\"\n }\n ]\n },\n \"detailRange\": {\n \"low\": {\n \"value\": 160,\n \"unit\": \"lbs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[lb_av]\"\n },\n \"high\": {\n \"value\": 180,\n \"unit\": \"lbs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[lb_av]\"\n }\n },\n \"dueDate\": \"2016-04-05\"\n }\n ],\n \"statusDate\": \"2016-02-14\",\n \"statusReason\": \"Patient wants to defer weight loss until after honeymoon.\",\n \"expressedBy\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"addresses\": [\n {\n \"display\": \"obesity condition\"\n }\n ],\n \"outcomeReference\": [\n {\n \"reference\": \"Observation/example\",\n \"display\": \"Body Weight Measured\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Goal", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Goal" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Goal_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Goal?patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&category=&start-date=&status=&target-date=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Goal" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "subject", - "value": "", - "description": "Who this goal is intended for" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "category", - "value": "", - "description": "E.g. Treatment, dietary, behavioral, etc." - }, - { - "key": "start-date", - "value": "", - "description": "When goal pursuit begins" - }, - { - "key": "status", - "value": "", - "description": "proposed | accepted | planned | in-progress | on-target | ahead-of-target | behind-target | sustaining | achieved | on-hold | cancelled | entered-in-error | rejected" - }, - { - "key": "target-date", - "value": "", - "description": "Reach goal on or before" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GoalHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Goal/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Goal", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Graph Definition", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "GraphDefinitionHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/GraphDefinition/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GraphDefinition", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GraphDefinitionHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/GraphDefinition/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GraphDefinition", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "GraphDefinitionById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/GraphDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GraphDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GraphDefinitionById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"GraphDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://h7.org/fhir/GraphDefinition/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Document Generation Template\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 04/08/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: FHIR Project\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Specify to include list references when generating a document using the $document operation\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estart\\u003c/b\\u003e: Composition\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003elink\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epath\\u003c/b\\u003e: Composition.section.entry\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Link to List\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003etarget\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: List\\u003c/p\\u003e\\u003ch3\\u003eCompartments\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUse\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRule\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003erequirement\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eidentical\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eLinks\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://h7.org/fhir/GraphDefinition/example\",\n \"name\": \"Document Generation Template\",\n \"status\": \"draft\",\n \"date\": \"2015-08-04\",\n \"publisher\": \"FHIR Project\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"Specify to include list references when generating a document using the $document operation\",\n \"start\": \"Composition\",\n \"link\": [\n {\n \"path\": \"Composition.section.entry\",\n \"description\": \"Link to List\",\n \"target\": [\n {\n \"type\": \"List\",\n \"compartment\": [\n {\n \"use\": \"requirement\",\n \"code\": \"Patient\",\n \"rule\": \"identical\"\n }\n ],\n \"link\": [\n {\n \"path\": \"List.entry.item\",\n \"description\": \"Include any list entries\",\n \"target\": [\n {\n \"type\": \"Resource\",\n \"compartment\": [\n {\n \"use\": \"requirement\",\n \"code\": \"Patient\",\n \"rule\": \"identical\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/GraphDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GraphDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GraphDefinitionById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/GraphDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GraphDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "GraphDefinition_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"GraphDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://h7.org/fhir/GraphDefinition/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Document Generation Template\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 04/08/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: FHIR Project\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Specify to include list references when generating a document using the $document operation\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estart\\u003c/b\\u003e: Composition\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003elink\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epath\\u003c/b\\u003e: Composition.section.entry\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Link to List\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003etarget\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: List\\u003c/p\\u003e\\u003ch3\\u003eCompartments\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUse\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRule\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003erequirement\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eidentical\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eLinks\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://h7.org/fhir/GraphDefinition/example\",\n \"name\": \"Document Generation Template\",\n \"status\": \"draft\",\n \"date\": \"2015-08-04\",\n \"publisher\": \"FHIR Project\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"Specify to include list references when generating a document using the $document operation\",\n \"start\": \"Composition\",\n \"link\": [\n {\n \"path\": \"Composition.section.entry\",\n \"description\": \"Link to List\",\n \"target\": [\n {\n \"type\": \"List\",\n \"compartment\": [\n {\n \"use\": \"requirement\",\n \"code\": \"Patient\",\n \"rule\": \"identical\"\n }\n ],\n \"link\": [\n {\n \"path\": \"List.entry.item\",\n \"description\": \"Include any list entries\",\n \"target\": [\n {\n \"type\": \"Resource\",\n \"compartment\": [\n {\n \"use\": \"requirement\",\n \"code\": \"Patient\",\n \"rule\": \"identical\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/GraphDefinition", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GraphDefinition" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GraphDefinition_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/GraphDefinition?_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&jurisdiction=&name=&publisher=&start=&status=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GraphDefinition" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "The graph definition publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the graph definition" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the graph definition" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the graph definition" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the graph definition" - }, - { - "key": "start", - "value": "", - "description": "Type of resource at which the graph starts" - }, - { - "key": "status", - "value": "", - "description": "The current status of the graph definition" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the graph definition" - }, - { - "key": "version", - "value": "", - "description": "The business version of the graph definition" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GraphDefinitionHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/GraphDefinition/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GraphDefinition", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Group", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "GroupHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Group/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Group", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GroupHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Group/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Group", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "GroupById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Group/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Group", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GroupById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Group\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eHerd of 25 horses\\u003c/p\\u003e\\n \\u003cp\\u003eGender: mixed\\u003c/p\\u003e\\n \\u003cp\\u003eOwner: John Smith\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://someveterinarianclinic.org/fhir/NamingSystem/herds\",\n \"value\": \"12345\"\n }\n ],\n \"type\": \"animal\",\n \"actual\": true,\n \"code\": {\n \"text\": \"Horse\"\n },\n \"name\": \"John\\u0027s herd\",\n \"quantity\": 25,\n \"characteristic\": [\n {\n \"code\": {\n \"text\": \"gender\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"mixed\"\n },\n \"exclude\": false\n },\n {\n \"code\": {\n \"text\": \"owner\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"John Smith\"\n },\n \"exclude\": false\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Group/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Group", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GroupById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Group/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Group", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Group_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Group\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eHerd of 25 horses\\u003c/p\\u003e\\n \\u003cp\\u003eGender: mixed\\u003c/p\\u003e\\n \\u003cp\\u003eOwner: John Smith\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://someveterinarianclinic.org/fhir/NamingSystem/herds\",\n \"value\": \"12345\"\n }\n ],\n \"type\": \"animal\",\n \"actual\": true,\n \"code\": {\n \"text\": \"Horse\"\n },\n \"name\": \"John\\u0027s herd\",\n \"quantity\": 25,\n \"characteristic\": [\n {\n \"code\": {\n \"text\": \"gender\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"mixed\"\n },\n \"exclude\": false\n },\n {\n \"code\": {\n \"text\": \"owner\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"John Smith\"\n },\n \"exclude\": false\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Group", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Group" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Group_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Group?member=&_id=&_lastUpdated=&_profile=&_security=&_tag=&actual=&characteristic=&characteristic-value=&code=&exclude=&identifier=&type=&value=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Group" - ], - "query": [ - { - "key": "member", - "value": "", - "description": "Reference to the group member" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "actual", - "value": "", - "description": "Descriptive or actual" - }, - { - "key": "characteristic", - "value": "", - "description": "Kind of characteristic" - }, - { - "key": "characteristic-value", - "value": "", - "description": "A composite of both characteristic and value" - }, - { - "key": "code", - "value": "", - "description": "The kind of resources contained" - }, - { - "key": "exclude", - "value": "", - "description": "Group includes or excludes" - }, - { - "key": "identifier", - "value": "", - "description": "Unique id" - }, - { - "key": "type", - "value": "", - "description": "The type of resources the group contains" - }, - { - "key": "value", - "value": "", - "description": "Value held by characteristic" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GroupHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Group/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Group", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Guidance Response", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "GuidanceResponseHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/GuidanceResponse/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GuidanceResponse", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GuidanceResponseHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/GuidanceResponse/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GuidanceResponse", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "GuidanceResponseById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/GuidanceResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GuidanceResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GuidanceResponseById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"GuidanceResponse\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequestIdentifier\\u003c/b\\u003e: guidanceRequest1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: guidanceResponse1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emodule\\u003c/b\\u003e: \\u003ca\\u003ehttp://someguidelineprovider.org/radiology-appropriateness-guidelines.html\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: success\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrenceDateTime\\u003c/b\\u003e: 10/03/2017 4:02:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eDevice/software\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Guideline Appropriate Ordering Assessment \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoutputParameters\\u003c/b\\u003e: id: outputParameters1\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Parameters\",\n \"id\": \"outputParameters1\",\n \"parameter\": [\n {\n \"name\": \"score\",\n \"valueDecimal\": 7\n },\n {\n \"name\": \"item-assessed\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://www.ama-assn.org/go/cpt\",\n \"code\": \"70450\",\n \"display\": \"CT, head, wo iv contrast\"\n }\n ]\n }\n },\n {\n \"name\": \"device\",\n \"valueReference\": {\n \"reference\": \"Device/software\"\n }\n },\n {\n \"name\": \"guideline-followed\",\n \"valueUri\": \"http://someguidelineprovider.org/radiology-appropriateness-guidelines.html\"\n }\n ]\n }\n ],\n \"requestIdentifier\": {\n \"system\": \"http://example.org\",\n \"value\": \"guidanceRequest1\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org\",\n \"value\": \"guidanceResponse1\"\n }\n ],\n \"moduleUri\": \"http://someguidelineprovider.org/radiology-appropriateness-guidelines.html\",\n \"status\": \"success\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"occurrenceDateTime\": \"2017-03-10T16:02:00Z\",\n \"performer\": {\n \"reference\": \"Device/software\"\n },\n \"reasonCode\": [\n {\n \"text\": \"Guideline Appropriate Ordering Assessment\"\n }\n ],\n \"outputParameters\": {\n \"reference\": \"#outputParameters1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/GuidanceResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GuidanceResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GuidanceResponseById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/GuidanceResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GuidanceResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "GuidanceResponse_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"GuidanceResponse\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequestIdentifier\\u003c/b\\u003e: guidanceRequest1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: guidanceResponse1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emodule\\u003c/b\\u003e: \\u003ca\\u003ehttp://someguidelineprovider.org/radiology-appropriateness-guidelines.html\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: success\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrenceDateTime\\u003c/b\\u003e: 10/03/2017 4:02:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eDevice/software\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Guideline Appropriate Ordering Assessment \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoutputParameters\\u003c/b\\u003e: id: outputParameters1\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Parameters\",\n \"id\": \"outputParameters1\",\n \"parameter\": [\n {\n \"name\": \"score\",\n \"valueDecimal\": 7\n },\n {\n \"name\": \"item-assessed\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://www.ama-assn.org/go/cpt\",\n \"code\": \"70450\",\n \"display\": \"CT, head, wo iv contrast\"\n }\n ]\n }\n },\n {\n \"name\": \"device\",\n \"valueReference\": {\n \"reference\": \"Device/software\"\n }\n },\n {\n \"name\": \"guideline-followed\",\n \"valueUri\": \"http://someguidelineprovider.org/radiology-appropriateness-guidelines.html\"\n }\n ]\n }\n ],\n \"requestIdentifier\": {\n \"system\": \"http://example.org\",\n \"value\": \"guidanceRequest1\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org\",\n \"value\": \"guidanceResponse1\"\n }\n ],\n \"moduleUri\": \"http://someguidelineprovider.org/radiology-appropriateness-guidelines.html\",\n \"status\": \"success\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"occurrenceDateTime\": \"2017-03-10T16:02:00Z\",\n \"performer\": {\n \"reference\": \"Device/software\"\n },\n \"reasonCode\": [\n {\n \"text\": \"Guideline Appropriate Ordering Assessment\"\n }\n ],\n \"outputParameters\": {\n \"reference\": \"#outputParameters1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/GuidanceResponse", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GuidanceResponse" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GuidanceResponse_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/GuidanceResponse?patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&request=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GuidanceResponse" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "The identity of a patient to search for guidance response results" - }, - { - "key": "subject", - "value": "", - "description": "The subject that the guidance response is about" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "The identifier of the guidance response" - }, - { - "key": "request", - "value": "", - "description": "The identifier of the request associated with the response" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "GuidanceResponseHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/GuidanceResponse/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "GuidanceResponse", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Healthcare Service", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "HealthcareServiceHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/HealthcareService/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "HealthcareService", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "HealthcareServiceHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/HealthcareService/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "HealthcareService", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "HealthcareServiceById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/HealthcareService/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "HealthcareService", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "HealthcareServiceById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"HealthcareService\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t25 Dec 2013 9:15am - 9:30am: \\u003cb\\u003eBusy\\u003c/b\\u003e Physiotherapy\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"DenBurg\",\n \"description\": \"Greater Denburg area\",\n \"mode\": \"instance\",\n \"physicalType\": {\n \"coding\": [\n {\n \"code\": \"area\",\n \"display\": \"Area\"\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"system\": \"http://example.org/shared-ids\",\n \"value\": \"HS-12\"\n }\n ],\n \"active\": true,\n \"providedBy\": {\n \"reference\": \"Organization/f001\",\n \"display\": \"Burgers University Medical Center\"\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/service-category\",\n \"code\": \"8\",\n \"display\": \"Counselling\"\n }\n ],\n \"text\": \"Counselling\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394913002\",\n \"display\": \"Psychotherapy\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394587001\",\n \"display\": \"Psychiatry\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"47505003\",\n \"display\": \"Posttraumatic stress disorder\"\n }\n ]\n }\n ],\n \"location\": [\n {\n \"reference\": \"Location/1\"\n }\n ],\n \"name\": \"Consulting psychologists and/or psychology services\",\n \"comment\": \"Providing Specialist psychology services to the greater Den Burg area, many years of experience dealing with PTSD issues\",\n \"extraDetails\": \"Several assessments are required for these specialist services, and the waiting times can be greater than 3 months at times. Existing patients are prioritized when requesting appointments on the schedule.\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"(555) silent\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"directaddress@example.com\",\n \"use\": \"work\"\n }\n ],\n \"coverageArea\": [\n {\n \"reference\": \"#DenBurg\",\n \"display\": \"Greater Denburg area\"\n }\n ],\n \"serviceProvisionCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/service-provision-conditions\",\n \"code\": \"cost\",\n \"display\": \"Fees apply\"\n }\n ]\n }\n ],\n \"eligibility\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"display\": \"DVA Required\"\n }\n ]\n },\n \"comment\": \"Evidence of application for DVA status may be sufficient for commencing assessment\"\n }\n ],\n \"program\": [\n {\n \"text\": \"PTSD outreach\"\n }\n ],\n \"characteristic\": [\n {\n \"coding\": [\n {\n \"display\": \"Wheelchair access\"\n }\n ]\n }\n ],\n \"referralMethod\": [\n {\n \"coding\": [\n {\n \"code\": \"phone\",\n \"display\": \"Phone\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"fax\",\n \"display\": \"Fax\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"elec\",\n \"display\": \"Secure Messaging\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"semail\",\n \"display\": \"Secure Email\"\n }\n ]\n }\n ],\n \"appointmentRequired\": false,\n \"availableTime\": [\n {\n \"daysOfWeek\": [\n \"wed\"\n ],\n \"allDay\": true\n },\n {\n \"daysOfWeek\": [\n \"mon\",\n \"tue\",\n \"thu\",\n \"fri\"\n ],\n \"availableStartTime\": \"08:30:00\",\n \"availableEndTime\": \"05:30:00\"\n },\n {\n \"daysOfWeek\": [\n \"sat\",\n \"fri\"\n ],\n \"availableStartTime\": \"09:30:00\",\n \"availableEndTime\": \"04:30:00\"\n }\n ],\n \"notAvailable\": [\n {\n \"description\": \"Christmas/Boxing Day\",\n \"during\": {\n \"start\": \"2015-12-25\",\n \"end\": \"2015-12-26\"\n }\n },\n {\n \"description\": \"New Years Day\",\n \"during\": {\n \"start\": \"2016-01-01\",\n \"end\": \"2016-01-01\"\n }\n }\n ],\n \"availabilityExceptions\": \"Reduced capacity is available during the Christmas period\",\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/HealthcareService/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "HealthcareService", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "HealthcareServiceById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/HealthcareService/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "HealthcareService", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "HealthcareService_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"HealthcareService\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t25 Dec 2013 9:15am - 9:30am: \\u003cb\\u003eBusy\\u003c/b\\u003e Physiotherapy\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"DenBurg\",\n \"description\": \"Greater Denburg area\",\n \"mode\": \"instance\",\n \"physicalType\": {\n \"coding\": [\n {\n \"code\": \"area\",\n \"display\": \"Area\"\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"system\": \"http://example.org/shared-ids\",\n \"value\": \"HS-12\"\n }\n ],\n \"active\": true,\n \"providedBy\": {\n \"reference\": \"Organization/f001\",\n \"display\": \"Burgers University Medical Center\"\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/service-category\",\n \"code\": \"8\",\n \"display\": \"Counselling\"\n }\n ],\n \"text\": \"Counselling\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394913002\",\n \"display\": \"Psychotherapy\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394587001\",\n \"display\": \"Psychiatry\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"47505003\",\n \"display\": \"Posttraumatic stress disorder\"\n }\n ]\n }\n ],\n \"location\": [\n {\n \"reference\": \"Location/1\"\n }\n ],\n \"name\": \"Consulting psychologists and/or psychology services\",\n \"comment\": \"Providing Specialist psychology services to the greater Den Burg area, many years of experience dealing with PTSD issues\",\n \"extraDetails\": \"Several assessments are required for these specialist services, and the waiting times can be greater than 3 months at times. Existing patients are prioritized when requesting appointments on the schedule.\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"(555) silent\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"directaddress@example.com\",\n \"use\": \"work\"\n }\n ],\n \"coverageArea\": [\n {\n \"reference\": \"#DenBurg\",\n \"display\": \"Greater Denburg area\"\n }\n ],\n \"serviceProvisionCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/service-provision-conditions\",\n \"code\": \"cost\",\n \"display\": \"Fees apply\"\n }\n ]\n }\n ],\n \"eligibility\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"display\": \"DVA Required\"\n }\n ]\n },\n \"comment\": \"Evidence of application for DVA status may be sufficient for commencing assessment\"\n }\n ],\n \"program\": [\n {\n \"text\": \"PTSD outreach\"\n }\n ],\n \"characteristic\": [\n {\n \"coding\": [\n {\n \"display\": \"Wheelchair access\"\n }\n ]\n }\n ],\n \"referralMethod\": [\n {\n \"coding\": [\n {\n \"code\": \"phone\",\n \"display\": \"Phone\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"fax\",\n \"display\": \"Fax\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"elec\",\n \"display\": \"Secure Messaging\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"semail\",\n \"display\": \"Secure Email\"\n }\n ]\n }\n ],\n \"appointmentRequired\": false,\n \"availableTime\": [\n {\n \"daysOfWeek\": [\n \"wed\"\n ],\n \"allDay\": true\n },\n {\n \"daysOfWeek\": [\n \"mon\",\n \"tue\",\n \"thu\",\n \"fri\"\n ],\n \"availableStartTime\": \"08:30:00\",\n \"availableEndTime\": \"05:30:00\"\n },\n {\n \"daysOfWeek\": [\n \"sat\",\n \"fri\"\n ],\n \"availableStartTime\": \"09:30:00\",\n \"availableEndTime\": \"04:30:00\"\n }\n ],\n \"notAvailable\": [\n {\n \"description\": \"Christmas/Boxing Day\",\n \"during\": {\n \"start\": \"2015-12-25\",\n \"end\": \"2015-12-26\"\n }\n },\n {\n \"description\": \"New Years Day\",\n \"during\": {\n \"start\": \"2016-01-01\",\n \"end\": \"2016-01-01\"\n }\n }\n ],\n \"availabilityExceptions\": \"Reduced capacity is available during the Christmas period\",\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/HealthcareService", - "host": [ - "{{API_URL}}" - ], - "path": [ - "HealthcareService" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "HealthcareService_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/HealthcareService?endpoint=&location=&organization=&_id=&_lastUpdated=&_profile=&_security=&_tag=&active=&category=&characteristic=&identifier=&name=&programname=&type=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "HealthcareService" - ], - "query": [ - { - "key": "endpoint", - "value": "", - "description": "Technical endpoints providing access to services operated for the location" - }, - { - "key": "location", - "value": "", - "description": "The location of the Healthcare Service" - }, - { - "key": "organization", - "value": "", - "description": "The organization that provides this Healthcare Service" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "active", - "value": "", - "description": "The Healthcare Service is currently marked as active" - }, - { - "key": "category", - "value": "", - "description": "Service Category of the Healthcare Service" - }, - { - "key": "characteristic", - "value": "", - "description": "One of the HealthcareService's characteristics" - }, - { - "key": "identifier", - "value": "", - "description": "External identifiers for this item" - }, - { - "key": "name", - "value": "", - "description": "A portion of the Healthcare service name" - }, - { - "key": "programname", - "value": "", - "description": "One of the Program Names serviced by this HealthcareService" - }, - { - "key": "type", - "value": "", - "description": "The type of service provided by this healthcare service" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "HealthcareServiceHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/HealthcareService/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "HealthcareService", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Imaging Manifest", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ImagingManifestHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImagingManifest/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingManifest", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImagingManifestHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImagingManifest/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingManifest", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ImagingManifestById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImagingManifest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingManifest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImagingManifestById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "\"\"" - }, - "url": { - "raw": "{{API_URL}}/ImagingManifest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingManifest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImagingManifestById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImagingManifest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingManifest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ImagingManifest_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "\"\"" - }, - "url": { - "raw": "{{API_URL}}/ImagingManifest", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingManifest" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImagingManifest_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImagingManifest?patient=&author=&endpoint=&imaging-study=&_id=&_lastUpdated=&_profile=&_security=&_tag=&authoring-time=&identifier=&selected-study=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingManifest" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "author", - "value": "", - "description": "Author of the ImagingManifest (or a DICOM Key Object Selection which it represents)" - }, - { - "key": "endpoint", - "value": "", - "description": "The endpoint for the study or series" - }, - { - "key": "imaging-study", - "value": "", - "description": "ImagingStudy resource selected in the ImagingManifest (or a DICOM Key Object Selection which it represents)" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "authoring-time", - "value": "", - "description": "Time of the ImagingManifest (or a DICOM Key Object Selection which it represents) authoring" - }, - { - "key": "identifier", - "value": "", - "description": "UID of the ImagingManifest (or a DICOM Key Object Selection which it represents)" - }, - { - "key": "selected-study", - "value": "", - "description": "Study selected in the ImagingManifest (or a DICOM Key Object Selection which it represents)" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImagingManifestHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImagingManifest/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingManifest", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Imaging Study", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ImagingStudyHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImagingStudy/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingStudy", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImagingStudyHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImagingStudy/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingStudy", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ImagingStudyById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImagingStudy/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingStudy", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImagingStudyById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ImagingStudy\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eCT Chest. John Smith (MRN: 09236). Accession: W12342398. Performed: 2011-01-01. 3 series, 12 images.\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:dicom:uid\",\n \"value\": \"urn:oid:2.16.124.113543.6003.1154777499.30246.19789.3503430045\"\n }\n ],\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/dicom\"\n },\n \"started\": \"2011-01-01T11:01:20+03:00\",\n \"numberOfSeries\": 1,\n \"numberOfInstances\": 1,\n \"series\": [\n {\n \"uid\": \"2.16.124.113543.6003.2588828330.45298.17418.2723805630\",\n \"number\": 3,\n \"modality\": {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"CT\"\n },\n \"description\": \"CT Surview 180\",\n \"numberOfInstances\": 1,\n \"bodySite\": {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"67734004\",\n \"display\": \"Upper Trunk Structure\"\n },\n \"instance\": [\n {\n \"uid\": \"2.16.124.113543.6003.189642796.63084.16748.2599092903\",\n \"sopClass\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"code\": \"urn:oid:1.2.840.10008.5.1.4.1.1.2\"\n },\n \"number\": 1\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ImagingStudy/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingStudy", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImagingStudyById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImagingStudy/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingStudy", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ImagingStudy_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ImagingStudy\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eCT Chest. John Smith (MRN: 09236). Accession: W12342398. Performed: 2011-01-01. 3 series, 12 images.\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:dicom:uid\",\n \"value\": \"urn:oid:2.16.124.113543.6003.1154777499.30246.19789.3503430045\"\n }\n ],\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/dicom\"\n },\n \"started\": \"2011-01-01T11:01:20+03:00\",\n \"numberOfSeries\": 1,\n \"numberOfInstances\": 1,\n \"series\": [\n {\n \"uid\": \"2.16.124.113543.6003.2588828330.45298.17418.2723805630\",\n \"number\": 3,\n \"modality\": {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"CT\"\n },\n \"description\": \"CT Surview 180\",\n \"numberOfInstances\": 1,\n \"bodySite\": {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"67734004\",\n \"display\": \"Upper Trunk Structure\"\n },\n \"instance\": [\n {\n \"uid\": \"2.16.124.113543.6003.189642796.63084.16748.2599092903\",\n \"sopClass\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"code\": \"urn:oid:1.2.840.10008.5.1.4.1.1.2\"\n },\n \"number\": 1\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ImagingStudy", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingStudy" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImagingStudy_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImagingStudy?patient=&basedon=&context=&endpoint=&performer=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&accession=&bodysite=&dicom-class=&modality=&reason=&series=&started=&study=&uid=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingStudy" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "basedon", - "value": "", - "description": "The order for the image" - }, - { - "key": "context", - "value": "", - "description": "The context of the study" - }, - { - "key": "endpoint", - "value": "", - "description": "The endpoint for te study or series" - }, - { - "key": "performer", - "value": "", - "description": "The person who performed the study" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "accession", - "value": "", - "description": "The accession identifier for the study" - }, - { - "key": "bodysite", - "value": "", - "description": "The body site studied" - }, - { - "key": "dicom-class", - "value": "", - "description": "The type of the instance" - }, - { - "key": "modality", - "value": "", - "description": "The modality of the series" - }, - { - "key": "reason", - "value": "", - "description": "The reason for the study" - }, - { - "key": "series", - "value": "", - "description": "The identifier of the series of images" - }, - { - "key": "started", - "value": "", - "description": "When the study was started" - }, - { - "key": "study", - "value": "", - "description": "The study identifier for the image" - }, - { - "key": "uid", - "value": "", - "description": "The instance unique identifier" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImagingStudyHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImagingStudy/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImagingStudy", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Immunization", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ImmunizationHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Immunization/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Immunization", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImmunizationHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Immunization/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Immunization", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ImmunizationById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Immunization/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Immunization", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImmunizationById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Immunization\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evaccineCode\\u003c/b\\u003e: Fluvax (Influenza) \\u003cspan\\u003e(Details : {urn:oid:1.2.36.1.2001.1005.17 code \\u0027FLUVAX\\u0027 \\u003d \\u0027Fluvax)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epatient\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrence\\u003c/b\\u003e: 10/01/2013\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eprimarySource\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elocation\\u003c/b\\u003e: \\u003ca\\u003eLocation/1\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emanufacturer\\u003c/b\\u003e: \\u003ca\\u003eOrganization/hl7\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elotNumber\\u003c/b\\u003e: AAJN11K\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexpirationDate\\u003c/b\\u003e: 15/02/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esite\\u003c/b\\u003e: left arm \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ActSite code \\u0027LA\\u0027 \\u003d \\u0027left arm\\u0027, given as \\u0027left arm\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eroute\\u003c/b\\u003e: Injection, intramuscular \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration code \\u0027IM\\u0027 \\u003d \\u0027Injection, intramuscular\\u0027, given as \\u0027Injection, intramuscular\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edoseQuantity\\u003c/b\\u003e: 5 mg\\u003cspan\\u003e (Details: UCUM code mg \\u003d \\u0027mg\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efunction\\u003c/b\\u003e: Ordering Provider \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v2-0443 code \\u0027OP\\u0027 \\u003d \\u0027Ordering Provider)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eactor\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efunction\\u003c/b\\u003e: Administering Provider \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v2-0443 code \\u0027AP\\u0027 \\u003d \\u0027Administering Provider)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eactor\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: Notes on adminstration of vaccine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Procedure to meet occupational requirement \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027429060002\\u0027 \\u003d \\u0027Procedure to meet occupational requirement)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eisSubpotent\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003ch3\\u003eEducations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDocumentType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePublicationDate\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePresentationDate\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e253088698300010311120702\\u003c/td\\u003e\\u003ctd\\u003e02/07/2012\\u003c/td\\u003e\\u003ctd\\u003e10/01/2013\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eprogramEligibility\\u003c/b\\u003e: Not Eligible \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/immunization-program-eligibility code \\u0027ineligible\\u0027 \\u003d \\u0027Not Eligible)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efundingSource\\u003c/b\\u003e: Private \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/immunization-funding-source code \\u0027private\\u0027 \\u003d \\u0027Private)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\"\n }\n ],\n \"status\": \"completed\",\n \"vaccineCode\": {\n \"coding\": [\n {\n \"system\": \"urn:oid:1.2.36.1.2001.1005.17\",\n \"code\": \"FLUVAX\"\n }\n ],\n \"text\": \"Fluvax (Influenza)\"\n },\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"occurrenceDateTime\": \"2013-01-10\",\n \"primarySource\": true,\n \"location\": {\n \"reference\": \"Location/1\"\n },\n \"manufacturer\": {\n \"reference\": \"Organization/hl7\"\n },\n \"lotNumber\": \"AAJN11K\",\n \"expirationDate\": \"2015-02-15\",\n \"site\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActSite\",\n \"code\": \"LA\",\n \"display\": \"left arm\"\n }\n ]\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration\",\n \"code\": \"IM\",\n \"display\": \"Injection, intramuscular\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"performer\": [\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0443\",\n \"code\": \"OP\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n },\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0443\",\n \"code\": \"AP\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Notes on adminstration of vaccine\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429060002\"\n }\n ]\n }\n ],\n \"isSubpotent\": true,\n \"education\": [\n {\n \"documentType\": \"253088698300010311120702\",\n \"publicationDate\": \"2012-07-02\",\n \"presentationDate\": \"2013-01-10\"\n }\n ],\n \"programEligibility\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/immunization-program-eligibility\",\n \"code\": \"ineligible\"\n }\n ]\n }\n ],\n \"fundingSource\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/immunization-funding-source\",\n \"code\": \"private\"\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Immunization/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Immunization", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImmunizationById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Immunization/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Immunization", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Immunization_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Immunization\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evaccineCode\\u003c/b\\u003e: Fluvax (Influenza) \\u003cspan\\u003e(Details : {urn:oid:1.2.36.1.2001.1005.17 code \\u0027FLUVAX\\u0027 \\u003d \\u0027Fluvax)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epatient\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrence\\u003c/b\\u003e: 10/01/2013\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eprimarySource\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elocation\\u003c/b\\u003e: \\u003ca\\u003eLocation/1\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emanufacturer\\u003c/b\\u003e: \\u003ca\\u003eOrganization/hl7\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elotNumber\\u003c/b\\u003e: AAJN11K\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexpirationDate\\u003c/b\\u003e: 15/02/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esite\\u003c/b\\u003e: left arm \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ActSite code \\u0027LA\\u0027 \\u003d \\u0027left arm\\u0027, given as \\u0027left arm\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eroute\\u003c/b\\u003e: Injection, intramuscular \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration code \\u0027IM\\u0027 \\u003d \\u0027Injection, intramuscular\\u0027, given as \\u0027Injection, intramuscular\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edoseQuantity\\u003c/b\\u003e: 5 mg\\u003cspan\\u003e (Details: UCUM code mg \\u003d \\u0027mg\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efunction\\u003c/b\\u003e: Ordering Provider \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v2-0443 code \\u0027OP\\u0027 \\u003d \\u0027Ordering Provider)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eactor\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efunction\\u003c/b\\u003e: Administering Provider \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v2-0443 code \\u0027AP\\u0027 \\u003d \\u0027Administering Provider)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eactor\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: Notes on adminstration of vaccine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Procedure to meet occupational requirement \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027429060002\\u0027 \\u003d \\u0027Procedure to meet occupational requirement)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eisSubpotent\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003ch3\\u003eEducations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDocumentType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePublicationDate\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePresentationDate\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e253088698300010311120702\\u003c/td\\u003e\\u003ctd\\u003e02/07/2012\\u003c/td\\u003e\\u003ctd\\u003e10/01/2013\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eprogramEligibility\\u003c/b\\u003e: Not Eligible \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/immunization-program-eligibility code \\u0027ineligible\\u0027 \\u003d \\u0027Not Eligible)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efundingSource\\u003c/b\\u003e: Private \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/immunization-funding-source code \\u0027private\\u0027 \\u003d \\u0027Private)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\"\n }\n ],\n \"status\": \"completed\",\n \"vaccineCode\": {\n \"coding\": [\n {\n \"system\": \"urn:oid:1.2.36.1.2001.1005.17\",\n \"code\": \"FLUVAX\"\n }\n ],\n \"text\": \"Fluvax (Influenza)\"\n },\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"occurrenceDateTime\": \"2013-01-10\",\n \"primarySource\": true,\n \"location\": {\n \"reference\": \"Location/1\"\n },\n \"manufacturer\": {\n \"reference\": \"Organization/hl7\"\n },\n \"lotNumber\": \"AAJN11K\",\n \"expirationDate\": \"2015-02-15\",\n \"site\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActSite\",\n \"code\": \"LA\",\n \"display\": \"left arm\"\n }\n ]\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration\",\n \"code\": \"IM\",\n \"display\": \"Injection, intramuscular\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"performer\": [\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0443\",\n \"code\": \"OP\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n },\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0443\",\n \"code\": \"AP\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Notes on adminstration of vaccine\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429060002\"\n }\n ]\n }\n ],\n \"isSubpotent\": true,\n \"education\": [\n {\n \"documentType\": \"253088698300010311120702\",\n \"publicationDate\": \"2012-07-02\",\n \"presentationDate\": \"2013-01-10\"\n }\n ],\n \"programEligibility\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/immunization-program-eligibility\",\n \"code\": \"ineligible\"\n }\n ]\n }\n ],\n \"fundingSource\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/immunization-funding-source\",\n \"code\": \"private\"\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Immunization", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Immunization" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Immunization_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Immunization?patient=&location=&manufacturer=&practitioner=&reaction=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&dose-sequence=&lot-number=¬given=&reaction-date=&reason=&reason-not-given=&status=&vaccine-code=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Immunization" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "location", - "value": "", - "description": "The service delivery location or facility in which the vaccine was / was to be administered" - }, - { - "key": "manufacturer", - "value": "", - "description": "Vaccine Manufacturer" - }, - { - "key": "practitioner", - "value": "", - "description": "The practitioner who played a role in the vaccination" - }, - { - "key": "reaction", - "value": "", - "description": "Additional information on reaction" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "dose-sequence", - "value": "", - "description": "Dose number within series" - }, - { - "key": "lot-number", - "value": "", - "description": "Vaccine Lot Number" - }, - { - "key": "notgiven", - "value": "", - "description": "Administrations which were not given" - }, - { - "key": "reaction-date", - "value": "", - "description": "When reaction started" - }, - { - "key": "reason", - "value": "", - "description": "Why immunization occurred" - }, - { - "key": "reason-not-given", - "value": "", - "description": "Explanation of reason vaccination was not administered" - }, - { - "key": "status", - "value": "", - "description": "Immunization event status" - }, - { - "key": "vaccine-code", - "value": "", - "description": "Vaccine Product Administered" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImmunizationHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Immunization/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Immunization", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Immunization Recommendation", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ImmunizationRecommendationHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImmunizationRecommendation/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImmunizationRecommendation", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImmunizationRecommendationHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImmunizationRecommendation/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImmunizationRecommendation", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ImmunizationRecommendationById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImmunizationRecommendation/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImmunizationRecommendation", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImmunizationRecommendationById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ImmunizationRecommendation\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eAuthored by Joginder Madra\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.1235\"\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"date\": \"2015-02-09T11:04:15.817-05:00\",\n \"authority\": {\n \"reference\": \"Organization/hl7\"\n },\n \"recommendation\": [\n {\n \"vaccineCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"14745005\",\n \"display\": \"Hepatitis A vaccine\"\n }\n ]\n }\n ],\n \"forecastStatus\": {\n \"text\": \"Not Complete\"\n },\n \"dateCriterion\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion\",\n \"code\": \"earliest\",\n \"display\": \"Earliest Date\"\n }\n ]\n },\n \"value\": \"2015-12-01T00:00:00-05:00\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion\",\n \"code\": \"recommended\",\n \"display\": \"Recommended\"\n }\n ]\n },\n \"value\": \"2015-12-01T00:00:00-05:00\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion\",\n \"code\": \"overdue\",\n \"display\": \"Past Due Date\"\n }\n ]\n },\n \"value\": \"2016-12-28T00:00:00-05:00\"\n }\n ],\n \"description\": \"First sequence in protocol\",\n \"series\": \"Vaccination Series 1\",\n \"doseNumberPositiveInt\": 1,\n \"seriesDosesPositiveInt\": 3,\n \"supportingImmunization\": [\n {\n \"reference\": \"Immunization/example\"\n }\n ],\n \"supportingPatientInformation\": [\n {\n \"reference\": \"Observation/example\"\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ImmunizationRecommendation/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImmunizationRecommendation", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImmunizationRecommendationById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImmunizationRecommendation/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImmunizationRecommendation", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ImmunizationRecommendation_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ImmunizationRecommendation\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eAuthored by Joginder Madra\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.1235\"\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"date\": \"2015-02-09T11:04:15.817-05:00\",\n \"authority\": {\n \"reference\": \"Organization/hl7\"\n },\n \"recommendation\": [\n {\n \"vaccineCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"14745005\",\n \"display\": \"Hepatitis A vaccine\"\n }\n ]\n }\n ],\n \"forecastStatus\": {\n \"text\": \"Not Complete\"\n },\n \"dateCriterion\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion\",\n \"code\": \"earliest\",\n \"display\": \"Earliest Date\"\n }\n ]\n },\n \"value\": \"2015-12-01T00:00:00-05:00\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion\",\n \"code\": \"recommended\",\n \"display\": \"Recommended\"\n }\n ]\n },\n \"value\": \"2015-12-01T00:00:00-05:00\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion\",\n \"code\": \"overdue\",\n \"display\": \"Past Due Date\"\n }\n ]\n },\n \"value\": \"2016-12-28T00:00:00-05:00\"\n }\n ],\n \"description\": \"First sequence in protocol\",\n \"series\": \"Vaccination Series 1\",\n \"doseNumberPositiveInt\": 1,\n \"seriesDosesPositiveInt\": 3,\n \"supportingImmunization\": [\n {\n \"reference\": \"Immunization/example\"\n }\n ],\n \"supportingPatientInformation\": [\n {\n \"reference\": \"Observation/example\"\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ImmunizationRecommendation", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImmunizationRecommendation" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImmunizationRecommendation_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImmunizationRecommendation?information=&patient=&support=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&dose-number=&dose-sequence=&identifier=&status=&target-disease=&vaccine-type=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImmunizationRecommendation" - ], - "query": [ - { - "key": "information", - "value": "", - "description": "Patient observations supporting recommendation" - }, - { - "key": "patient", - "value": "", - "description": "Who this profile is for" - }, - { - "key": "support", - "value": "", - "description": "Past immunizations supporting recommendation" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Date recommendation created" - }, - { - "key": "dose-number", - "value": "", - "description": "Recommended dose number" - }, - { - "key": "dose-sequence", - "value": "", - "description": "Dose number within sequence" - }, - { - "key": "identifier", - "value": "", - "description": "Business identifier" - }, - { - "key": "status", - "value": "", - "description": "Vaccine administration status" - }, - { - "key": "target-disease", - "value": "", - "description": "Disease to be immunized against" - }, - { - "key": "vaccine-type", - "value": "", - "description": "Vaccine recommendation applies to" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImmunizationRecommendationHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImmunizationRecommendation/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImmunizationRecommendation", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Implementation Guide", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ImplementationGuideHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImplementationGuide/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImplementationGuide", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImplementationGuideHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImplementationGuide/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImplementationGuide", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ImplementationGuideById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImplementationGuide/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImplementationGuide", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImplementationGuideById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ImplementationGuide\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/us/daf\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Data Access Framework (DAF)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 01/01/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: ONC / HL7 Joint project\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: , \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: The Data Access Framework (DAF) Initiative leverages the HL7 FHIR standards to standardize access to Meaningful Use Stage 2 structured information both within the organization and from external organizations\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United States of America \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027US\\u0027 \\u003d \\u0027United States of America)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecopyright\\u003c/b\\u003e: Published by ONC under the standard FHIR license (CC0)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epackageId\\u003c/b\\u003e: hl7.fhir.us.daf\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elicense\\u003c/b\\u003e: CC0-1.0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efhirVersion\\u003c/b\\u003e: 4.0.1\\u003c/p\\u003e\\u003ch3\\u003eDependsOns\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUri\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/ImplementationGuide/uscore\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eGlobals\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eProfile\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/us/core/StructureDefinition/patient\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003edefinition\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eGroupings\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etest\\u003c/td\\u003e\\u003ctd\\u003eBase package (not broken up into multiple packages)\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eResources\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReference\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eExample[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/test\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eTest Example\\u003c/td\\u003e\\u003ctd\\u003eA test example to show how an implementation guide works\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/us/core/StructureDefinition/patient\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003epage\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: \\u003ca\\u003epatient-example.html\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etitle\\u003c/b\\u003e: Example Patient Page\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003egeneration\\u003c/b\\u003e: html\\u003c/p\\u003e\\u003ch3\\u003ePages\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003ch3\\u003eParameters\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eValue\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eapply\\u003c/td\\u003e\\u003ctd\\u003eversion\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003emanifest\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erendering\\u003c/b\\u003e: \\u003ca\\u003ehttp://hl7.org/fhir/us/daf\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eResources\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReference\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eExample[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRelativePath\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/test\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/us/core/StructureDefinition/patient\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003epatient-test.html#patient-test\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003ePages\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTitle\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAnchor\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epatient-test.html\\u003c/td\\u003e\\u003ctd\\u003eTest Patient Example\\u003c/td\\u003e\\u003ctd\\u003epatient-test\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eimage\\u003c/b\\u003e: fhir.png\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eother\\u003c/b\\u003e: fhir.css\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/us/daf\",\n \"version\": \"0\",\n \"name\": \"Data Access Framework (DAF)\",\n \"status\": \"draft\",\n \"experimental\": false,\n \"date\": \"2015-01-01\",\n \"publisher\": \"ONC / HL7 Joint project\",\n \"contact\": [\n {\n \"name\": \"ONC\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://www.healthit.gov\"\n }\n ]\n },\n {\n \"name\": \"HL7\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"The Data Access Framework (DAF) Initiative leverages the HL7 FHIR standards to standardize access to Meaningful Use Stage 2 structured information both within the organization and from external organizations\",\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"copyright\": \"Published by ONC under the standard FHIR license (CC0)\",\n \"packageId\": \"hl7.fhir.us.daf\",\n \"license\": \"CC0-1.0\",\n \"fhirVersion\": [\n \"4.0.1\"\n ],\n \"dependsOn\": [\n {\n \"uri\": \"http://hl7.org/fhir/ImplementationGuide/uscore\"\n }\n ],\n \"global\": [\n {\n \"type\": \"Patient\",\n \"profile\": \"http://hl7.org/fhir/us/core/StructureDefinition/patient\"\n }\n ],\n \"definition\": {\n \"grouping\": [\n {\n \"name\": \"test\",\n \"description\": \"Base package (not broken up into multiple packages)\"\n }\n ],\n \"resource\": [\n {\n \"reference\": {\n \"reference\": \"Patient/test\"\n },\n \"name\": \"Test Example\",\n \"description\": \"A test example to show how an implementation guide works\",\n \"exampleCanonical\": \"http://hl7.org/fhir/us/core/StructureDefinition/patient\"\n }\n ],\n \"page\": {\n \"nameUrl\": \"patient-example.html\",\n \"title\": \"Example Patient Page\",\n \"generation\": \"html\",\n \"page\": [\n {\n \"nameUrl\": \"list.html\",\n \"title\": \"Value Set Page\",\n \"generation\": \"html\"\n }\n ]\n },\n \"parameter\": [\n {\n \"code\": \"apply\",\n \"value\": \"version\"\n }\n ]\n },\n \"manifest\": {\n \"rendering\": \"http://hl7.org/fhir/us/daf\",\n \"resource\": [\n {\n \"reference\": {\n \"reference\": \"Patient/test\"\n },\n \"exampleCanonical\": \"http://hl7.org/fhir/us/core/StructureDefinition/patient\",\n \"relativePath\": \"patient-test.html#patient-test\"\n }\n ],\n \"page\": [\n {\n \"name\": \"patient-test.html\",\n \"title\": \"Test Patient Example\",\n \"anchor\": [\n \"patient-test\",\n \"tx\",\n \"uml\"\n ]\n }\n ],\n \"image\": [\n \"fhir.png\"\n ],\n \"other\": [\n \"fhir.css\"\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ImplementationGuide/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImplementationGuide", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImplementationGuideById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImplementationGuide/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImplementationGuide", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ImplementationGuide_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ImplementationGuide\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/us/daf\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Data Access Framework (DAF)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 01/01/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: ONC / HL7 Joint project\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: , \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: The Data Access Framework (DAF) Initiative leverages the HL7 FHIR standards to standardize access to Meaningful Use Stage 2 structured information both within the organization and from external organizations\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United States of America \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027US\\u0027 \\u003d \\u0027United States of America)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecopyright\\u003c/b\\u003e: Published by ONC under the standard FHIR license (CC0)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epackageId\\u003c/b\\u003e: hl7.fhir.us.daf\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elicense\\u003c/b\\u003e: CC0-1.0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efhirVersion\\u003c/b\\u003e: 4.0.1\\u003c/p\\u003e\\u003ch3\\u003eDependsOns\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUri\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/ImplementationGuide/uscore\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eGlobals\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eProfile\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/us/core/StructureDefinition/patient\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003edefinition\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eGroupings\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etest\\u003c/td\\u003e\\u003ctd\\u003eBase package (not broken up into multiple packages)\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eResources\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReference\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eExample[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/test\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eTest Example\\u003c/td\\u003e\\u003ctd\\u003eA test example to show how an implementation guide works\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/us/core/StructureDefinition/patient\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003epage\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: \\u003ca\\u003epatient-example.html\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etitle\\u003c/b\\u003e: Example Patient Page\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003egeneration\\u003c/b\\u003e: html\\u003c/p\\u003e\\u003ch3\\u003ePages\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003ch3\\u003eParameters\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eValue\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eapply\\u003c/td\\u003e\\u003ctd\\u003eversion\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003emanifest\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erendering\\u003c/b\\u003e: \\u003ca\\u003ehttp://hl7.org/fhir/us/daf\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eResources\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReference\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eExample[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRelativePath\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/test\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/us/core/StructureDefinition/patient\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003epatient-test.html#patient-test\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003ePages\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTitle\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAnchor\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epatient-test.html\\u003c/td\\u003e\\u003ctd\\u003eTest Patient Example\\u003c/td\\u003e\\u003ctd\\u003epatient-test\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eimage\\u003c/b\\u003e: fhir.png\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eother\\u003c/b\\u003e: fhir.css\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/us/daf\",\n \"version\": \"0\",\n \"name\": \"Data Access Framework (DAF)\",\n \"status\": \"draft\",\n \"experimental\": false,\n \"date\": \"2015-01-01\",\n \"publisher\": \"ONC / HL7 Joint project\",\n \"contact\": [\n {\n \"name\": \"ONC\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://www.healthit.gov\"\n }\n ]\n },\n {\n \"name\": \"HL7\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"The Data Access Framework (DAF) Initiative leverages the HL7 FHIR standards to standardize access to Meaningful Use Stage 2 structured information both within the organization and from external organizations\",\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"copyright\": \"Published by ONC under the standard FHIR license (CC0)\",\n \"packageId\": \"hl7.fhir.us.daf\",\n \"license\": \"CC0-1.0\",\n \"fhirVersion\": [\n \"4.0.1\"\n ],\n \"dependsOn\": [\n {\n \"uri\": \"http://hl7.org/fhir/ImplementationGuide/uscore\"\n }\n ],\n \"global\": [\n {\n \"type\": \"Patient\",\n \"profile\": \"http://hl7.org/fhir/us/core/StructureDefinition/patient\"\n }\n ],\n \"definition\": {\n \"grouping\": [\n {\n \"name\": \"test\",\n \"description\": \"Base package (not broken up into multiple packages)\"\n }\n ],\n \"resource\": [\n {\n \"reference\": {\n \"reference\": \"Patient/test\"\n },\n \"name\": \"Test Example\",\n \"description\": \"A test example to show how an implementation guide works\",\n \"exampleCanonical\": \"http://hl7.org/fhir/us/core/StructureDefinition/patient\"\n }\n ],\n \"page\": {\n \"nameUrl\": \"patient-example.html\",\n \"title\": \"Example Patient Page\",\n \"generation\": \"html\",\n \"page\": [\n {\n \"nameUrl\": \"list.html\",\n \"title\": \"Value Set Page\",\n \"generation\": \"html\"\n }\n ]\n },\n \"parameter\": [\n {\n \"code\": \"apply\",\n \"value\": \"version\"\n }\n ]\n },\n \"manifest\": {\n \"rendering\": \"http://hl7.org/fhir/us/daf\",\n \"resource\": [\n {\n \"reference\": {\n \"reference\": \"Patient/test\"\n },\n \"exampleCanonical\": \"http://hl7.org/fhir/us/core/StructureDefinition/patient\",\n \"relativePath\": \"patient-test.html#patient-test\"\n }\n ],\n \"page\": [\n {\n \"name\": \"patient-test.html\",\n \"title\": \"Test Patient Example\",\n \"anchor\": [\n \"patient-test\",\n \"tx\",\n \"uml\"\n ]\n }\n ],\n \"image\": [\n \"fhir.png\"\n ],\n \"other\": [\n \"fhir.css\"\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ImplementationGuide", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImplementationGuide" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImplementationGuide_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImplementationGuide?resource=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&dependency=&description=&experimental=&jurisdiction=&name=&publisher=&status=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImplementationGuide" - ], - "query": [ - { - "key": "resource", - "value": "", - "description": "Location of the resource" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "The implementation guide publication date" - }, - { - "key": "dependency", - "value": "", - "description": "Where to find dependency" - }, - { - "key": "description", - "value": "", - "description": "The description of the implementation guide" - }, - { - "key": "experimental", - "value": "", - "description": "For testing purposes, not real usage" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the implementation guide" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the implementation guide" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the implementation guide" - }, - { - "key": "status", - "value": "", - "description": "The current status of the implementation guide" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the implementation guide" - }, - { - "key": "version", - "value": "", - "description": "The business version of the implementation guide" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ImplementationGuideHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ImplementationGuide/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ImplementationGuide", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Library", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "LibraryHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Library/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Library", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "LibraryHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Library/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Library", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "LibraryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Library/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Library", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "LibraryById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Library\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eLibrary/example\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eIdentifier: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003eChalmydiaScreening_Common\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eVersion: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e2.0.0\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTitle: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eChlamydia Screening Common Library\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eType: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003elogic-library\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003edraft\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDescription: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eCommon Logic for adherence to Chlamydia Screening guidelines\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTopic: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eChlamydia Screening\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eRelated: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003edepends-on\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eResource: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003eLibrary/library-quick-model-definition\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eData Requirements: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cdiv\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003eCondition\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode filter:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003epath: \\u003c/b\\u003e\\n \\u003cspan\\u003ecode\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalueset: \\u003c/b\\u003e\\n \\u003cspan\\u003eOther Female Reproductive Conditions\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/div\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContent: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003etext/cql\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eurl: \\u003c/b\\u003e\\n \\u003cspan\\u003elibrary-example-content.cql\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"value\": \"ChalmydiaScreening_Common\"\n }\n ],\n \"version\": \"2.0.0\",\n \"title\": \"Chlamydia Screening Common Library\",\n \"status\": \"draft\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"logic-library\"\n }\n ]\n },\n \"date\": \"2015-07-22\",\n \"description\": \"Common Logic for adherence to Chlamydia Screening guidelines\",\n \"topic\": [\n {\n \"text\": \"Chlamydia Screening\"\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"depends-on\",\n \"resource\": \"Library/library-quick-model-definition\"\n }\n ],\n \"dataRequirement\": [\n {\n \"type\": \"Condition\",\n \"codeFilter\": [\n {\n \"path\": \"code\",\n \"valueSet\": \"urn:oid:2.16.840.1.113883.3.464.1003.111.12.1006\"\n }\n ]\n }\n ],\n \"content\": [\n {\n \"contentType\": \"text/cql\",\n \"url\": \"library-example-content.cql\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Library/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Library", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "LibraryById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Library/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Library", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Library_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Library\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eLibrary/example\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eIdentifier: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003eChalmydiaScreening_Common\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eVersion: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e2.0.0\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTitle: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eChlamydia Screening Common Library\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eType: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003elogic-library\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003edraft\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDescription: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eCommon Logic for adherence to Chlamydia Screening guidelines\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTopic: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eChlamydia Screening\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eRelated: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003edepends-on\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eResource: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003eLibrary/library-quick-model-definition\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eData Requirements: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cdiv\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003eCondition\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode filter:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003epath: \\u003c/b\\u003e\\n \\u003cspan\\u003ecode\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalueset: \\u003c/b\\u003e\\n \\u003cspan\\u003eOther Female Reproductive Conditions\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/div\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContent: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003etext/cql\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eurl: \\u003c/b\\u003e\\n \\u003cspan\\u003elibrary-example-content.cql\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"value\": \"ChalmydiaScreening_Common\"\n }\n ],\n \"version\": \"2.0.0\",\n \"title\": \"Chlamydia Screening Common Library\",\n \"status\": \"draft\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"logic-library\"\n }\n ]\n },\n \"date\": \"2015-07-22\",\n \"description\": \"Common Logic for adherence to Chlamydia Screening guidelines\",\n \"topic\": [\n {\n \"text\": \"Chlamydia Screening\"\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"depends-on\",\n \"resource\": \"Library/library-quick-model-definition\"\n }\n ],\n \"dataRequirement\": [\n {\n \"type\": \"Condition\",\n \"codeFilter\": [\n {\n \"path\": \"code\",\n \"valueSet\": \"urn:oid:2.16.840.1.113883.3.464.1003.111.12.1006\"\n }\n ]\n }\n ],\n \"content\": [\n {\n \"contentType\": \"text/cql\",\n \"url\": \"library-example-content.cql\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Library", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Library" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Library_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Library?composed-of=&depends-on=&derived-from=&predecessor=&successor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&effective=&identifier=&jurisdiction=&name=&publisher=&status=&title=&topic=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Library" - ], - "query": [ - { - "key": "composed-of", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "depends-on", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "derived-from", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "predecessor", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "successor", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "The library publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the library" - }, - { - "key": "effective", - "value": "", - "description": "The time during which the library is intended to be in use" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the library" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the library" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the library" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the library" - }, - { - "key": "status", - "value": "", - "description": "The current status of the library" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the library" - }, - { - "key": "topic", - "value": "", - "description": "Topics associated with the module" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the library" - }, - { - "key": "version", - "value": "", - "description": "The business version of the library" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "LibraryHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Library/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Library", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Linkage", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "LinkageHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Linkage/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Linkage", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "LinkageHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Linkage/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Linkage", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "LinkageById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Linkage/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Linkage", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "LinkageById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Linkage\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eSource:\\u003c/b\\u003e Condition/example - \\u003ci\\u003eSevere burn of left ear (Date: 24-May 2012)\\u003c/i\\u003e\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eAlternate:\\u003c/b\\u003e Condition/condition-example - \\u003ci\\u003eSevere burn of left ear (Date: 24-May 2012)\\u003c/i\\u003e\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"author\": {\n \"reference\": \"Practitioner/f201\"\n },\n \"item\": [\n {\n \"type\": \"source\",\n \"resource\": {\n \"reference\": \"Condition/example\",\n \"display\": \"Severe burn of left ear (Date: 24-May 2012)\"\n }\n },\n {\n \"type\": \"alternate\",\n \"resource\": {\n \"reference\": \"Condition/condition-example\",\n \"display\": \"Severe burn of left ear (Date: 24-May 2012)\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Linkage/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Linkage", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "LinkageById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Linkage/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Linkage", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Linkage_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Linkage\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eSource:\\u003c/b\\u003e Condition/example - \\u003ci\\u003eSevere burn of left ear (Date: 24-May 2012)\\u003c/i\\u003e\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eAlternate:\\u003c/b\\u003e Condition/condition-example - \\u003ci\\u003eSevere burn of left ear (Date: 24-May 2012)\\u003c/i\\u003e\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"author\": {\n \"reference\": \"Practitioner/f201\"\n },\n \"item\": [\n {\n \"type\": \"source\",\n \"resource\": {\n \"reference\": \"Condition/example\",\n \"display\": \"Severe burn of left ear (Date: 24-May 2012)\"\n }\n },\n {\n \"type\": \"alternate\",\n \"resource\": {\n \"reference\": \"Condition/condition-example\",\n \"display\": \"Severe burn of left ear (Date: 24-May 2012)\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Linkage", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Linkage" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Linkage_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Linkage?author=&_id=&_lastUpdated=&_profile=&_security=&_tag=&item=&source=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Linkage" - ], - "query": [ - { - "key": "author", - "value": "", - "description": "Author of the Linkage" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "item", - "value": "", - "description": "Matches on any item in the Linkage" - }, - { - "key": "source", - "value": "", - "description": "Matches on any item in the Linkage with a type of 'source'" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "LinkageHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Linkage/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Linkage", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "List", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ListHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/List/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "List", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ListHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/List/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "List", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ListById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/List/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "List", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ListById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"List\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable\\u003e\\n \\u003cthead\\u003e\\n \\u003ctr\\u003e\\n \\u003cth\\u003eCondition\\u003c/th\\u003e\\n \\u003cth\\u003eSeverity\\u003c/th\\u003e\\n \\u003cth\\u003eDate\\u003c/th\\u003e\\n \\u003cth\\u003eLocation\\u003c/th\\u003e\\n \\u003cth\\u003eStatus\\u003c/th\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/thead\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eBurnt Ear\\u003c/td\\u003e\\n \\u003ctd\\u003eSevere\\u003c/td\\u003e\\n \\u003ctd\\u003e24-May 2012\\u003c/td\\u003e\\n \\u003ctd\\u003eLeft Ear\\u003c/td\\u003e\\n \\u003ctd\\u003edeleted\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eAsthma\\u003c/td\\u003e\\n \\u003ctd\\u003eMild\\u003c/td\\u003e\\n \\u003ctd\\u003e21-Nov 2012\\u003c/td\\u003e\\n \\u003ctd\\u003e--\\u003c/td\\u003e\\n \\u003ctd\\u003eadded\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:uuid:a9fcea7c-fcdf-4d17-a5e0-f26dda030b59\",\n \"value\": \"23974652\"\n }\n ],\n \"status\": \"current\",\n \"mode\": \"changes\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"date\": \"2012-11-25T22:17:00+11:00\",\n \"source\": {\n \"reference\": \"Patient/example\"\n },\n \"entry\": [\n {\n \"flag\": {\n \"text\": \"Deleted due to error\"\n },\n \"deleted\": true,\n \"item\": {\n \"reference\": \"Condition/example\"\n }\n },\n {\n \"flag\": {\n \"text\": \"Added\"\n },\n \"item\": {\n \"reference\": \"Condition/example2\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/List/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "List", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ListById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/List/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "List", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "List_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"List\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable\\u003e\\n \\u003cthead\\u003e\\n \\u003ctr\\u003e\\n \\u003cth\\u003eCondition\\u003c/th\\u003e\\n \\u003cth\\u003eSeverity\\u003c/th\\u003e\\n \\u003cth\\u003eDate\\u003c/th\\u003e\\n \\u003cth\\u003eLocation\\u003c/th\\u003e\\n \\u003cth\\u003eStatus\\u003c/th\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/thead\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eBurnt Ear\\u003c/td\\u003e\\n \\u003ctd\\u003eSevere\\u003c/td\\u003e\\n \\u003ctd\\u003e24-May 2012\\u003c/td\\u003e\\n \\u003ctd\\u003eLeft Ear\\u003c/td\\u003e\\n \\u003ctd\\u003edeleted\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eAsthma\\u003c/td\\u003e\\n \\u003ctd\\u003eMild\\u003c/td\\u003e\\n \\u003ctd\\u003e21-Nov 2012\\u003c/td\\u003e\\n \\u003ctd\\u003e--\\u003c/td\\u003e\\n \\u003ctd\\u003eadded\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:uuid:a9fcea7c-fcdf-4d17-a5e0-f26dda030b59\",\n \"value\": \"23974652\"\n }\n ],\n \"status\": \"current\",\n \"mode\": \"changes\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"date\": \"2012-11-25T22:17:00+11:00\",\n \"source\": {\n \"reference\": \"Patient/example\"\n },\n \"entry\": [\n {\n \"flag\": {\n \"text\": \"Deleted due to error\"\n },\n \"deleted\": true,\n \"item\": {\n \"reference\": \"Condition/example\"\n }\n },\n {\n \"flag\": {\n \"text\": \"Added\"\n },\n \"item\": {\n \"reference\": \"Condition/example2\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/List", - "host": [ - "{{API_URL}}" - ], - "path": [ - "List" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "List_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/List?patient=&encounter=&item=&source=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&identifier=&empty-reason=¬es=&status=&title=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "List" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "encounter", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" - }, - { - "key": "item", - "value": "", - "description": "Actual entry" - }, - { - "key": "source", - "value": "", - "description": "Who and/or what defined the list contents (aka Author)" - }, - { - "key": "subject", - "value": "", - "description": "If all resources have the same subject" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "empty-reason", - "value": "", - "description": "Why list is empty" - }, - { - "key": "notes", - "value": "", - "description": "The annotation - text content" - }, - { - "key": "status", - "value": "", - "description": "current | retired | entered-in-error" - }, - { - "key": "title", - "value": "", - "description": "Descriptive name for the list" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ListHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/List/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "List", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Location", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "LocationHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Location/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Location", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "LocationHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Location/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Location", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "LocationById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Location/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Location", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "LocationById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Location\",\n \"id\": \"1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eBurgers UMC, South Wing, second floor\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"B1-S.F2\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"South Wing, second floor\",\n \"alias\": [\n \"BU MC, SW, F2\",\n \"Burgers University Medical Center, South Wing, second floor\"\n ],\n \"description\": \"Second floor of the Old South Wing, formerly in use by Psychiatry\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"2328\",\n \"use\": \"work\"\n },\n {\n \"system\": \"fax\",\n \"value\": \"2329\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"second wing admissions\"\n },\n {\n \"system\": \"url\",\n \"value\": \"http://sampleorg.com/southwing\",\n \"use\": \"work\"\n }\n ],\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Galapagosweg 91, Building A\"\n ],\n \"city\": \"Den Burg\",\n \"postalCode\": \"9105 PZ\",\n \"country\": \"NLD\"\n },\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"wi\",\n \"display\": \"Wing\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -83.6945691,\n \"latitude\": 42.25475478,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/f001\"\n },\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Location/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Location", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "LocationById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Location/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Location", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Location_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Location\",\n \"id\": \"1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eBurgers UMC, South Wing, second floor\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"B1-S.F2\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"South Wing, second floor\",\n \"alias\": [\n \"BU MC, SW, F2\",\n \"Burgers University Medical Center, South Wing, second floor\"\n ],\n \"description\": \"Second floor of the Old South Wing, formerly in use by Psychiatry\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"2328\",\n \"use\": \"work\"\n },\n {\n \"system\": \"fax\",\n \"value\": \"2329\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"second wing admissions\"\n },\n {\n \"system\": \"url\",\n \"value\": \"http://sampleorg.com/southwing\",\n \"use\": \"work\"\n }\n ],\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Galapagosweg 91, Building A\"\n ],\n \"city\": \"Den Burg\",\n \"postalCode\": \"9105 PZ\",\n \"country\": \"NLD\"\n },\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"wi\",\n \"display\": \"Wing\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -83.6945691,\n \"latitude\": 42.25475478,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/f001\"\n },\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Location", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Location" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Location_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Location?endpoint=&organization=&partof=&_id=&_lastUpdated=&_profile=&_security=&_tag=&address=&address-city=&address-country=&address-postalcode=&address-state=&address-use=&identifier=&name=&near=&near-distance=&operational-status=&status=&type=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Location" - ], - "query": [ - { - "key": "endpoint", - "value": "", - "description": "Technical endpoints providing access to services operated for the location" - }, - { - "key": "organization", - "value": "", - "description": "Searches for locations that are managed by the provided organization" - }, - { - "key": "partof", - "value": "", - "description": "A location of which this location is a part" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "address", - "value": "", - "description": "A (part of the) address of the location" - }, - { - "key": "address-city", - "value": "", - "description": "A city specified in an address" - }, - { - "key": "address-country", - "value": "", - "description": "A country specified in an address" - }, - { - "key": "address-postalcode", - "value": "", - "description": "A postal code specified in an address" - }, - { - "key": "address-state", - "value": "", - "description": "A state specified in an address" - }, - { - "key": "address-use", - "value": "", - "description": "A use code specified in an address" - }, - { - "key": "identifier", - "value": "", - "description": "An identifier for the location" - }, - { - "key": "name", - "value": "", - "description": "A portion of the location's name or alias" - }, - { - "key": "near", - "value": "", - "description": "The coordinates expressed as [latitude]:[longitude] (using the WGS84 datum, see notes) to find locations near to (servers may search using a square rather than a circle for efficiency)\n\nRequires the near-distance parameter to be provided also" - }, - { - "key": "near-distance", - "value": "", - "description": "A distance quantity to limit the near search to locations within a specific distance\n\nRequires the near parameter to also be included" - }, - { - "key": "operational-status", - "value": "", - "description": "Searches for locations (typically bed/room) that have an operational status (e.g. contaminated, housekeeping)" - }, - { - "key": "status", - "value": "", - "description": "Searches for locations with a specific kind of status" - }, - { - "key": "type", - "value": "", - "description": "A code for the type of location" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "LocationHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Location/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Location", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Measure", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "MeasureHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Measure/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Measure", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MeasureHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Measure/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Measure", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MeasureById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Measure/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Measure", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MeasureById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Measure\",\n \"id\": \"measure-cms146-example\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eId: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eMeasure/measure-cms146-example\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eIdentifier: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003esystem: \\u003c/b\\u003e\\u003cspan\\u003ehttp://hl7.org/fhir/cqi/ecqm/Measure/Identifier/cms\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003e146\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eIdentifier: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003esystem: \\u003c/b\\u003e\\u003cspan\\u003ehttp://hl7.org/fhir/cqi/ecqm/Measure/Identifier/nqf\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003e0002\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eTitle: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eAppropriate Testing for Children with Pharyngitis\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eStatus: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eactive\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003ePercentage of children 2-18 years of age who were diagnosed with pharyngitis, ordered an antibiotic and received a group A streptococcus (strep) test for the episode.\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003ePurpose: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eThe Infectious Diseases Society of America (IDSA) \\u0026quot;recommends swabbing the throat and testing for GAS pharyngitis by rapid antigen detection test (RADT) and/or culture because the clinical features alone do not reliably discriminate between GAS and viral pharyngitis except when overt viral features like rhinorrhea, cough, oral ulcers, and/or hoarseness are present\\u0026quot;\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eTopic: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\u003cspan\\u003e\\u003cspan\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003esystem: \\u003c/b\\u003e\\u003cspan\\u003ehttp://loinc.org\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecode: \\u003c/b\\u003e\\u003cspan\\u003e57024-2\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eLibrary: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003ereference: \\u003c/b\\u003e\\u003cspan\\u003eLibrary/library-cms146-example\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eScoring: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eproportion\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eType: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eprocess\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eGroup:\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003eCMS146-group-1\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003ePopulation:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003etype:\\u003c/b\\u003e\\u003cspan\\u003einitial-population\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003einitial-population-identifier\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecriteria: \\u003c/b\\u003e\\u003cspan\\u003eCMS146.InInitialPopulation\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003ePopulation:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003etype:\\u003c/b\\u003e\\u003cspan\\u003enumerator\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003enumerator-identifier\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecriteria: \\u003c/b\\u003e\\u003cspan\\u003eCMS146.InNumerator\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003ePopulation:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003etype:\\u003c/b\\u003e\\u003cspan\\u003edenominator\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003edenominator-identifier\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecriteria: \\u003c/b\\u003e\\u003cspan\\u003eCMS146.InDenominator\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003ePopulation:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003etype:\\u003c/b\\u003e\\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003edenominator-exclusions-identifier\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecriteria: \\u003c/b\\u003e\\u003cspan\\u003eCMS146.InDenominatorExclusions\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003eStratifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003estratifier-ages-up-to-9\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecriteria: \\u003c/b\\u003e\\u003cspan\\u003eCMS146.AgesUpToNine\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003eStratifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003estratifier-ages-10-plus\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecriteria: \\u003c/b\\u003e\\u003cspan\\u003eCMS146.AgesTenPlus\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003eStratifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003estratifier-ages-up-to-9\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003epath: \\u003c/b\\u003e\\u003cspan\\u003ePatient.gender\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eSupplemental Data:\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003esupplemental-data-gender\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003epath: \\u003c/b\\u003e\\u003cspan\\u003ePatient.gender\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eSupplemental Data:\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003esupplemental-data-deceased\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003epath: \\u003c/b\\u003e\\u003cspan\\u003edeceasedBoolean\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/Measure/measure-cms146-example\",\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://hl7.org/fhir/cqi/ecqm/Measure/Identifier/cms\",\n \"value\": \"146\"\n },\n {\n \"use\": \"official\",\n \"system\": \"http://hl7.org/fhir/cqi/ecqm/Measure/Identifier/nqf\",\n \"value\": \"0002\"\n }\n ],\n \"version\": \"1.0.0\",\n \"name\": \"CMS146\",\n \"title\": \"Appropriate Testing for Children with Pharyngitis\",\n \"status\": \"active\",\n \"experimental\": true,\n \"date\": \"2017-03-10\",\n \"publisher\": \"National Committee for Quality Assurance\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://www.ncqa.org/\"\n }\n ]\n }\n ],\n \"description\": \"Percentage of children 3-18 years of age who were diagnosed with pharyngitis, ordered an antibiotic and received a group A streptococcus (strep) test for the episode.\",\n \"useContext\": [\n {\n \"code\": {\n \"code\": \"program\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"eligibile-provider\"\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueRange\": {\n \"low\": {\n \"value\": 3,\n \"unit\": \"a\"\n },\n \"high\": {\n \"value\": 18,\n \"unit\": \"a\"\n }\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"Measure of children with a group A streptococcus test in the 7-day period from 3 days prior through 3 days after the diagnosis of pharyngitis\",\n \"copyright\": \"Physician Performance Measure (Measures) and related data specifications were developed by the National Committee for Quality Assurance (NCQA). The Measures are copyrighted but can be reproduced and distributed, without modification, for noncommercial purposes (eg, use by healthcare providers in connection with their practices). Commercial use is defined as the sale, licensing, or distribution of the Measures for commercial gain, or incorporation of the Measures into a product or service that is sold, licensed or distributed for commercial gain. Commercial use of the Measures requires a license agreement between the user and NCQA. NCQA is not responsible for any use of the Measures. (c) 2008-2016 National Committee for Quality Assurance. All Rights Reserved. Limited proprietary coding is contained in the Measure specifications for user convenience. Users of proprietary code sets should obtain all necessary licenses from the owners of the code sets. NCQA disclaims all liability for use or accuracy of any CPT or other codes contained in the specifications. CPT(R) contained in the Measure specifications is copyright 2004-2015 American Medical Association. LOINC(R) copyright 2004-2015 Regenstrief Institute, Inc. This material contains SNOMED Clinical Terms(R) (SNOMED CT[R]) copyright 2004-2015 International Health Terminology Standards Development Organisation. ICD-10 copyright 2015 World Health Organization. All Rights Reserved.\",\n \"approvalDate\": \"2016-01-01\",\n \"lastReviewDate\": \"2016-09-01\",\n \"effectivePeriod\": {\n \"start\": \"2017-01-01\",\n \"end\": \"2017-12-31\"\n },\n \"topic\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57024-2\"\n }\n ]\n }\n ],\n \"author\": [\n {\n \"name\": \"National Committee for Quality Assurance\"\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"documentation\",\n \"citation\": \"Linder, J.A., D.W. Bates, G.M. Lee, J.A. Finkelstein. 2005. _Antibiotic treatment of children with sore throat._ JAMA 294(18):2315-2322. \"\n },\n {\n \"type\": \"documentation\",\n \"citation\": \"Infectious Diseases Society of America. 2012. _Clinical Practice Guideline for the Diagnosis and Management of Group A Streptococcal Pharyngitis: 2012 Update._ \"\n },\n {\n \"type\": \"documentation\",\n \"citation\": \"Roberts, R.R., B. Hota, I. Ahmad, et al. _Hospital and Societal Costs of Antimicrobial-Resistant Infections in a Chicago Teaching Hospital: Implications for Antibiotic Stewardship._ Clin Infect Dis. Oct 2009; 49(8):1175-84.\"\n }\n ],\n \"library\": [\n \"Library/library-cms146-example\"\n ],\n \"disclaimer\": \"These performance Measures are not clinical guidelines and do not establish a standard of medical care, and have not been tested for all potential applications. THE MEASURES AND SPECIFICATIONS ARE PROVIDED \\\"AS IS\\\" WITHOUT WARRANTY OF ANY KIND. Due to technical limitations, registered trademarks are indicated by (R) or [R] and unregistered trademarks are indicated by (TM) or [TM].\",\n \"scoring\": {\n \"coding\": [\n {\n \"code\": \"proportion\"\n }\n ]\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"process\"\n }\n ]\n }\n ],\n \"rationale\": \"Group A streptococcal bacterial infections and other infections that cause pharyngitis (which are most often viral) often produce the same signs and symptoms (IDSA 2002). The American Academy of Pediatrics, the Centers for Disease Control and Prevention, and the Infectious Diseases Society of America all recommend a diagnostic test for Strep A to improve diagnostic accuracy and avoid unnecessary antibiotic treatment (Linder et al. 2005). Estimated economic costs of pediatric streptococcal pharyngitis in the United States range from $224 million to $539 million per year, including indirect costs related to parental work losses. At a higher level, the economic cost of antibiotic resistance vary but have extended as high as $20 billion in excess direct healthcare costs, with additional costs to society for lost productivity as high as $35 billion a year (2008 dollars) (Roberts et al. 2009).\",\n \"clinicalRecommendationStatement\": \"The Infectious Diseases Society of America (IDSA) \\\"recommends swabbing the throat and testing for GAS pharyngitis by rapid antigen detection test (RADT) and/or culture because the clinical features alone do not reliably discriminate between GAS and viral pharyngitis except when overt viral features like rhinorrhea, cough, oral ulcers, and/or hoarseness are present\\\"\",\n \"improvementNotation\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/measure-improvement-notation\",\n \"code\": \"increase\"\n }\n ]\n },\n \"guidance\": \"This is an episode of care measure that examines all eligible episodes for the patient during the measurement period. If the patient has more than one episode, include all episodes in the measure\",\n \"group\": [\n {\n \"id\": \"CMS146-group-1\",\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"criteria\": {\n \"language\": \"text/cql\",\n \"expression\": \"CMS146.InInitialPopulation\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"criteria\": {\n \"language\": \"text/cql\",\n \"expression\": \"CMS146.InNumerator\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"criteria\": {\n \"language\": \"text/cql\",\n \"expression\": \"CMS146.InDenominator\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"criteria\": {\n \"language\": \"text/cql\",\n \"expression\": \"CMS146.InDenominatorExclusions\"\n }\n }\n ],\n \"stratifier\": [\n {\n \"code\": {\n \"text\": \"stratifier-ages-up-to-9\"\n },\n \"criteria\": {\n \"language\": \"text/cql\",\n \"expression\": \"CMS146.AgesUpToNine\"\n }\n },\n {\n \"code\": {\n \"text\": \"stratifier-ages-10-plus\"\n },\n \"criteria\": {\n \"language\": \"text/cql\",\n \"expression\": \"CMS146.AgesTenPlus\"\n }\n },\n {\n \"code\": {\n \"text\": \"stratifier-gender\"\n },\n \"criteria\": {\n \"language\": \"text/fhirpath\",\n \"expression\": \"Patient.gender\"\n }\n }\n ]\n }\n ],\n \"supplementalData\": [\n {\n \"code\": {\n \"text\": \"supplemental-data-gender\"\n },\n \"criteria\": {\n \"language\": \"text/fhirpath\",\n \"expression\": \"Patient.gender\"\n }\n },\n {\n \"code\": {\n \"text\": \"supplemental-data-deceased\"\n },\n \"criteria\": {\n \"language\": \"text/fhirpath\",\n \"expression\": \"deceasedBoolean\"\n }\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/Measure/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Measure", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MeasureById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Measure/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Measure", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Measure_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Measure\",\n \"id\": \"measure-cms146-example\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eId: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eMeasure/measure-cms146-example\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eIdentifier: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003esystem: \\u003c/b\\u003e\\u003cspan\\u003ehttp://hl7.org/fhir/cqi/ecqm/Measure/Identifier/cms\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003e146\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eIdentifier: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003esystem: \\u003c/b\\u003e\\u003cspan\\u003ehttp://hl7.org/fhir/cqi/ecqm/Measure/Identifier/nqf\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003e0002\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eTitle: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eAppropriate Testing for Children with Pharyngitis\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eStatus: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eactive\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003ePercentage of children 2-18 years of age who were diagnosed with pharyngitis, ordered an antibiotic and received a group A streptococcus (strep) test for the episode.\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003ePurpose: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eThe Infectious Diseases Society of America (IDSA) \\u0026quot;recommends swabbing the throat and testing for GAS pharyngitis by rapid antigen detection test (RADT) and/or culture because the clinical features alone do not reliably discriminate between GAS and viral pharyngitis except when overt viral features like rhinorrhea, cough, oral ulcers, and/or hoarseness are present\\u0026quot;\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eTopic: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\u003cspan\\u003e\\u003cspan\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003esystem: \\u003c/b\\u003e\\u003cspan\\u003ehttp://loinc.org\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecode: \\u003c/b\\u003e\\u003cspan\\u003e57024-2\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eLibrary: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003ereference: \\u003c/b\\u003e\\u003cspan\\u003eLibrary/library-cms146-example\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eScoring: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eproportion\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eType: \\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eprocess\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eGroup:\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003eCMS146-group-1\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003ePopulation:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003etype:\\u003c/b\\u003e\\u003cspan\\u003einitial-population\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003einitial-population-identifier\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecriteria: \\u003c/b\\u003e\\u003cspan\\u003eCMS146.InInitialPopulation\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003ePopulation:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003etype:\\u003c/b\\u003e\\u003cspan\\u003enumerator\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003enumerator-identifier\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecriteria: \\u003c/b\\u003e\\u003cspan\\u003eCMS146.InNumerator\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003ePopulation:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003etype:\\u003c/b\\u003e\\u003cspan\\u003edenominator\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003edenominator-identifier\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecriteria: \\u003c/b\\u003e\\u003cspan\\u003eCMS146.InDenominator\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003ePopulation:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003etype:\\u003c/b\\u003e\\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003edenominator-exclusions-identifier\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecriteria: \\u003c/b\\u003e\\u003cspan\\u003eCMS146.InDenominatorExclusions\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003eStratifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003estratifier-ages-up-to-9\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecriteria: \\u003c/b\\u003e\\u003cspan\\u003eCMS146.AgesUpToNine\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003eStratifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003estratifier-ages-10-plus\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003ecriteria: \\u003c/b\\u003e\\u003cspan\\u003eCMS146.AgesTenPlus\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cb\\u003eStratifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003estratifier-ages-up-to-9\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px; padding-left: 25px;\\\"\\u003e\\u003cb\\u003epath: \\u003c/b\\u003e\\u003cspan\\u003ePatient.gender\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp/\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eSupplemental Data:\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003esupplemental-data-gender\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003epath: \\u003c/b\\u003e\\u003cspan\\u003ePatient.gender\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\u003ctr\\u003e\\u003ctd\\u003e\\u003cb\\u003eSupplemental Data:\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003eIdentifier:\\u003c/b\\u003e\\u003cbr/\\u003e\\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\u003cb\\u003evalue: \\u003c/b\\u003e\\u003cspan\\u003esupplemental-data-deceased\\u003c/span\\u003e\\u003cbr/\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\u003cb\\u003epath: \\u003c/b\\u003e\\u003cspan\\u003edeceasedBoolean\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/Measure/measure-cms146-example\",\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://hl7.org/fhir/cqi/ecqm/Measure/Identifier/cms\",\n \"value\": \"146\"\n },\n {\n \"use\": \"official\",\n \"system\": \"http://hl7.org/fhir/cqi/ecqm/Measure/Identifier/nqf\",\n \"value\": \"0002\"\n }\n ],\n \"version\": \"1.0.0\",\n \"name\": \"CMS146\",\n \"title\": \"Appropriate Testing for Children with Pharyngitis\",\n \"status\": \"active\",\n \"experimental\": true,\n \"date\": \"2017-03-10\",\n \"publisher\": \"National Committee for Quality Assurance\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://www.ncqa.org/\"\n }\n ]\n }\n ],\n \"description\": \"Percentage of children 3-18 years of age who were diagnosed with pharyngitis, ordered an antibiotic and received a group A streptococcus (strep) test for the episode.\",\n \"useContext\": [\n {\n \"code\": {\n \"code\": \"program\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"eligibile-provider\"\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueRange\": {\n \"low\": {\n \"value\": 3,\n \"unit\": \"a\"\n },\n \"high\": {\n \"value\": 18,\n \"unit\": \"a\"\n }\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"Measure of children with a group A streptococcus test in the 7-day period from 3 days prior through 3 days after the diagnosis of pharyngitis\",\n \"copyright\": \"Physician Performance Measure (Measures) and related data specifications were developed by the National Committee for Quality Assurance (NCQA). The Measures are copyrighted but can be reproduced and distributed, without modification, for noncommercial purposes (eg, use by healthcare providers in connection with their practices). Commercial use is defined as the sale, licensing, or distribution of the Measures for commercial gain, or incorporation of the Measures into a product or service that is sold, licensed or distributed for commercial gain. Commercial use of the Measures requires a license agreement between the user and NCQA. NCQA is not responsible for any use of the Measures. (c) 2008-2016 National Committee for Quality Assurance. All Rights Reserved. Limited proprietary coding is contained in the Measure specifications for user convenience. Users of proprietary code sets should obtain all necessary licenses from the owners of the code sets. NCQA disclaims all liability for use or accuracy of any CPT or other codes contained in the specifications. CPT(R) contained in the Measure specifications is copyright 2004-2015 American Medical Association. LOINC(R) copyright 2004-2015 Regenstrief Institute, Inc. This material contains SNOMED Clinical Terms(R) (SNOMED CT[R]) copyright 2004-2015 International Health Terminology Standards Development Organisation. ICD-10 copyright 2015 World Health Organization. All Rights Reserved.\",\n \"approvalDate\": \"2016-01-01\",\n \"lastReviewDate\": \"2016-09-01\",\n \"effectivePeriod\": {\n \"start\": \"2017-01-01\",\n \"end\": \"2017-12-31\"\n },\n \"topic\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57024-2\"\n }\n ]\n }\n ],\n \"author\": [\n {\n \"name\": \"National Committee for Quality Assurance\"\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"documentation\",\n \"citation\": \"Linder, J.A., D.W. Bates, G.M. Lee, J.A. Finkelstein. 2005. _Antibiotic treatment of children with sore throat._ JAMA 294(18):2315-2322. \"\n },\n {\n \"type\": \"documentation\",\n \"citation\": \"Infectious Diseases Society of America. 2012. _Clinical Practice Guideline for the Diagnosis and Management of Group A Streptococcal Pharyngitis: 2012 Update._ \"\n },\n {\n \"type\": \"documentation\",\n \"citation\": \"Roberts, R.R., B. Hota, I. Ahmad, et al. _Hospital and Societal Costs of Antimicrobial-Resistant Infections in a Chicago Teaching Hospital: Implications for Antibiotic Stewardship._ Clin Infect Dis. Oct 2009; 49(8):1175-84.\"\n }\n ],\n \"library\": [\n \"Library/library-cms146-example\"\n ],\n \"disclaimer\": \"These performance Measures are not clinical guidelines and do not establish a standard of medical care, and have not been tested for all potential applications. THE MEASURES AND SPECIFICATIONS ARE PROVIDED \\\"AS IS\\\" WITHOUT WARRANTY OF ANY KIND. Due to technical limitations, registered trademarks are indicated by (R) or [R] and unregistered trademarks are indicated by (TM) or [TM].\",\n \"scoring\": {\n \"coding\": [\n {\n \"code\": \"proportion\"\n }\n ]\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"process\"\n }\n ]\n }\n ],\n \"rationale\": \"Group A streptococcal bacterial infections and other infections that cause pharyngitis (which are most often viral) often produce the same signs and symptoms (IDSA 2002). The American Academy of Pediatrics, the Centers for Disease Control and Prevention, and the Infectious Diseases Society of America all recommend a diagnostic test for Strep A to improve diagnostic accuracy and avoid unnecessary antibiotic treatment (Linder et al. 2005). Estimated economic costs of pediatric streptococcal pharyngitis in the United States range from $224 million to $539 million per year, including indirect costs related to parental work losses. At a higher level, the economic cost of antibiotic resistance vary but have extended as high as $20 billion in excess direct healthcare costs, with additional costs to society for lost productivity as high as $35 billion a year (2008 dollars) (Roberts et al. 2009).\",\n \"clinicalRecommendationStatement\": \"The Infectious Diseases Society of America (IDSA) \\\"recommends swabbing the throat and testing for GAS pharyngitis by rapid antigen detection test (RADT) and/or culture because the clinical features alone do not reliably discriminate between GAS and viral pharyngitis except when overt viral features like rhinorrhea, cough, oral ulcers, and/or hoarseness are present\\\"\",\n \"improvementNotation\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/measure-improvement-notation\",\n \"code\": \"increase\"\n }\n ]\n },\n \"guidance\": \"This is an episode of care measure that examines all eligible episodes for the patient during the measurement period. If the patient has more than one episode, include all episodes in the measure\",\n \"group\": [\n {\n \"id\": \"CMS146-group-1\",\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"criteria\": {\n \"language\": \"text/cql\",\n \"expression\": \"CMS146.InInitialPopulation\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"criteria\": {\n \"language\": \"text/cql\",\n \"expression\": \"CMS146.InNumerator\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"criteria\": {\n \"language\": \"text/cql\",\n \"expression\": \"CMS146.InDenominator\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"criteria\": {\n \"language\": \"text/cql\",\n \"expression\": \"CMS146.InDenominatorExclusions\"\n }\n }\n ],\n \"stratifier\": [\n {\n \"code\": {\n \"text\": \"stratifier-ages-up-to-9\"\n },\n \"criteria\": {\n \"language\": \"text/cql\",\n \"expression\": \"CMS146.AgesUpToNine\"\n }\n },\n {\n \"code\": {\n \"text\": \"stratifier-ages-10-plus\"\n },\n \"criteria\": {\n \"language\": \"text/cql\",\n \"expression\": \"CMS146.AgesTenPlus\"\n }\n },\n {\n \"code\": {\n \"text\": \"stratifier-gender\"\n },\n \"criteria\": {\n \"language\": \"text/fhirpath\",\n \"expression\": \"Patient.gender\"\n }\n }\n ]\n }\n ],\n \"supplementalData\": [\n {\n \"code\": {\n \"text\": \"supplemental-data-gender\"\n },\n \"criteria\": {\n \"language\": \"text/fhirpath\",\n \"expression\": \"Patient.gender\"\n }\n },\n {\n \"code\": {\n \"text\": \"supplemental-data-deceased\"\n },\n \"criteria\": {\n \"language\": \"text/fhirpath\",\n \"expression\": \"deceasedBoolean\"\n }\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/Measure", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Measure" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Measure_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Measure?composed-of=&depends-on=&derived-from=&predecessor=&successor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&effective=&identifier=&jurisdiction=&name=&publisher=&status=&title=&topic=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Measure" - ], - "query": [ - { - "key": "composed-of", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "depends-on", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "derived-from", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "predecessor", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "successor", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "The measure publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the measure" - }, - { - "key": "effective", - "value": "", - "description": "The time during which the measure is intended to be in use" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the measure" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the measure" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the measure" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the measure" - }, - { - "key": "status", - "value": "", - "description": "The current status of the measure" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the measure" - }, - { - "key": "topic", - "value": "", - "description": "Topics associated with the module" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the measure" - }, - { - "key": "version", - "value": "", - "description": "The business version of the measure" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MeasureHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Measure/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Measure", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Measure Report", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "MeasureReportHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MeasureReport/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MeasureReport", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MeasureReportHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MeasureReport/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MeasureReport", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MeasureReportById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MeasureReport/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MeasureReport", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MeasureReportById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MeasureReport\",\n \"id\": \"measurereport-cms146-cat1-example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eMeasureReport/measurereport-cms146-cat1-example\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eMeasure: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003eMeasure/CMS146\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eType: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eindividual\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003ePatient: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003ePatient/123\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003ePeriod: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003estart: \\u003c/b\\u003e\\n \\u003cspan\\u003eWed Jan 01 00:00:00 MST 2014\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003eend: \\u003c/b\\u003e\\n \\u003cspan\\u003eMon Mar 31 00:00:00 MDT 2014\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003ecomplete\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eReporting Organization: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003ename: \\u003c/b\\u003e\\n \\u003cspan\\u003eGood Health Hospital\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003eCMS146-group-1\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003eStratifier:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003eCMS146-group-1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003etrue\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003efalse\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003eStratifier:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003eCMS146-group-1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003etrue\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003efalse\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003eStratifier:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003eCMS146-group-1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003emale\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003efemale\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003eother\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003eunknown\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003eSupplemental:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003esupplemental-data-gender\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003emale\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003efemale\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003eother\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003eunknown\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003eSupplemental:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003esupplemental-data-deceased\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003etrue\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003efalse\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eEvaluated Resources: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003eBundle/456\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Organization\",\n \"id\": \"reporter\",\n \"name\": \"Good Health Hospital\"\n }\n ],\n \"identifier\": [\n {\n \"value\": \"measurereport-cms146-cat1-example-2017-03-13\"\n }\n ],\n \"status\": \"complete\",\n \"type\": \"individual\",\n \"measure\": \"Measure/CMS146\",\n \"subject\": {\n \"reference\": \"Patient/123\"\n },\n \"date\": \"2014-04-01\",\n \"reporter\": {\n \"reference\": \"#reporter\"\n },\n \"period\": {\n \"start\": \"2014-01-01\",\n \"end\": \"2014-03-31\"\n },\n \"group\": [\n {\n \"id\": \"CMS146-group-1\",\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ],\n \"stratifier\": [\n {\n \"code\": [\n {\n \"text\": \"stratifier-ages-up-to-9\"\n }\n ],\n \"stratum\": [\n {\n \"value\": {\n \"text\": \"true\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n },\n {\n \"value\": {\n \"text\": \"false\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n }\n ]\n },\n {\n \"code\": [\n {\n \"text\": \"stratifier-ages-10-plus\"\n }\n ],\n \"stratum\": [\n {\n \"value\": {\n \"text\": \"true\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n },\n {\n \"value\": {\n \"text\": \"false\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n }\n ]\n },\n {\n \"code\": [\n {\n \"text\": \"stratifier-gender\"\n }\n ],\n \"stratum\": [\n {\n \"value\": {\n \"text\": \"male\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n },\n {\n \"value\": {\n \"text\": \"female\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n },\n {\n \"value\": {\n \"text\": \"other\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n },\n {\n \"value\": {\n \"text\": \"unknown\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n }\n ]\n }\n ]\n }\n ],\n \"evaluatedResource\": [\n {\n \"reference\": \"Condition/123\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/MeasureReport/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MeasureReport", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MeasureReportById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MeasureReport/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MeasureReport", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MeasureReport_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MeasureReport\",\n \"id\": \"measurereport-cms146-cat1-example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eMeasureReport/measurereport-cms146-cat1-example\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eMeasure: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003eMeasure/CMS146\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eType: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eindividual\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003ePatient: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003ePatient/123\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003ePeriod: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003estart: \\u003c/b\\u003e\\n \\u003cspan\\u003eWed Jan 01 00:00:00 MST 2014\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003eend: \\u003c/b\\u003e\\n \\u003cspan\\u003eMon Mar 31 00:00:00 MDT 2014\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003ecomplete\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eReporting Organization: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003ename: \\u003c/b\\u003e\\n \\u003cspan\\u003eGood Health Hospital\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003eCMS146-group-1\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003eStratifier:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003eCMS146-group-1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003etrue\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003efalse\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003eStratifier:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003eCMS146-group-1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003etrue\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003efalse\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003eStratifier:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003eCMS146-group-1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003emale\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003efemale\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003eother\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003eunknown\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003einitial-population\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003enumerator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ePopulation:\\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003edenominator-exclusion\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003eSupplemental:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003esupplemental-data-gender\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003emale\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003efemale\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003eother\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003eunknown\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003eSupplemental:\\u003c/b\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003esupplemental-data-deceased\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003etrue\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e0\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eGroup:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003efalse\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecount: \\u003c/b\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e1\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eEvaluated Resources: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003eBundle/456\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Organization\",\n \"id\": \"reporter\",\n \"name\": \"Good Health Hospital\"\n }\n ],\n \"identifier\": [\n {\n \"value\": \"measurereport-cms146-cat1-example-2017-03-13\"\n }\n ],\n \"status\": \"complete\",\n \"type\": \"individual\",\n \"measure\": \"Measure/CMS146\",\n \"subject\": {\n \"reference\": \"Patient/123\"\n },\n \"date\": \"2014-04-01\",\n \"reporter\": {\n \"reference\": \"#reporter\"\n },\n \"period\": {\n \"start\": \"2014-01-01\",\n \"end\": \"2014-03-31\"\n },\n \"group\": [\n {\n \"id\": \"CMS146-group-1\",\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ],\n \"stratifier\": [\n {\n \"code\": [\n {\n \"text\": \"stratifier-ages-up-to-9\"\n }\n ],\n \"stratum\": [\n {\n \"value\": {\n \"text\": \"true\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n },\n {\n \"value\": {\n \"text\": \"false\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n }\n ]\n },\n {\n \"code\": [\n {\n \"text\": \"stratifier-ages-10-plus\"\n }\n ],\n \"stratum\": [\n {\n \"value\": {\n \"text\": \"true\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n },\n {\n \"value\": {\n \"text\": \"false\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n }\n ]\n },\n {\n \"code\": [\n {\n \"text\": \"stratifier-gender\"\n }\n ],\n \"stratum\": [\n {\n \"value\": {\n \"text\": \"male\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 1\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n },\n {\n \"value\": {\n \"text\": \"female\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n },\n {\n \"value\": {\n \"text\": \"other\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n },\n {\n \"value\": {\n \"text\": \"unknown\"\n },\n \"population\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"initial-population\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"numerator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator\"\n }\n ]\n },\n \"count\": 0\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"denominator-exclusion\"\n }\n ]\n },\n \"count\": 0\n }\n ]\n }\n ]\n }\n ]\n }\n ],\n \"evaluatedResource\": [\n {\n \"reference\": \"Condition/123\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/MeasureReport", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MeasureReport" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MeasureReport_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MeasureReport?patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MeasureReport" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "The identity of a patient to search for individual measure report results for" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier of the measure report to be returned" - }, - { - "key": "status", - "value": "", - "description": "The status of the measure report" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MeasureReportHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MeasureReport/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MeasureReport", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Media", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "MediaHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Media/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Media", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MediaHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Media/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Media", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MediaById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Media/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Media", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MediaById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Media\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Image \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/media-type code \\u0027image\\u0027 \\u003d \\u0027Image\\u0027, given as \\u0027Image\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emodality\\u003c/b\\u003e: Diagram \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/media-modality code \\u0027diagram\\u0027 \\u003d \\u0027Diagram)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecreated\\u003c/b\\u003e: 17/12/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eissued\\u003c/b\\u003e: 17/12/2017 2:56:18 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoperator\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/xcda-author\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edevice\\u003c/b\\u003e: Acme Camera\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eheight\\u003c/b\\u003e: 145\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ewidth\\u003c/b\\u003e: 126\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eframes\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtent\\u003c/b\\u003e: \\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/media-type\",\n \"code\": \"image\",\n \"display\": \"Image\"\n }\n ]\n },\n \"modality\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/media-modality\",\n \"code\": \"diagram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/xcda\"\n },\n \"createdDateTime\": \"2017-12-17\",\n \"issued\": \"2017-12-17T14:56:18Z\",\n \"operator\": {\n \"reference\": \"Practitioner/xcda-author\"\n },\n \"device\": {\n \"display\": \"Acme Camera\"\n },\n \"height\": 145,\n \"width\": 126,\n \"frames\": 1,\n \"content\": {\n \"id\": \"a1\",\n \"contentType\": \"image/gif\",\n \"data\": \"R0lGODlhfgCRAPcAAAAAAIAAAACAAICAAAAAgIAA gACAgICAgMDAwP8AAAD/AP//AAAA//8A/wD///// /wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAMwAAZgAAmQAAzAAA /wAzAAAzMwAzZgAzmQAzzAAz/wBmAABmMwBmZgBm mQBmzABm/wCZAACZMwCZZgCZmQCZzACZ/wDMAADM MwDMZgDMmQDMzADM/wD/AAD/MwD/ZgD/mQD/zAD/ /zMAADMAMzMAZjMAmTMAzDMA/zMzADMzMzMzZjMz mTMzzDMz/zNmADNmMzNmZjNmmTNmzDNm/zOZADOZ MzOZZjOZmTOZzDOZ/zPMADPMMzPMZjPMmTPMzDPM /zP/ADP/MzP/ZjP/mTP/zDP//2YAAGYAM2YAZmYA mWYAzGYA/2YzAGYzM2YzZmYzmWYzzGYz/2ZmAGZm M2ZmZmZmmWZmzGZm/2aZAGaZM2aZZmaZmWaZzGaZ /2bMAGbMM2bMZmbMmWbMzGbM/2b/AGb/M2b/Zmb/ mWb/zGb//5kAAJkAM5kAZpkAmZkAzJkA/5kzAJkz M5kzZpkzmZkzzJkz/5lmAJlmM5lmZplmmZlmzJlm /5mZAJmZM5mZZpmZmZmZzJmZ/5nMAJnMM5nMZpnM mZnMzJnM/5n/AJn/M5n/Zpn/mZn/zJn//8wAAMwA M8wAZswAmcwAzMwA/8wzAMwzM8wzZswzmcwzzMwz /8xmAMxmM8xmZsxmmcxmzMxm/8yZAMyZM8yZZsyZ mcyZzMyZ/8zMAMzMM8zMZszMmczMzMzM/8z/AMz/ M8z/Zsz/mcz/zMz///8AAP8AM/8AZv8Amf8AzP8A //8zAP8zM/8zZv8zmf8zzP8z//9mAP9mM/9mZv9m mf9mzP9m//+ZAP+ZM/+ZZv+Zmf+ZzP+Z///MAP/M M//MZv/Mmf/MzP/M////AP//M///Zv//mf//zP// /yH5BAEAABAALAAAAAB+AJEAQAj/AP8JHEiwoMGD CBMqXMiwocOHECNKnEixosWLGFHAckaN2jRnsKZh HEmy5EMU0+L5EseNG654KEzKnGkShbN4uFq2xOWR ps+fE5nEy6Wz5a+XQJMqTeisGdGiLuNRi7m0qlJn 06iF7LhxKoqvX2FpnRYSq1eBX62qRYhCKzWzZDeK 3bqR7NSsb99uddZ2r1ZnINuanbrWp82tb8ly/Bjy a1aOKOu+5ZgXZFa7sARzBMl5a9rCJDl29ejxMuDK eb3mJYsSa93GIOW61QgWbEjQGStbrru7o2K3dkXj BUz242WUbj0u9vj1b2KquCn27Rq7I1+9nBkn7gyS K/HBnFd3/y8bUizf6CM76s0qduxp0pvN23UrOnF7 zB7nWiaMXuZhvGJNoxhjpr3G3WMfJfdbgtD1p1Rb xgkHX3uUbeYbdli5dp6DHHbo4YcghijiiCSWeJJG rJloIkoqPeXLNA2q+GFHm+yUSzzxiCQjiG3hVFQu N+74IQry4JSTTjfCImSHyE1TyS9I+iJPZkv21ySE +bE31VTjhZfZfhm2V+VJXLH3WH70MfZVeKfF9Z1i nv3mXldjEiTYmX9tpVhkXrW1JpfX6bVdnosh19xG INVpk3JydafYZjC6RhqMNlHa11u0aQbjl/mVJaB1 McrY16eSSeYle2AmqGp5wIl1KVxj+f8WIDV1/iOY Vote5lt4eZUn6WsI+kZgp6iVxV+tAs064aqUebdr aW55GqZ2AiIWKrIHQahfo3bBeaZ5zq1q17XYMoQl eQt+Jxt56jXrarnwxivvvPTWa++9TJYlGrn4+kdN PJv4kksz92zY709ExqPJkbncw+/BI9mEDy4Mx+MM xD/9+xQ3m+RIK8Yz2STPkS11s8nFIMvEhDw1FoVL xynLdI9KR+bUMMoxR+yML1BxIyWMOY+0kTxQuizV w0E3hOJjBTe9UYO1fZZ0Qlga59hYvgLX3W7GWo20 vLWV5uqjlHZUaVcDbukuZVTe29poqNYnZ2ZzrdbV 0hRmdZh9dX3/raKv5MknG19YVojmVPIJmtlwhBpX bq4V6trd1VhV6t5jfM6XWWVzaRmZ3yO+3WaAi3XG FZfP2vRnYogLp+tec4Ee4qLZ3dfV3XXpHanZMHJV d6WsucprXJiOyaZ+iaH60aJ1JxirRoCF5Wdmfnql J9uUVdma1m7CvTe74mHWLSyNgft6nmaDNSZy5o1m HvPWadW+aN9luVxglpnVeXF6Kxr/88MhX3wcJZsB uS81uDpc+5KDM0VBr3SlAQx1LBSSy1AHT2iSS1u2 E6DYwUtbGTQOacj3mPGg6TeSEZBrWAUnyMzrbVk6 XVyKsxgCwW0/62GMhVKErw12S1D5S0185RQnn8XQ xYUx45NyNOe87gCRPubZj+xeaB+smIl+yllirCho xKmhxExoK1Cv0BSftAVmamhMoxrXyMY2uvGNcIyj HOeoxkXBh44OOZdn8Ggu+DiPjwtJ2CZyUomCTRGO KJFHLljiEnkc8o0Sy0U3WpILoAGSLf9qmc86ckmE /MtHOfEFVjp5EGfc40jieAlgSFmQL27sF/GQx8dY iRaP8EwnL9ERLW1lS5L5whfxyMcubaWworVEHIX0 xzBRcI9NMBJJ9xgmMTW5E19QQ5m0tAlOjOkzeeiS lcwcJFSAeSxSomRjuDT/2y6ncQ9fkMwozMkmVhRW lFTGk5T5sAlgaCawjjWjnJcEYoYWRJU/CUdqbQSX bNYEGRQZjj630qAXO7MmRJ3pOq65DOOiBaqghaVy a4sUcrKYn+ugay+PXFJzgiOesGWISx3sFfRoaEHC qY9ePmzUpCoTnN5JyobF8lx9zJJSEZlqWNK6D0ar taDWsY4zOV2NVj5olq2VVIvCQ1GsjKURBSnnbCJk FbzihxdSqYc1MAyhZZBDPwZ1sKygKiqTHsOqPGFO L8JrX7cgxBmiYk2LagKo9uQ3LKv2zjGcMlbsVLUv I2YRUf+Z5fq2GqzRqO04Z2POlyo4m7KGB3oXsmSd /2Llps7Mh6mVK84FtQW9qllnccLJkFythBgUyo2F AlzTgMIyqECVDkZltSgSB6unZ8Vwc9jZHKUIJ8Ll 8YkvkmLUa3koJPaFdoGeK2Ln9KI6S4GFVMsDV31e M1vQqPZT+uMpcJYY2/V89y9+0tuoKuqp8mhvfKnx 7NNI95fiCIpx1Nmchrj1VbaWtzAOdSLr6MLX+5VH Px+BVIVQdLuXKk8v2pMg69wzFodez0x/Fa+37tQ4 CcbnwAge6Icbg9Ww6gpAALLrXer20mKhuDDGoWlg /Aveq8InizQsjwq7GkQEEVVRsWHQYYIYQ+cFK00G 4o1webxWZEEIsVAEznmH6N1Y4eiUNJaLaRex9UVf wWlSJCRhr+AiZElZsYZoi5xg12eqp3buNEJm3LRQ BcTeSZUx8/pLdk53w9p6CYKE/p+J83NjJuUPeemq 71bbqrjTkTEvjfaQDyFFnXbJr1lshqIKnaja4uHr tWEa4beqRZpJpXcvy3kaxhxD6U/NqaQ0xCr6jJhp FUlYPVl01HrsI8JYPSdpoCXhEG2YUVzrqT2mzpkS KVRAG955u3SJdhITZ766KosyNjQOnZAt6F3d7oQJ +inaJNPrHUXt3fCOt7ylSe962/ve+M63vvkYEAA7\",\n \"creation\": \"2009-09-03\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Media/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Media", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MediaById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Media/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Media", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Media_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Media\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Image \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/media-type code \\u0027image\\u0027 \\u003d \\u0027Image\\u0027, given as \\u0027Image\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emodality\\u003c/b\\u003e: Diagram \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/media-modality code \\u0027diagram\\u0027 \\u003d \\u0027Diagram)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecreated\\u003c/b\\u003e: 17/12/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eissued\\u003c/b\\u003e: 17/12/2017 2:56:18 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoperator\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/xcda-author\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edevice\\u003c/b\\u003e: Acme Camera\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eheight\\u003c/b\\u003e: 145\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ewidth\\u003c/b\\u003e: 126\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eframes\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtent\\u003c/b\\u003e: \\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/media-type\",\n \"code\": \"image\",\n \"display\": \"Image\"\n }\n ]\n },\n \"modality\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/media-modality\",\n \"code\": \"diagram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/xcda\"\n },\n \"createdDateTime\": \"2017-12-17\",\n \"issued\": \"2017-12-17T14:56:18Z\",\n \"operator\": {\n \"reference\": \"Practitioner/xcda-author\"\n },\n \"device\": {\n \"display\": \"Acme Camera\"\n },\n \"height\": 145,\n \"width\": 126,\n \"frames\": 1,\n \"content\": {\n \"id\": \"a1\",\n \"contentType\": \"image/gif\",\n \"data\": \"R0lGODlhfgCRAPcAAAAAAIAAAACAAICAAAAAgIAA gACAgICAgMDAwP8AAAD/AP//AAAA//8A/wD///// /wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAMwAAZgAAmQAAzAAA /wAzAAAzMwAzZgAzmQAzzAAz/wBmAABmMwBmZgBm mQBmzABm/wCZAACZMwCZZgCZmQCZzACZ/wDMAADM MwDMZgDMmQDMzADM/wD/AAD/MwD/ZgD/mQD/zAD/ /zMAADMAMzMAZjMAmTMAzDMA/zMzADMzMzMzZjMz mTMzzDMz/zNmADNmMzNmZjNmmTNmzDNm/zOZADOZ MzOZZjOZmTOZzDOZ/zPMADPMMzPMZjPMmTPMzDPM /zP/ADP/MzP/ZjP/mTP/zDP//2YAAGYAM2YAZmYA mWYAzGYA/2YzAGYzM2YzZmYzmWYzzGYz/2ZmAGZm M2ZmZmZmmWZmzGZm/2aZAGaZM2aZZmaZmWaZzGaZ /2bMAGbMM2bMZmbMmWbMzGbM/2b/AGb/M2b/Zmb/ mWb/zGb//5kAAJkAM5kAZpkAmZkAzJkA/5kzAJkz M5kzZpkzmZkzzJkz/5lmAJlmM5lmZplmmZlmzJlm /5mZAJmZM5mZZpmZmZmZzJmZ/5nMAJnMM5nMZpnM mZnMzJnM/5n/AJn/M5n/Zpn/mZn/zJn//8wAAMwA M8wAZswAmcwAzMwA/8wzAMwzM8wzZswzmcwzzMwz /8xmAMxmM8xmZsxmmcxmzMxm/8yZAMyZM8yZZsyZ mcyZzMyZ/8zMAMzMM8zMZszMmczMzMzM/8z/AMz/ M8z/Zsz/mcz/zMz///8AAP8AM/8AZv8Amf8AzP8A //8zAP8zM/8zZv8zmf8zzP8z//9mAP9mM/9mZv9m mf9mzP9m//+ZAP+ZM/+ZZv+Zmf+ZzP+Z///MAP/M M//MZv/Mmf/MzP/M////AP//M///Zv//mf//zP// /yH5BAEAABAALAAAAAB+AJEAQAj/AP8JHEiwoMGD CBMqXMiwocOHECNKnEixosWLGFHAckaN2jRnsKZh HEmy5EMU0+L5EseNG654KEzKnGkShbN4uFq2xOWR ps+fE5nEy6Wz5a+XQJMqTeisGdGiLuNRi7m0qlJn 06iF7LhxKoqvX2FpnRYSq1eBX62qRYhCKzWzZDeK 3bqR7NSsb99uddZ2r1ZnINuanbrWp82tb8ly/Bjy a1aOKOu+5ZgXZFa7sARzBMl5a9rCJDl29ejxMuDK eb3mJYsSa93GIOW61QgWbEjQGStbrru7o2K3dkXj BUz242WUbj0u9vj1b2KquCn27Rq7I1+9nBkn7gyS K/HBnFd3/y8bUizf6CM76s0qduxp0pvN23UrOnF7 zB7nWiaMXuZhvGJNoxhjpr3G3WMfJfdbgtD1p1Rb xgkHX3uUbeYbdli5dp6DHHbo4YcghijiiCSWeJJG rJloIkoqPeXLNA2q+GFHm+yUSzzxiCQjiG3hVFQu N+74IQry4JSTTjfCImSHyE1TyS9I+iJPZkv21ySE +bE31VTjhZfZfhm2V+VJXLH3WH70MfZVeKfF9Z1i nv3mXldjEiTYmX9tpVhkXrW1JpfX6bVdnosh19xG INVpk3JydafYZjC6RhqMNlHa11u0aQbjl/mVJaB1 McrY16eSSeYle2AmqGp5wIl1KVxj+f8WIDV1/iOY Vote5lt4eZUn6WsI+kZgp6iVxV+tAs064aqUebdr aW55GqZ2AiIWKrIHQahfo3bBeaZ5zq1q17XYMoQl eQt+Jxt56jXrarnwxivvvPTWa++9TJYlGrn4+kdN PJv4kksz92zY709ExqPJkbncw+/BI9mEDy4Mx+MM xD/9+xQ3m+RIK8Yz2STPkS11s8nFIMvEhDw1FoVL xynLdI9KR+bUMMoxR+yML1BxIyWMOY+0kTxQuizV w0E3hOJjBTe9UYO1fZZ0Qlga59hYvgLX3W7GWo20 vLWV5uqjlHZUaVcDbukuZVTe29poqNYnZ2ZzrdbV 0hRmdZh9dX3/raKv5MknG19YVojmVPIJmtlwhBpX bq4V6trd1VhV6t5jfM6XWWVzaRmZ3yO+3WaAi3XG FZfP2vRnYogLp+tec4Ee4qLZ3dfV3XXpHanZMHJV d6WsucprXJiOyaZ+iaH60aJ1JxirRoCF5Wdmfnql J9uUVdma1m7CvTe74mHWLSyNgft6nmaDNSZy5o1m HvPWadW+aN9luVxglpnVeXF6Kxr/88MhX3wcJZsB uS81uDpc+5KDM0VBr3SlAQx1LBSSy1AHT2iSS1u2 E6DYwUtbGTQOacj3mPGg6TeSEZBrWAUnyMzrbVk6 XVyKsxgCwW0/62GMhVKErw12S1D5S0185RQnn8XQ xYUx45NyNOe87gCRPubZj+xeaB+smIl+yllirCho xKmhxExoK1Cv0BSftAVmamhMoxrXyMY2uvGNcIyj HOeoxkXBh44OOZdn8Ggu+DiPjwtJ2CZyUomCTRGO KJFHLljiEnkc8o0Sy0U3WpILoAGSLf9qmc86ckmE /MtHOfEFVjp5EGfc40jieAlgSFmQL27sF/GQx8dY iRaP8EwnL9ERLW1lS5L5whfxyMcubaWworVEHIX0 xzBRcI9NMBJJ9xgmMTW5E19QQ5m0tAlOjOkzeeiS lcwcJFSAeSxSomRjuDT/2y6ncQ9fkMwozMkmVhRW lFTGk5T5sAlgaCawjjWjnJcEYoYWRJU/CUdqbQSX bNYEGRQZjj630qAXO7MmRJ3pOq65DOOiBaqghaVy a4sUcrKYn+ugay+PXFJzgiOesGWISx3sFfRoaEHC qY9ePmzUpCoTnN5JyobF8lx9zJJSEZlqWNK6D0ar taDWsY4zOV2NVj5olq2VVIvCQ1GsjKURBSnnbCJk FbzihxdSqYc1MAyhZZBDPwZ1sKygKiqTHsOqPGFO L8JrX7cgxBmiYk2LagKo9uQ3LKv2zjGcMlbsVLUv I2YRUf+Z5fq2GqzRqO04Z2POlyo4m7KGB3oXsmSd /2Llps7Mh6mVK84FtQW9qllnccLJkFythBgUyo2F AlzTgMIyqECVDkZltSgSB6unZ8Vwc9jZHKUIJ8Ll 8YkvkmLUa3koJPaFdoGeK2Ln9KI6S4GFVMsDV31e M1vQqPZT+uMpcJYY2/V89y9+0tuoKuqp8mhvfKnx 7NNI95fiCIpx1Nmchrj1VbaWtzAOdSLr6MLX+5VH Px+BVIVQdLuXKk8v2pMg69wzFodez0x/Fa+37tQ4 CcbnwAge6Icbg9Ww6gpAALLrXer20mKhuDDGoWlg /Aveq8InizQsjwq7GkQEEVVRsWHQYYIYQ+cFK00G 4o1webxWZEEIsVAEznmH6N1Y4eiUNJaLaRex9UVf wWlSJCRhr+AiZElZsYZoi5xg12eqp3buNEJm3LRQ BcTeSZUx8/pLdk53w9p6CYKE/p+J83NjJuUPeemq 71bbqrjTkTEvjfaQDyFFnXbJr1lshqIKnaja4uHr tWEa4beqRZpJpXcvy3kaxhxD6U/NqaQ0xCr6jJhp FUlYPVl01HrsI8JYPSdpoCXhEG2YUVzrqT2mzpkS KVRAG955u3SJdhITZ766KosyNjQOnZAt6F3d7oQJ +inaJNPrHUXt3fCOt7ylSe962/ve+M63vvkYEAA7\",\n \"creation\": \"2009-09-03\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Media", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Media" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Media_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Media?based-on=&context=&device=&operator=&patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&date=&identifier=&site=&subtype=&type=&view=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Media" - ], - "query": [ - { - "key": "based-on", - "value": "", - "description": "Procedure that caused this media to be created" - }, - { - "key": "context", - "value": "", - "description": "Encounter / Episode associated with media" - }, - { - "key": "device", - "value": "", - "description": "Observing Device" - }, - { - "key": "operator", - "value": "", - "description": "The person who generated the image" - }, - { - "key": "patient", - "value": "", - "description": "Who/What this Media is a record of" - }, - { - "key": "subject", - "value": "", - "description": "Who/What this Media is a record of" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "created", - "value": "", - "description": "Date attachment was first created" - }, - { - "key": "date", - "value": "", - "description": "When Media was collected" - }, - { - "key": "identifier", - "value": "", - "description": "Identifier(s) for the image" - }, - { - "key": "site", - "value": "", - "description": "Body part in media" - }, - { - "key": "subtype", - "value": "", - "description": "The type of acquisition equipment/process" - }, - { - "key": "type", - "value": "", - "description": "photo | video | audio" - }, - { - "key": "view", - "value": "", - "description": "Imaging view, e.g. Lateral or Antero-posterior" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MediaHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Media/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Media", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Medication", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "MedicationHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Medication/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Medication", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Medication/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Medication", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MedicationById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Medication/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Medication", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\",\n \"_display\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n }\n ]\n },\n \"isBrand\": \"\",\n \"package\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"container\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Medication/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Medication", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Medication/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Medication", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Medication_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\",\n \"_display\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n }\n ]\n },\n \"isBrand\": \"\",\n \"package\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"container\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Medication", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Medication" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Medication_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Medication?ingredient=&manufacturer=&package-item=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&container=&form=&ingredient-code=&over-the-counter=&package-item-code=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Medication" - ], - "query": [ - { - "key": "ingredient", - "value": "", - "description": "The product contained" - }, - { - "key": "manufacturer", - "value": "", - "description": "Manufacturer of the item" - }, - { - "key": "package-item", - "value": "", - "description": "The item in the package" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Medication](medication.html): Codes that identify this medication\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication code\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine code" - }, - { - "key": "container", - "value": "", - "description": "E.g. box, vial, blister-pack" - }, - { - "key": "form", - "value": "", - "description": "powder | tablets | capsule +" - }, - { - "key": "ingredient-code", - "value": "", - "description": "The product contained" - }, - { - "key": "over-the-counter", - "value": "", - "description": "True if medication does not require a prescription" - }, - { - "key": "package-item-code", - "value": "", - "description": "The item in the package" - }, - { - "key": "status", - "value": "", - "description": "active | inactive | entered-in-error" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Medication/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Medication", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Medication Administration", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "MedicationAdministrationHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationAdministration/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationAdministration", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationAdministrationHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationAdministration/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationAdministration", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MedicationAdministrationById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationAdministration/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationAdministration", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationAdministrationById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MedicationAdministration\",\n \"id\": \"medadmin0301\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: medadmin0301\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: , \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: in-progress\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emedication\\u003c/b\\u003e: id: med0301; Vancomycin Hydrochloride (VANCOMYCIN HYDROCHLORIDE) \\u003cspan\\u003e(Details : {http://hl7.org/fhir/sid/ndc code \\u00270069-2587-10\\u0027 \\u003d \\u0027n/a\\u0027, given as \\u0027Vancomycin Hydrochloride (VANCOMYCIN HYDROCHLORIDE)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003eDonald Duck\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtext\\u003c/b\\u003e: \\u003ca\\u003eencounter who leads to this prescription\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eeffective\\u003c/b\\u003e: 15/01/2015 2:30:00 PM --\\u0026gt; (ongoing)\\u003c/p\\u003e\\u003ch3\\u003ePerformers\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eActor\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatrick Pump\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Given as Ordered \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/reason-medication-given code \\u0027b\\u0027 \\u003d \\u0027Given as Ordered\\u0027, given as \\u0027Given as Ordered\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequest\\u003c/b\\u003e: \\u003ca\\u003eMedicationRequest/medrx0318\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eDosages\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eText\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRoute\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMethod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDose\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e500mg IV q6h x 3 days\\u003c/td\\u003e\\u003ctd\\u003eIntravenous route (qualifier value) \\u003cspan\\u003e(Details : {SNOMED CT code \\u002747625008\\u0027 \\u003d \\u0027Intravenous route\\u0027, given as \\u0027Intravenous route (qualifier value)\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003eIV Push \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e500 mg\\u003cspan\\u003e (Details: UCUM code mg \\u003d \\u0027mg\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eeventHistory\\u003c/b\\u003e: Author\\u0027s Signature. Generated Summary: id: signature; recorded: 01/02/2017 5:23:07 PM; \\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Medication\",\n \"id\": \"med0301\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/ndc\",\n \"code\": \"0069-2587-10\",\n \"display\": \"Vancomycin Hydrochloride (VANCOMYCIN HYDROCHLORIDE)\"\n }\n ]\n }\n },\n {\n \"resourceType\": \"Provenance\",\n \"id\": \"signature\",\n \"target\": [\n {\n \"reference\": \"ServiceRequest/physiotherapy\"\n }\n ],\n \"recorded\": \"2017-02-01T17:23:07Z\",\n \"agent\": [\n {\n \"role\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"AUT\"\n }\n ]\n }\n ],\n \"who\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n }\n }\n ],\n \"signature\": [\n {\n \"type\": [\n {\n \"system\": \"urn:iso-astm:E1762-95:2013\",\n \"code\": \"1.2.840.10065.1.12.1.1\",\n \"display\": \"Author\\u0027s Signature\"\n }\n ],\n \"when\": \"2017-02-01T17:23:07Z\",\n \"who\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"targetFormat\": \"application/fhir+xml\",\n \"sigFormat\": \"application/signature+xml\",\n \"data\": \"dGhpcyBibG9iIGlzIHNuaXBwZWQ\\u003d\"\n }\n ]\n }\n ],\n \"status\": \"in-progress\",\n \"medicationReference\": {\n \"reference\": \"#med0301\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n },\n \"context\": {\n \"reference\": \"Encounter/f001\",\n \"display\": \"encounter who leads to this prescription\"\n },\n \"effectivePeriod\": {\n \"start\": \"2015-01-15T14:30:00+01:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/f007\",\n \"display\": \"Patrick Pump\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/reason-medication-given\",\n \"code\": \"b\",\n \"display\": \"Given as Ordered\"\n }\n ]\n }\n ],\n \"request\": {\n \"reference\": \"MedicationRequest/medrx0318\"\n },\n \"dosage\": {\n \"text\": \"500mg IV q6h x 3 days\",\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"47625008\",\n \"display\": \"Intravenous route (qualifier value)\"\n }\n ]\n },\n \"method\": {\n \"text\": \"IV Push\"\n },\n \"dose\": {\n \"value\": 500,\n \"unit\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n }\n },\n \"eventHistory\": [\n {\n \"reference\": \"#signature\",\n \"display\": \"Author\\u0027s Signature\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/MedicationAdministration/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationAdministration", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationAdministrationById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationAdministration/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationAdministration", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MedicationAdministration_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MedicationAdministration\",\n \"id\": \"medadmin0301\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: medadmin0301\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: , \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: in-progress\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emedication\\u003c/b\\u003e: id: med0301; Vancomycin Hydrochloride (VANCOMYCIN HYDROCHLORIDE) \\u003cspan\\u003e(Details : {http://hl7.org/fhir/sid/ndc code \\u00270069-2587-10\\u0027 \\u003d \\u0027n/a\\u0027, given as \\u0027Vancomycin Hydrochloride (VANCOMYCIN HYDROCHLORIDE)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003eDonald Duck\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtext\\u003c/b\\u003e: \\u003ca\\u003eencounter who leads to this prescription\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eeffective\\u003c/b\\u003e: 15/01/2015 2:30:00 PM --\\u0026gt; (ongoing)\\u003c/p\\u003e\\u003ch3\\u003ePerformers\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eActor\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatrick Pump\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Given as Ordered \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/reason-medication-given code \\u0027b\\u0027 \\u003d \\u0027Given as Ordered\\u0027, given as \\u0027Given as Ordered\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequest\\u003c/b\\u003e: \\u003ca\\u003eMedicationRequest/medrx0318\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eDosages\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eText\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRoute\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMethod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDose\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e500mg IV q6h x 3 days\\u003c/td\\u003e\\u003ctd\\u003eIntravenous route (qualifier value) \\u003cspan\\u003e(Details : {SNOMED CT code \\u002747625008\\u0027 \\u003d \\u0027Intravenous route\\u0027, given as \\u0027Intravenous route (qualifier value)\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003eIV Push \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e500 mg\\u003cspan\\u003e (Details: UCUM code mg \\u003d \\u0027mg\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eeventHistory\\u003c/b\\u003e: Author\\u0027s Signature. Generated Summary: id: signature; recorded: 01/02/2017 5:23:07 PM; \\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Medication\",\n \"id\": \"med0301\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/ndc\",\n \"code\": \"0069-2587-10\",\n \"display\": \"Vancomycin Hydrochloride (VANCOMYCIN HYDROCHLORIDE)\"\n }\n ]\n }\n },\n {\n \"resourceType\": \"Provenance\",\n \"id\": \"signature\",\n \"target\": [\n {\n \"reference\": \"ServiceRequest/physiotherapy\"\n }\n ],\n \"recorded\": \"2017-02-01T17:23:07Z\",\n \"agent\": [\n {\n \"role\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"AUT\"\n }\n ]\n }\n ],\n \"who\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n }\n }\n ],\n \"signature\": [\n {\n \"type\": [\n {\n \"system\": \"urn:iso-astm:E1762-95:2013\",\n \"code\": \"1.2.840.10065.1.12.1.1\",\n \"display\": \"Author\\u0027s Signature\"\n }\n ],\n \"when\": \"2017-02-01T17:23:07Z\",\n \"who\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"targetFormat\": \"application/fhir+xml\",\n \"sigFormat\": \"application/signature+xml\",\n \"data\": \"dGhpcyBibG9iIGlzIHNuaXBwZWQ\\u003d\"\n }\n ]\n }\n ],\n \"status\": \"in-progress\",\n \"medicationReference\": {\n \"reference\": \"#med0301\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n },\n \"context\": {\n \"reference\": \"Encounter/f001\",\n \"display\": \"encounter who leads to this prescription\"\n },\n \"effectivePeriod\": {\n \"start\": \"2015-01-15T14:30:00+01:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/f007\",\n \"display\": \"Patrick Pump\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/reason-medication-given\",\n \"code\": \"b\",\n \"display\": \"Given as Ordered\"\n }\n ]\n }\n ],\n \"request\": {\n \"reference\": \"MedicationRequest/medrx0318\"\n },\n \"dosage\": {\n \"text\": \"500mg IV q6h x 3 days\",\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"47625008\",\n \"display\": \"Intravenous route (qualifier value)\"\n }\n ]\n },\n \"method\": {\n \"text\": \"IV Push\"\n },\n \"dose\": {\n \"value\": 500,\n \"unit\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n }\n },\n \"eventHistory\": [\n {\n \"reference\": \"#signature\",\n \"display\": \"Author\\u0027s Signature\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/MedicationAdministration", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationAdministration" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationAdministration_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationAdministration?context=&device=&medication=&patient=&performer=&prescription=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&effective-time=&identifier=¬-given=&reason-given=&reason-not-given=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationAdministration" - ], - "query": [ - { - "key": "context", - "value": "", - "description": "Return administrations that share this encounter or episode of care" - }, - { - "key": "device", - "value": "", - "description": "Return administrations with this administration device identity" - }, - { - "key": "medication", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication reference\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication resource\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication reference\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine resource" - }, - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient\r\n* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for\r\n* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.\r\n* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for" - }, - { - "key": "performer", - "value": "", - "description": "The identify of the individual who administered the medication" - }, - { - "key": "prescription", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationAdministration](medicationadministration.html): The identity of a prescription to list administrations from\r\n* [MedicationDispense](medicationdispense.html): The identity of a prescription to list dispenses from" - }, - { - "key": "subject", - "value": "", - "description": "The identify of the individual or group to list administrations for" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Medication](medication.html): Codes that identify this medication\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication code\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine code" - }, - { - "key": "effective-time", - "value": "", - "description": "Date administration happened (or did not happen)" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier\r\n* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier\r\n* [MedicationStatement](medicationstatement.html): Return statements with this external identifier\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with this external identifier" - }, - { - "key": "not-given", - "value": "", - "description": "Administrations that were not made" - }, - { - "key": "reason-given", - "value": "", - "description": "Reasons for administering the medication" - }, - { - "key": "reason-not-given", - "value": "", - "description": "Reasons for not administering the medication" - }, - { - "key": "status", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Status of the prescription\r\n* [MedicationAdministration](medicationadministration.html): MedicationAdministration event status (for example one of active/paused/completed/nullified)\r\n* [MedicationStatement](medicationstatement.html): Return statements that match the given status\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with a specified dispense status" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationAdministrationHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationAdministration/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationAdministration", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Medication Dispense", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "MedicationDispenseHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationDispense/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationDispense", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationDispenseHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationDispense/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationDispense", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MedicationDispenseById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationDispense/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationDispense", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationDispenseById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MedicationDispense\",\n \"id\": \"meddisp0301\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: meddisp0301\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: in-progress\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emedication\\u003c/b\\u003e: Vancomycin Hydrochloride. Generated Summary: id: med0301; Vancomycin Hydrochloride (VANCOMYCIN HYDROCHLORIDE) \\u003cspan\\u003e(Details : {http://hl7.org/fhir/sid/ndc code \\u00270069-2587-10\\u0027 \\u003d \\u0027n/a\\u0027, given as \\u0027Vancomycin Hydrochloride (VANCOMYCIN HYDROCHLORIDE)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003eDonald Duck\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esupportingInformation\\u003c/b\\u003e: \\u003ca\\u003eCondition/f203\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003ePerformers\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eActor\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePractitioner/f006\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003elocation\\u003c/b\\u003e: \\u003ca\\u003ePharmacy\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eauthorizingPrescription\\u003c/b\\u003e: \\u003ca\\u003eMedicationRequest/medrx0318\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Emergency Supply \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ActCode code \\u0027EM\\u0027 \\u003d \\u0027Emergency Supply\\u0027, given as \\u0027Emergency Supply\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003equantity\\u003c/b\\u003e: 12 Vial\\u003cspan\\u003e (Details: http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm code Vial \\u003d \\u0027Vial\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edaysSupply\\u003c/b\\u003e: 3 Day\\u003cspan\\u003e (Details: UCUM code d \\u003d \\u0027d\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ewhenPrepared\\u003c/b\\u003e: 15/01/2015 10:20:00 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edestination\\u003c/b\\u003e: \\u003ca\\u003eLocation/ph\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereceiver\\u003c/b\\u003e: \\u003ca\\u003eDonald Duck\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edosageInstruction\\u003c/b\\u003e: \\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Medication\",\n \"id\": \"med0301\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/ndc\",\n \"code\": \"0069-2587-10\",\n \"display\": \"Vancomycin Hydrochloride (VANCOMYCIN HYDROCHLORIDE)\"\n }\n ]\n }\n }\n ],\n \"status\": \"in-progress\",\n \"medicationReference\": {\n \"reference\": \"#med0301\",\n \"display\": \"Vancomycin Hydrochloride\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n },\n \"supportingInformation\": [\n {\n \"reference\": \"Condition/f203\"\n }\n ],\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/f006\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/ukp\",\n \"display\": \"Pharmacy\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/medrx0318\"\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EM\",\n \"display\": \"Emergency Supply\"\n }\n ]\n },\n \"quantity\": {\n \"value\": 12,\n \"unit\": \"Vial\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"Vial\"\n },\n \"daysSupply\": {\n \"value\": 3,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2015-01-15T10:20:00Z\",\n \"destination\": {\n \"reference\": \"Location/ph\"\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n }\n ],\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"500mg IV q6h x 3 days\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 6,\n \"periodUnit\": \"h\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"255560000\",\n \"display\": \"Intravenous\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"420620005\",\n \"display\": \"Push - dosing instruction imperative (qualifier value)\"\n }\n ]\n },\n \"doseAndRate\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n \"code\": \"ordered\",\n \"display\": \"Ordered\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": 500,\n \"unit\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n }\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/MedicationDispense/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationDispense", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationDispenseById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationDispense/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationDispense", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MedicationDispense_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MedicationDispense\",\n \"id\": \"meddisp0301\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: meddisp0301\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: in-progress\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emedication\\u003c/b\\u003e: Vancomycin Hydrochloride. Generated Summary: id: med0301; Vancomycin Hydrochloride (VANCOMYCIN HYDROCHLORIDE) \\u003cspan\\u003e(Details : {http://hl7.org/fhir/sid/ndc code \\u00270069-2587-10\\u0027 \\u003d \\u0027n/a\\u0027, given as \\u0027Vancomycin Hydrochloride (VANCOMYCIN HYDROCHLORIDE)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003eDonald Duck\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esupportingInformation\\u003c/b\\u003e: \\u003ca\\u003eCondition/f203\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003ePerformers\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eActor\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePractitioner/f006\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003elocation\\u003c/b\\u003e: \\u003ca\\u003ePharmacy\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eauthorizingPrescription\\u003c/b\\u003e: \\u003ca\\u003eMedicationRequest/medrx0318\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Emergency Supply \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ActCode code \\u0027EM\\u0027 \\u003d \\u0027Emergency Supply\\u0027, given as \\u0027Emergency Supply\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003equantity\\u003c/b\\u003e: 12 Vial\\u003cspan\\u003e (Details: http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm code Vial \\u003d \\u0027Vial\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edaysSupply\\u003c/b\\u003e: 3 Day\\u003cspan\\u003e (Details: UCUM code d \\u003d \\u0027d\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ewhenPrepared\\u003c/b\\u003e: 15/01/2015 10:20:00 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edestination\\u003c/b\\u003e: \\u003ca\\u003eLocation/ph\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereceiver\\u003c/b\\u003e: \\u003ca\\u003eDonald Duck\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edosageInstruction\\u003c/b\\u003e: \\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Medication\",\n \"id\": \"med0301\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/ndc\",\n \"code\": \"0069-2587-10\",\n \"display\": \"Vancomycin Hydrochloride (VANCOMYCIN HYDROCHLORIDE)\"\n }\n ]\n }\n }\n ],\n \"status\": \"in-progress\",\n \"medicationReference\": {\n \"reference\": \"#med0301\",\n \"display\": \"Vancomycin Hydrochloride\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n },\n \"supportingInformation\": [\n {\n \"reference\": \"Condition/f203\"\n }\n ],\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/f006\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/ukp\",\n \"display\": \"Pharmacy\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/medrx0318\"\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EM\",\n \"display\": \"Emergency Supply\"\n }\n ]\n },\n \"quantity\": {\n \"value\": 12,\n \"unit\": \"Vial\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"Vial\"\n },\n \"daysSupply\": {\n \"value\": 3,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2015-01-15T10:20:00Z\",\n \"destination\": {\n \"reference\": \"Location/ph\"\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n }\n ],\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"500mg IV q6h x 3 days\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 6,\n \"periodUnit\": \"h\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"255560000\",\n \"display\": \"Intravenous\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"420620005\",\n \"display\": \"Push - dosing instruction imperative (qualifier value)\"\n }\n ]\n },\n \"doseAndRate\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n \"code\": \"ordered\",\n \"display\": \"Ordered\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": 500,\n \"unit\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n }\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/MedicationDispense", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationDispense" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationDispense_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationDispense?medication=&patient=&prescription=&context=&destination=&performer=&receiver=&responsibleparty=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&status=&type=&whenhandedover=&whenprepared=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationDispense" - ], - "query": [ - { - "key": "medication", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication reference\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication resource\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication reference\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine resource" - }, - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient\r\n* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for\r\n* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.\r\n* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for" - }, - { - "key": "prescription", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationAdministration](medicationadministration.html): The identity of a prescription to list administrations from\r\n* [MedicationDispense](medicationdispense.html): The identity of a prescription to list dispenses from" - }, - { - "key": "context", - "value": "", - "description": "Returns dispenses with a specific context (episode or episode of care)" - }, - { - "key": "destination", - "value": "", - "description": "Return dispenses that should be sent to a specific destination" - }, - { - "key": "performer", - "value": "", - "description": "Return dispenses performed by a specific individual" - }, - { - "key": "receiver", - "value": "", - "description": "The identity of a receiver to list dispenses for" - }, - { - "key": "responsibleparty", - "value": "", - "description": "Return dispenses with the specified responsible party" - }, - { - "key": "subject", - "value": "", - "description": "The identity of a patient to list dispenses for" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Medication](medication.html): Codes that identify this medication\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication code\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine code" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier\r\n* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier\r\n* [MedicationStatement](medicationstatement.html): Return statements with this external identifier\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with this external identifier" - }, - { - "key": "status", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Status of the prescription\r\n* [MedicationAdministration](medicationadministration.html): MedicationAdministration event status (for example one of active/paused/completed/nullified)\r\n* [MedicationStatement](medicationstatement.html): Return statements that match the given status\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with a specified dispense status" - }, - { - "key": "type", - "value": "", - "description": "Return dispenses of a specific type" - }, - { - "key": "whenhandedover", - "value": "", - "description": "Returns dispenses handed over on this date" - }, - { - "key": "whenprepared", - "value": "", - "description": "Returns dispenses prepared on this date" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationDispenseHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationDispense/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationDispense", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Medication Request", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "MedicationRequestHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationRequest/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationRequest", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationRequestHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationRequest/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationRequest", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MedicationRequestById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationRequestById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MedicationRequest\",\n \"id\": \"medrx0311\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: medrx0311\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 12345689 (OFFICIAL)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eintent\\u003c/b\\u003e: order\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emedication\\u003c/b\\u003e: id: med0316; Chlorthalidone 50mg tablet (product) \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027317935006\\u0027 \\u003d \\u0027Chlortalidone 50mg tablet\\u0027, given as \\u0027Chlorthalidone 50mg tablet (product)\\u0027})\\u003c/span\\u003e; Tablet dose form (qualifier value) \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027385055001\\u0027 \\u003d \\u0027Tablet\\u0027, given as \\u0027Tablet dose form (qualifier value)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003eDonald Duck\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eencounter who leads to this prescription\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eauthoredOn\\u003c/b\\u003e: 15/01/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequester\\u003c/b\\u003e: \\u003ca\\u003ePatrick Pump\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonReference\\u003c/b\\u003e: \\u003ca\\u003econdition for prescribing this medication\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: Chlorthalidone increases urniation so take it in the morning\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edosageInstruction\\u003c/b\\u003e: \\u003c/p\\u003e\\u003ch3\\u003eDispenseRequests\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eValidityPeriod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eNumberOfRepeatsAllowed\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eExpectedSupplyDuration\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e15/01/2015 --\\u0026gt; 15/01/2016\\u003c/td\\u003e\\u003ctd\\u003e1\\u003c/td\\u003e\\u003ctd\\u003e30 TAB\\u003cspan\\u003e (Details: http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm code TAB \\u003d \\u0027Tablet\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e30 days\\u003cspan\\u003e (Details: UCUM code d \\u003d \\u0027d\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eSubstitutions\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAllowed[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReason\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003econtinuing therapy \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ActReason code \\u0027CT\\u0027 \\u003d \\u0027continuing therapy\\u0027, given as \\u0027continuing therapy\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Medication\",\n \"id\": \"med0316\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"317935006\",\n \"display\": \"Chlorthalidone 50mg tablet (product)\"\n }\n ]\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"385055001\",\n \"display\": \"Tablet dose form (qualifier value)\"\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://www.bmc.nl/portal/prescriptions\",\n \"value\": \"12345689\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"order\",\n \"medicationReference\": {\n \"reference\": \"#med0316\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/f001\",\n \"display\": \"encounter who leads to this prescription\"\n },\n \"authoredOn\": \"2015-01-15\",\n \"requester\": {\n \"reference\": \"Practitioner/f007\",\n \"display\": \"Patrick Pump\"\n },\n \"reasonReference\": [\n {\n \"reference\": \"Condition/f201\",\n \"display\": \"condition for prescribing this medication\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Chlorthalidone increases urniation so take it in the morning\"\n }\n ],\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"One tablet daily\",\n \"additionalInstruction\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"311504000\",\n \"display\": \"With or after food\"\n }\n ]\n }\n ],\n \"timing\": {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-GTSAbbreviation\",\n \"code\": \"QD\",\n \"display\": \"QD\"\n }\n ]\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26643006\",\n \"display\": \"Oral Route\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"421521009\",\n \"display\": \"Swallow - dosing instruction imperative (qualifier value)\"\n }\n ]\n },\n \"doseAndRate\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n \"code\": \"ordered\",\n \"display\": \"Ordered\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"validityPeriod\": {\n \"start\": \"2015-01-15\",\n \"end\": \"2016-01-15\"\n },\n \"numberOfRepeatsAllowed\": 1,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n }\n },\n \"substitution\": {\n \"allowedBoolean\": true,\n \"reason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"CT\",\n \"display\": \"continuing therapy\"\n }\n ]\n }\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/MedicationRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationRequestById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MedicationRequest_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MedicationRequest\",\n \"id\": \"medrx0311\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: medrx0311\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 12345689 (OFFICIAL)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eintent\\u003c/b\\u003e: order\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emedication\\u003c/b\\u003e: id: med0316; Chlorthalidone 50mg tablet (product) \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027317935006\\u0027 \\u003d \\u0027Chlortalidone 50mg tablet\\u0027, given as \\u0027Chlorthalidone 50mg tablet (product)\\u0027})\\u003c/span\\u003e; Tablet dose form (qualifier value) \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027385055001\\u0027 \\u003d \\u0027Tablet\\u0027, given as \\u0027Tablet dose form (qualifier value)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003eDonald Duck\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eencounter who leads to this prescription\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eauthoredOn\\u003c/b\\u003e: 15/01/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequester\\u003c/b\\u003e: \\u003ca\\u003ePatrick Pump\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonReference\\u003c/b\\u003e: \\u003ca\\u003econdition for prescribing this medication\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: Chlorthalidone increases urniation so take it in the morning\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edosageInstruction\\u003c/b\\u003e: \\u003c/p\\u003e\\u003ch3\\u003eDispenseRequests\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eValidityPeriod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eNumberOfRepeatsAllowed\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eExpectedSupplyDuration\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e15/01/2015 --\\u0026gt; 15/01/2016\\u003c/td\\u003e\\u003ctd\\u003e1\\u003c/td\\u003e\\u003ctd\\u003e30 TAB\\u003cspan\\u003e (Details: http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm code TAB \\u003d \\u0027Tablet\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e30 days\\u003cspan\\u003e (Details: UCUM code d \\u003d \\u0027d\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eSubstitutions\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAllowed[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReason\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003econtinuing therapy \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ActReason code \\u0027CT\\u0027 \\u003d \\u0027continuing therapy\\u0027, given as \\u0027continuing therapy\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Medication\",\n \"id\": \"med0316\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"317935006\",\n \"display\": \"Chlorthalidone 50mg tablet (product)\"\n }\n ]\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"385055001\",\n \"display\": \"Tablet dose form (qualifier value)\"\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://www.bmc.nl/portal/prescriptions\",\n \"value\": \"12345689\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"order\",\n \"medicationReference\": {\n \"reference\": \"#med0316\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/f001\",\n \"display\": \"encounter who leads to this prescription\"\n },\n \"authoredOn\": \"2015-01-15\",\n \"requester\": {\n \"reference\": \"Practitioner/f007\",\n \"display\": \"Patrick Pump\"\n },\n \"reasonReference\": [\n {\n \"reference\": \"Condition/f201\",\n \"display\": \"condition for prescribing this medication\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Chlorthalidone increases urniation so take it in the morning\"\n }\n ],\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"One tablet daily\",\n \"additionalInstruction\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"311504000\",\n \"display\": \"With or after food\"\n }\n ]\n }\n ],\n \"timing\": {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-GTSAbbreviation\",\n \"code\": \"QD\",\n \"display\": \"QD\"\n }\n ]\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26643006\",\n \"display\": \"Oral Route\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"421521009\",\n \"display\": \"Swallow - dosing instruction imperative (qualifier value)\"\n }\n ]\n },\n \"doseAndRate\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n \"code\": \"ordered\",\n \"display\": \"Ordered\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"validityPeriod\": {\n \"start\": \"2015-01-15\",\n \"end\": \"2016-01-15\"\n },\n \"numberOfRepeatsAllowed\": 1,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n }\n },\n \"substitution\": {\n \"allowedBoolean\": true,\n \"reason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"CT\",\n \"display\": \"continuing therapy\"\n }\n ]\n }\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/MedicationRequest", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationRequest" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationRequest_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationRequest?medication=&patient=&context=&intended-dispenser=&requester=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&status=&authoredon=&category=&date=&intent=&priority=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationRequest" - ], - "query": [ - { - "key": "medication", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication reference\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication resource\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication reference\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine resource" - }, - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient\r\n* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for\r\n* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.\r\n* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for" - }, - { - "key": "context", - "value": "", - "description": "Return prescriptions with this encounter or episode of care identifier" - }, - { - "key": "intended-dispenser", - "value": "", - "description": "Returns prescriptions intended to be dispensed by this Organization" - }, - { - "key": "requester", - "value": "", - "description": "Returns prescriptions prescribed by this prescriber" - }, - { - "key": "subject", - "value": "", - "description": "The identity of a patient to list orders for" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Medication](medication.html): Codes that identify this medication\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication code\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine code" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier\r\n* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier\r\n* [MedicationStatement](medicationstatement.html): Return statements with this external identifier\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with this external identifier" - }, - { - "key": "status", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Status of the prescription\r\n* [MedicationAdministration](medicationadministration.html): MedicationAdministration event status (for example one of active/paused/completed/nullified)\r\n* [MedicationStatement](medicationstatement.html): Return statements that match the given status\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with a specified dispense status" - }, - { - "key": "authoredon", - "value": "", - "description": "Return prescriptions written on this date" - }, - { - "key": "category", - "value": "", - "description": "Returns prescriptions with different categories" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Returns medication request to be administered on a specific date" - }, - { - "key": "intent", - "value": "", - "description": "Returns prescriptions with different intents" - }, - { - "key": "priority", - "value": "", - "description": "Returns prescriptions with different priorities" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationRequestHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationRequest/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationRequest", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Medication Statement", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "MedicationStatementHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationStatement/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationStatement", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationStatementHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationStatement/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationStatement", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MedicationStatementById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationStatement/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationStatement", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationStatementById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"id\": \"example001\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example001\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 12345689 (OFFICIAL)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Inpatient \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/medication-statement-category code \\u0027inpatient\\u0027 \\u003d \\u0027Inpatient\\u0027, given as \\u0027Inpatient\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emedication\\u003c/b\\u003e: id: med0309; Tylenol PM \\u003cspan\\u003e(Details : {http://hl7.org/fhir/sid/ndc code \\u002750580-506-02\\u0027 \\u003d \\u0027n/a\\u0027, given as \\u0027Tylenol PM\\u0027})\\u003c/span\\u003e; Film-coated tablet (qualifier value) \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027385057009\\u0027 \\u003d \\u0027Film-coated tablet\\u0027, given as \\u0027Film-coated tablet (qualifier value)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003eDonald Duck\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eeffective\\u003c/b\\u003e: 23/01/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edateAsserted\\u003c/b\\u003e: 22/02/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einformationSource\\u003c/b\\u003e: \\u003ca\\u003eDonald Duck\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ederivedFrom\\u003c/b\\u003e: \\u003ca\\u003eMedicationRequest/medrx002\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Restless Legs \\u003cspan\\u003e(Details : {SNOMED CT code \\u002732914008\\u0027 \\u003d \\u0027Restless legs\\u0027, given as \\u0027Restless Legs\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: Patient indicates they miss the occasional dose\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edosage\\u003c/b\\u003e: \\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Medication\",\n \"id\": \"med0309\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/ndc\",\n \"code\": \"50580-506-02\",\n \"display\": \"Tylenol PM\"\n }\n ]\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"385057009\",\n \"display\": \"Film-coated tablet (qualifier value)\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"315266\",\n \"display\": \"Acetaminophen 500 MG\"\n }\n ]\n },\n \"strength\": {\n \"numerator\": {\n \"value\": 500,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"Tab\"\n }\n }\n },\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"901813\",\n \"display\": \"Diphenhydramine Hydrochloride 25 mg\"\n }\n ]\n },\n \"strength\": {\n \"numerator\": {\n \"value\": 25,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"Tab\"\n }\n }\n }\n ],\n \"batch\": {\n \"lotNumber\": \"9494788\",\n \"expirationDate\": \"2017-05-22\"\n }\n }\n ],\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://www.bmc.nl/portal/medstatements\",\n \"value\": \"12345689\"\n }\n ],\n \"status\": \"active\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"inpatient\",\n \"display\": \"Inpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"#med0309\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n },\n \"effectiveDateTime\": \"2015-01-23\",\n \"dateAsserted\": \"2015-02-22\",\n \"informationSource\": {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n },\n \"derivedFrom\": [\n {\n \"reference\": \"MedicationRequest/medrx002\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"32914008\",\n \"display\": \"Restless Legs\"\n }\n ]\n }\n ],\n \"note\": [\n {\n \"text\": \"Patient indicates they miss the occasional dose\"\n }\n ],\n \"dosage\": [\n {\n \"sequence\": 1,\n \"text\": \"1-2 tablets once daily at bedtime as needed for restless legs\",\n \"additionalInstruction\": [\n {\n \"text\": \"Taking at bedtime\"\n }\n ],\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"asNeededCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"32914008\",\n \"display\": \"Restless Legs\"\n }\n ]\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26643006\",\n \"display\": \"Oral Route\"\n }\n ]\n },\n \"doseAndRate\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n \"code\": \"ordered\",\n \"display\": \"Ordered\"\n }\n ]\n },\n \"doseRange\": {\n \"low\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"high\": {\n \"value\": 2,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/MedicationStatement/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationStatement", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationStatementById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationStatement/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationStatement", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MedicationStatement_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"id\": \"example001\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example001\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 12345689 (OFFICIAL)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Inpatient \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/medication-statement-category code \\u0027inpatient\\u0027 \\u003d \\u0027Inpatient\\u0027, given as \\u0027Inpatient\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emedication\\u003c/b\\u003e: id: med0309; Tylenol PM \\u003cspan\\u003e(Details : {http://hl7.org/fhir/sid/ndc code \\u002750580-506-02\\u0027 \\u003d \\u0027n/a\\u0027, given as \\u0027Tylenol PM\\u0027})\\u003c/span\\u003e; Film-coated tablet (qualifier value) \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027385057009\\u0027 \\u003d \\u0027Film-coated tablet\\u0027, given as \\u0027Film-coated tablet (qualifier value)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003eDonald Duck\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eeffective\\u003c/b\\u003e: 23/01/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edateAsserted\\u003c/b\\u003e: 22/02/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einformationSource\\u003c/b\\u003e: \\u003ca\\u003eDonald Duck\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ederivedFrom\\u003c/b\\u003e: \\u003ca\\u003eMedicationRequest/medrx002\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Restless Legs \\u003cspan\\u003e(Details : {SNOMED CT code \\u002732914008\\u0027 \\u003d \\u0027Restless legs\\u0027, given as \\u0027Restless Legs\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: Patient indicates they miss the occasional dose\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edosage\\u003c/b\\u003e: \\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Medication\",\n \"id\": \"med0309\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/ndc\",\n \"code\": \"50580-506-02\",\n \"display\": \"Tylenol PM\"\n }\n ]\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"385057009\",\n \"display\": \"Film-coated tablet (qualifier value)\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"315266\",\n \"display\": \"Acetaminophen 500 MG\"\n }\n ]\n },\n \"strength\": {\n \"numerator\": {\n \"value\": 500,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"Tab\"\n }\n }\n },\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"901813\",\n \"display\": \"Diphenhydramine Hydrochloride 25 mg\"\n }\n ]\n },\n \"strength\": {\n \"numerator\": {\n \"value\": 25,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"Tab\"\n }\n }\n }\n ],\n \"batch\": {\n \"lotNumber\": \"9494788\",\n \"expirationDate\": \"2017-05-22\"\n }\n }\n ],\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://www.bmc.nl/portal/medstatements\",\n \"value\": \"12345689\"\n }\n ],\n \"status\": \"active\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"inpatient\",\n \"display\": \"Inpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"#med0309\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n },\n \"effectiveDateTime\": \"2015-01-23\",\n \"dateAsserted\": \"2015-02-22\",\n \"informationSource\": {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n },\n \"derivedFrom\": [\n {\n \"reference\": \"MedicationRequest/medrx002\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"32914008\",\n \"display\": \"Restless Legs\"\n }\n ]\n }\n ],\n \"note\": [\n {\n \"text\": \"Patient indicates they miss the occasional dose\"\n }\n ],\n \"dosage\": [\n {\n \"sequence\": 1,\n \"text\": \"1-2 tablets once daily at bedtime as needed for restless legs\",\n \"additionalInstruction\": [\n {\n \"text\": \"Taking at bedtime\"\n }\n ],\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"asNeededCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"32914008\",\n \"display\": \"Restless Legs\"\n }\n ]\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26643006\",\n \"display\": \"Oral Route\"\n }\n ]\n },\n \"doseAndRate\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n \"code\": \"ordered\",\n \"display\": \"Ordered\"\n }\n ]\n },\n \"doseRange\": {\n \"low\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"high\": {\n \"value\": 2,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/MedicationStatement", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationStatement" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationStatement_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationStatement?medication=&patient=&context=&part-of=&source=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&status=&category=&effective=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationStatement" - ], - "query": [ - { - "key": "medication", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication reference\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication resource\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication reference\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine resource" - }, - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient\r\n* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for\r\n* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.\r\n* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for" - }, - { - "key": "context", - "value": "", - "description": "Returns statements for a specific context (episode or episode of Care)." - }, - { - "key": "part-of", - "value": "", - "description": "Returns statements that are part of another event." - }, - { - "key": "source", - "value": "", - "description": "Who or where the information in the statement came from" - }, - { - "key": "subject", - "value": "", - "description": "The identity of a patient, animal or group to list statements for" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Medication](medication.html): Codes that identify this medication\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication code\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine code" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier\r\n* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier\r\n* [MedicationStatement](medicationstatement.html): Return statements with this external identifier\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with this external identifier" - }, - { - "key": "status", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Status of the prescription\r\n* [MedicationAdministration](medicationadministration.html): MedicationAdministration event status (for example one of active/paused/completed/nullified)\r\n* [MedicationStatement](medicationstatement.html): Return statements that match the given status\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with a specified dispense status" - }, - { - "key": "category", - "value": "", - "description": "Returns statements of this category of medicationstatement" - }, - { - "key": "effective", - "value": "", - "description": "Date when patient was taking (or not taking) the medication" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MedicationStatementHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MedicationStatement/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MedicationStatement", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Message Definition", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "MessageDefinitionHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MessageDefinition/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageDefinition", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MessageDefinitionHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MessageDefinition/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageDefinition", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MessageDefinitionById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MessageDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MessageDefinitionById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MessageDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eMessage definition base example\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/MessageDefinition/example\",\n \"name\": \"EXAMPLE\",\n \"title\": \"Message definition base example\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2016-11-09\",\n \"publisher\": \"Health Level Seven, Int\\u0027l\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org\"\n }\n ]\n }\n ],\n \"purpose\": \"Defines a base example for other MessageDefinition instances.\",\n \"eventCoding\": {\n \"system\": \"http://example.org/fhir/message-events\",\n \"code\": \"admin-notify\"\n },\n \"category\": \"notification\"\n}" - }, - "url": { - "raw": "{{API_URL}}/MessageDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MessageDefinitionById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MessageDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MessageDefinition_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MessageDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eMessage definition base example\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/MessageDefinition/example\",\n \"name\": \"EXAMPLE\",\n \"title\": \"Message definition base example\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2016-11-09\",\n \"publisher\": \"Health Level Seven, Int\\u0027l\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org\"\n }\n ]\n }\n ],\n \"purpose\": \"Defines a base example for other MessageDefinition instances.\",\n \"eventCoding\": {\n \"system\": \"http://example.org/fhir/message-events\",\n \"code\": \"admin-notify\"\n },\n \"category\": \"notification\"\n}" - }, - "url": { - "raw": "{{API_URL}}/MessageDefinition", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageDefinition" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MessageDefinition_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MessageDefinition?_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&date=&description=&event=&focus=&identifier=&jurisdiction=&name=&publisher=&status=&title=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageDefinition" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "category", - "value": "", - "description": "The behavior associated with the message" - }, - { - "key": "date", - "value": "", - "description": "The message definition publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the message definition" - }, - { - "key": "event", - "value": "", - "description": "The event that triggers the message" - }, - { - "key": "focus", - "value": "", - "description": "A resource that is a permitted focus of the message" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the message definition" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the message definition" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the message definition" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the message definition" - }, - { - "key": "status", - "value": "", - "description": "The current status of the message definition" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the message definition" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the message definition" - }, - { - "key": "version", - "value": "", - "description": "The business version of the message definition" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MessageDefinitionHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MessageDefinition/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageDefinition", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Message Header", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "MessageHeaderHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MessageHeader/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageHeader", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MessageHeaderHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MessageHeader/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageHeader", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MessageHeaderById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MessageHeader/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageHeader", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MessageHeaderById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MessageHeader\",\n \"id\": \"1cbdfb97-5859-48a4-8301-d54eab818d68\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eUpdate Person resource for Peter James CHALMERS (Jim), MRN: 12345 (Acme Healthcare)\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"eventCoding\": {\n \"system\": \"http://example.org/fhir/message-events\",\n \"code\": \"admin-notify\"\n },\n \"destination\": [\n {\n \"name\": \"Acme Message Gateway\",\n \"target\": {\n \"reference\": \"Device/example\"\n },\n \"endpoint\": \"llp:10.11.12.14:5432\",\n \"receiver\": {\n \"reference\": \"http://acme.com/ehr/fhir/Practitioner/2323-33-4\"\n }\n }\n ],\n \"sender\": {\n \"reference\": \"Organization/1\"\n },\n \"enterer\": {\n \"reference\": \"Practitioner/example\"\n },\n \"author\": {\n \"reference\": \"Practitioner/example\"\n },\n \"source\": {\n \"name\": \"Acme Central Patient Registry\",\n \"software\": \"FooBar Patient Manager\",\n \"version\": \"3.1.45.AABB\",\n \"contact\": {\n \"system\": \"phone\",\n \"value\": \"+1 (555) 123 4567\"\n },\n \"endpoint\": \"llp:10.11.12.13:5432\"\n },\n \"reason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/message-reasons-encounter\",\n \"code\": \"admit\"\n }\n ]\n },\n \"response\": {\n \"identifier\": \"5015fe84-8e76-4526-89d8-44b322e8d4fb\",\n \"code\": \"ok\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/example\"\n }\n ],\n \"definition\": \"http:////acme.com/ehr/fhir/messagedefinition/patientrequest\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/MessageHeader/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageHeader", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MessageHeaderById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MessageHeader/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageHeader", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "MessageHeader_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MessageHeader\",\n \"id\": \"1cbdfb97-5859-48a4-8301-d54eab818d68\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eUpdate Person resource for Peter James CHALMERS (Jim), MRN: 12345 (Acme Healthcare)\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"eventCoding\": {\n \"system\": \"http://example.org/fhir/message-events\",\n \"code\": \"admin-notify\"\n },\n \"destination\": [\n {\n \"name\": \"Acme Message Gateway\",\n \"target\": {\n \"reference\": \"Device/example\"\n },\n \"endpoint\": \"llp:10.11.12.14:5432\",\n \"receiver\": {\n \"reference\": \"http://acme.com/ehr/fhir/Practitioner/2323-33-4\"\n }\n }\n ],\n \"sender\": {\n \"reference\": \"Organization/1\"\n },\n \"enterer\": {\n \"reference\": \"Practitioner/example\"\n },\n \"author\": {\n \"reference\": \"Practitioner/example\"\n },\n \"source\": {\n \"name\": \"Acme Central Patient Registry\",\n \"software\": \"FooBar Patient Manager\",\n \"version\": \"3.1.45.AABB\",\n \"contact\": {\n \"system\": \"phone\",\n \"value\": \"+1 (555) 123 4567\"\n },\n \"endpoint\": \"llp:10.11.12.13:5432\"\n },\n \"reason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/message-reasons-encounter\",\n \"code\": \"admit\"\n }\n ]\n },\n \"response\": {\n \"identifier\": \"5015fe84-8e76-4526-89d8-44b322e8d4fb\",\n \"code\": \"ok\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/example\"\n }\n ],\n \"definition\": \"http:////acme.com/ehr/fhir/messagedefinition/patientrequest\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/MessageHeader", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageHeader" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MessageHeader_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MessageHeader?author=&enterer=&focus=&receiver=&responsible=&sender=&target=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&destination=&destination-uri=&event=&response-id=&source=&source-uri=×tamp=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageHeader" - ], - "query": [ - { - "key": "author", - "value": "", - "description": "The source of the decision" - }, - { - "key": "enterer", - "value": "", - "description": "The source of the data entry" - }, - { - "key": "focus", - "value": "", - "description": "The actual content of the message" - }, - { - "key": "receiver", - "value": "", - "description": "Intended \"real-world\" recipient for the data" - }, - { - "key": "responsible", - "value": "", - "description": "Final responsibility for event" - }, - { - "key": "sender", - "value": "", - "description": "Real world sender of the message" - }, - { - "key": "target", - "value": "", - "description": "Particular delivery destination within the destination" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "ok | transient-error | fatal-error" - }, - { - "key": "destination", - "value": "", - "description": "Name of system" - }, - { - "key": "destination-uri", - "value": "", - "description": "Actual destination address or id" - }, - { - "key": "event", - "value": "", - "description": "Code for the event this message represents" - }, - { - "key": "response-id", - "value": "", - "description": "Id of original message" - }, - { - "key": "source", - "value": "", - "description": "Name of system" - }, - { - "key": "source-uri", - "value": "", - "description": "Actual message source address or id" - }, - { - "key": "timestamp", - "value": "", - "description": "Time that the message was sent" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "MessageHeaderHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/MessageHeader/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "MessageHeader", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Naming System", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "NamingSystemHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/NamingSystem/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NamingSystem", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "NamingSystemHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/NamingSystem/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NamingSystem", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "NamingSystemById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/NamingSystem/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NamingSystem", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "NamingSystemById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"NamingSystem\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\n \\u003cp\\u003e\\n \\u003cb\\u003eSNOMED CT\\u003c/b\\u003e\\n \\u003c/p\\u003e\\n \\n \\u003cp\\u003e oid: 2.16.840.1.113883.6.96\\u003c/p\\u003e\\n \\n \\u003cp\\u003e uri: http://snomed.info/sct\\u003c/p\\u003e\\n \\n \\u003c/div\\u003e\"\n },\n \"name\": \"SNOMED CT\",\n \"status\": \"active\",\n \"kind\": \"codesystem\",\n \"date\": \"2014-12-13\",\n \"publisher\": \"HL7 International on behalf of IHTSDO\",\n \"contact\": [\n {\n \"name\": \"FHIR project team\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"responsible\": \"IHTSDO \\u0026 affiliates\",\n \"description\": \"SNOMED CT is a concept-based, scientifically validated terminology that provides a unique and permanent concept identifier that can be included in multiple HL7 data types including CD and CE. The concepts are managed to avoid \\\"semantic drift\\\" so the meaning remains constant. If the concept is found to be ambiguous or the meaning changes, the concept is inactivated but still retained and the identifier is never reused. SNOMED CT\\u0027s concepts are interrelated hierarchically and using description logic. SNOMED CT concepts have a unique \\\"fully-specified name\\\", a preferred term, and, optionally, synonyms. The description languages include English and Spanish.\",\n \"uniqueId\": [\n {\n \"type\": \"oid\",\n \"value\": \"2.16.840.1.113883.6.96\"\n },\n {\n \"type\": \"uri\",\n \"value\": \"http://snomed.info/sct\",\n \"preferred\": true\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/NamingSystem/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NamingSystem", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "NamingSystemById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/NamingSystem/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NamingSystem", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "NamingSystem_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"NamingSystem\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\n \\u003cp\\u003e\\n \\u003cb\\u003eSNOMED CT\\u003c/b\\u003e\\n \\u003c/p\\u003e\\n \\n \\u003cp\\u003e oid: 2.16.840.1.113883.6.96\\u003c/p\\u003e\\n \\n \\u003cp\\u003e uri: http://snomed.info/sct\\u003c/p\\u003e\\n \\n \\u003c/div\\u003e\"\n },\n \"name\": \"SNOMED CT\",\n \"status\": \"active\",\n \"kind\": \"codesystem\",\n \"date\": \"2014-12-13\",\n \"publisher\": \"HL7 International on behalf of IHTSDO\",\n \"contact\": [\n {\n \"name\": \"FHIR project team\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"responsible\": \"IHTSDO \\u0026 affiliates\",\n \"description\": \"SNOMED CT is a concept-based, scientifically validated terminology that provides a unique and permanent concept identifier that can be included in multiple HL7 data types including CD and CE. The concepts are managed to avoid \\\"semantic drift\\\" so the meaning remains constant. If the concept is found to be ambiguous or the meaning changes, the concept is inactivated but still retained and the identifier is never reused. SNOMED CT\\u0027s concepts are interrelated hierarchically and using description logic. SNOMED CT concepts have a unique \\\"fully-specified name\\\", a preferred term, and, optionally, synonyms. The description languages include English and Spanish.\",\n \"uniqueId\": [\n {\n \"type\": \"oid\",\n \"value\": \"2.16.840.1.113883.6.96\"\n },\n {\n \"type\": \"uri\",\n \"value\": \"http://snomed.info/sct\",\n \"preferred\": true\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/NamingSystem", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NamingSystem" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "NamingSystem_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/NamingSystem?replaced-by=&_id=&_lastUpdated=&_profile=&_security=&_tag=&contact=&date=&description=&id-type=&jurisdiction=&kind=&name=&period=&publisher=&responsible=&status=&telecom=&type=&value=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NamingSystem" - ], - "query": [ - { - "key": "replaced-by", - "value": "", - "description": "Use this instead" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "contact", - "value": "", - "description": "Name of an individual to contact" - }, - { - "key": "date", - "value": "", - "description": "The naming system publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the naming system" - }, - { - "key": "id-type", - "value": "", - "description": "oid | uuid | uri | other" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the naming system" - }, - { - "key": "kind", - "value": "", - "description": "codesystem | identifier | root" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the naming system" - }, - { - "key": "period", - "value": "", - "description": "When is identifier valid?" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the naming system" - }, - { - "key": "responsible", - "value": "", - "description": "Who maintains system namespace?" - }, - { - "key": "status", - "value": "", - "description": "The current status of the naming system" - }, - { - "key": "telecom", - "value": "", - "description": "Contact details for individual or organization" - }, - { - "key": "type", - "value": "", - "description": "e.g. driver, provider, patient, bank etc." - }, - { - "key": "value", - "value": "", - "description": "The unique identifier" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "NamingSystemHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/NamingSystem/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NamingSystem", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Nutrition Order", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "NutritionOrderHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/NutritionOrder/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NutritionOrder", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "NutritionOrderHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/NutritionOrder/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NutritionOrder", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "NutritionOrderById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/NutritionOrder/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NutritionOrder", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "NutritionOrderById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"NutritionOrder\",\n \"id\": \"diabeticdiet\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: diabeticdiet\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 123\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eintent\\u003c/b\\u003e: order\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epatient\\u003c/b\\u003e: \\u003ca\\u003ePeter Chalmers\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eInpatient\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edateTime\\u003c/b\\u003e: 17/09/2014\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eorderer\\u003c/b\\u003e: \\u003ca\\u003eDr Adam Careful\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eallergyIntolerance\\u003c/b\\u003e: \\u003ca\\u003eCashew Nuts\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efoodPreferenceModifier\\u003c/b\\u003e: Dairy Free \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/diet code \\u0027dairy-free\\u0027 \\u003d \\u0027Dairy Free)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexcludeFoodModifier\\u003c/b\\u003e: Cashew Nut \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027227493005\\u0027 \\u003d \\u0027Cashew nuts\\u0027, given as \\u0027Cashew Nut\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eoralDiet\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: DD - Diabetic diet \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027160670007\\u0027 \\u003d \\u0027DD - Diabetic diet\\u0027, given as \\u0027Diabetic diet\\u0027}; {http://goodhealthhospital.org/diet-type-codes code \\u00271030\\u0027 \\u003d \\u00271030\\u0027, given as \\u0027DD - Diabetic diet\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eschedule\\u003c/b\\u003e: Starting 10/02/2015, Do 3 per 1 days\\u003c/p\\u003e\\u003ch3\\u003eNutrients\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eModifier\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAmount\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eCarbohydrate \\u003cspan\\u003e(Details : {SNOMED CT code \\u00272331003\\u0027 \\u003d \\u0027Carbohydrate\\u0027, given as \\u0027Carbohydrate\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e75 grams\\u003cspan\\u003e (Details: UCUM code g \\u003d \\u0027g\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://goodhealthhospital.org/nutrition-requests\",\n \"value\": \"123\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"order\",\n \"patient\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\",\n \"display\": \"Inpatient\"\n },\n \"dateTime\": \"2014-09-17\",\n \"orderer\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"allergyIntolerance\": [\n {\n \"reference\": \"AllergyIntolerance/example\",\n \"display\": \"Cashew Nuts\"\n }\n ],\n \"foodPreferenceModifier\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diet\",\n \"code\": \"dairy-free\"\n }\n ]\n }\n ],\n \"excludeFoodModifier\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"version\": \"20140730\",\n \"code\": \"227493005\",\n \"display\": \"Cashew Nut\"\n }\n ]\n }\n ],\n \"oralDiet\": {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"160670007\",\n \"display\": \"Diabetic diet\"\n },\n {\n \"system\": \"http://goodhealthhospital.org/diet-type-codes\",\n \"code\": \"1030\",\n \"display\": \"DD - Diabetic diet\"\n }\n ],\n \"text\": \"DD - Diabetic diet\"\n }\n ],\n \"schedule\": [\n {\n \"repeat\": {\n \"boundsPeriod\": {\n \"start\": \"2015-02-10\"\n },\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n ],\n \"nutrient\": [\n {\n \"modifier\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"2331003\",\n \"display\": \"Carbohydrate\"\n }\n ]\n },\n \"amount\": {\n \"value\": 75,\n \"unit\": \"grams\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/NutritionOrder/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NutritionOrder", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "NutritionOrderById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/NutritionOrder/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NutritionOrder", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "NutritionOrder_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"NutritionOrder\",\n \"id\": \"diabeticdiet\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: diabeticdiet\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 123\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eintent\\u003c/b\\u003e: order\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epatient\\u003c/b\\u003e: \\u003ca\\u003ePeter Chalmers\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eInpatient\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edateTime\\u003c/b\\u003e: 17/09/2014\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eorderer\\u003c/b\\u003e: \\u003ca\\u003eDr Adam Careful\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eallergyIntolerance\\u003c/b\\u003e: \\u003ca\\u003eCashew Nuts\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efoodPreferenceModifier\\u003c/b\\u003e: Dairy Free \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/diet code \\u0027dairy-free\\u0027 \\u003d \\u0027Dairy Free)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexcludeFoodModifier\\u003c/b\\u003e: Cashew Nut \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027227493005\\u0027 \\u003d \\u0027Cashew nuts\\u0027, given as \\u0027Cashew Nut\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eoralDiet\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: DD - Diabetic diet \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027160670007\\u0027 \\u003d \\u0027DD - Diabetic diet\\u0027, given as \\u0027Diabetic diet\\u0027}; {http://goodhealthhospital.org/diet-type-codes code \\u00271030\\u0027 \\u003d \\u00271030\\u0027, given as \\u0027DD - Diabetic diet\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eschedule\\u003c/b\\u003e: Starting 10/02/2015, Do 3 per 1 days\\u003c/p\\u003e\\u003ch3\\u003eNutrients\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eModifier\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAmount\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eCarbohydrate \\u003cspan\\u003e(Details : {SNOMED CT code \\u00272331003\\u0027 \\u003d \\u0027Carbohydrate\\u0027, given as \\u0027Carbohydrate\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e75 grams\\u003cspan\\u003e (Details: UCUM code g \\u003d \\u0027g\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://goodhealthhospital.org/nutrition-requests\",\n \"value\": \"123\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"order\",\n \"patient\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\",\n \"display\": \"Inpatient\"\n },\n \"dateTime\": \"2014-09-17\",\n \"orderer\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"allergyIntolerance\": [\n {\n \"reference\": \"AllergyIntolerance/example\",\n \"display\": \"Cashew Nuts\"\n }\n ],\n \"foodPreferenceModifier\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diet\",\n \"code\": \"dairy-free\"\n }\n ]\n }\n ],\n \"excludeFoodModifier\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"version\": \"20140730\",\n \"code\": \"227493005\",\n \"display\": \"Cashew Nut\"\n }\n ]\n }\n ],\n \"oralDiet\": {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"160670007\",\n \"display\": \"Diabetic diet\"\n },\n {\n \"system\": \"http://goodhealthhospital.org/diet-type-codes\",\n \"code\": \"1030\",\n \"display\": \"DD - Diabetic diet\"\n }\n ],\n \"text\": \"DD - Diabetic diet\"\n }\n ],\n \"schedule\": [\n {\n \"repeat\": {\n \"boundsPeriod\": {\n \"start\": \"2015-02-10\"\n },\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n ],\n \"nutrient\": [\n {\n \"modifier\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"2331003\",\n \"display\": \"Carbohydrate\"\n }\n ]\n },\n \"amount\": {\n \"value\": 75,\n \"unit\": \"grams\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/NutritionOrder", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NutritionOrder" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "NutritionOrder_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/NutritionOrder?patient=&encounter=&provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&additive=&datetime=&formula=&oraldiet=&status=&supplement=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NutritionOrder" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "encounter", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" - }, - { - "key": "provider", - "value": "", - "description": "The identify of the provider who placed the nutrition order" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "additive", - "value": "", - "description": "Type of module component to add to the feeding" - }, - { - "key": "datetime", - "value": "", - "description": "Return nutrition orders requested on this date" - }, - { - "key": "formula", - "value": "", - "description": "Type of enteral or infant formula" - }, - { - "key": "oraldiet", - "value": "", - "description": "Type of diet that can be consumed orally (i.e., take via the mouth)." - }, - { - "key": "status", - "value": "", - "description": "Status of the nutrition order." - }, - { - "key": "supplement", - "value": "", - "description": "Type of supplement product requested" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "NutritionOrderHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/NutritionOrder/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "NutritionOrder", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Observation", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ObservationHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Observation/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Observation", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ObservationHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Observation/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Observation", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ObservationById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Observation/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Observation", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ObservationById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Observation\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Vital Signs \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/observation-category code \\u0027vital-signs\\u0027 \\u003d \\u0027Vital Signs\\u0027, given as \\u0027Vital Signs\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Body Weight \\u003cspan\\u003e(Details : {LOINC code \\u002729463-7\\u0027 \\u003d \\u0027Body weight\\u0027, given as \\u0027Body Weight\\u0027}; {LOINC code \\u00273141-9\\u0027 \\u003d \\u0027Body weight Measured\\u0027, given as \\u0027Body weight Measured\\u0027}; {SNOMED CT code \\u002727113001\\u0027 \\u003d \\u0027Body weight\\u0027, given as \\u0027Body weight\\u0027}; {http://acme.org/devices/clinical-codes code \\u0027body-weight\\u0027 \\u003d \\u0027body-weight\\u0027, given as \\u0027Body Weight\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eeffective\\u003c/b\\u003e: 28/03/2016\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 185 lbs\\u003cspan\\u003e (Details: UCUM code [lb_av] \\u003d \\u0027lb_av\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body Weight\"\n },\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"3141-9\",\n \"display\": \"Body weight Measured\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"27113001\",\n \"display\": \"Body weight\"\n },\n {\n \"system\": \"http://acme.org/devices/clinical-codes\",\n \"code\": \"body-weight\",\n \"display\": \"Body Weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"effectiveDateTime\": \"2016-03-28\",\n \"valueQuantity\": {\n \"value\": 185,\n \"unit\": \"lbs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[lb_av]\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Observation/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Observation", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ObservationById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Observation/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Observation", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Observation_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Observation\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Vital Signs \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/observation-category code \\u0027vital-signs\\u0027 \\u003d \\u0027Vital Signs\\u0027, given as \\u0027Vital Signs\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Body Weight \\u003cspan\\u003e(Details : {LOINC code \\u002729463-7\\u0027 \\u003d \\u0027Body weight\\u0027, given as \\u0027Body Weight\\u0027}; {LOINC code \\u00273141-9\\u0027 \\u003d \\u0027Body weight Measured\\u0027, given as \\u0027Body weight Measured\\u0027}; {SNOMED CT code \\u002727113001\\u0027 \\u003d \\u0027Body weight\\u0027, given as \\u0027Body weight\\u0027}; {http://acme.org/devices/clinical-codes code \\u0027body-weight\\u0027 \\u003d \\u0027body-weight\\u0027, given as \\u0027Body Weight\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eeffective\\u003c/b\\u003e: 28/03/2016\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 185 lbs\\u003cspan\\u003e (Details: UCUM code [lb_av] \\u003d \\u0027lb_av\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body Weight\"\n },\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"3141-9\",\n \"display\": \"Body weight Measured\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"27113001\",\n \"display\": \"Body weight\"\n },\n {\n \"system\": \"http://acme.org/devices/clinical-codes\",\n \"code\": \"body-weight\",\n \"display\": \"Body Weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"effectiveDateTime\": \"2016-03-28\",\n \"valueQuantity\": {\n \"value\": 185,\n \"unit\": \"lbs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[lb_av]\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Observation", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Observation" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Observation_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Observation?patient=&encounter=&based-on=&context=&device=&performer=&related-target=&specimen=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&identifier=&category=&code-value-concept=&code-value-date=&code-value-quantity=&code-value-string=&combo-code=&combo-code-value-concept=&combo-code-value-quantity=&combo-data-absent-reason=&combo-value-concept=&combo-value-quantity=&component-code=&component-code-value-concept=&component-code-value-quantity=&component-data-absent-reason=&component-value-concept=&component-value-quantity=&data-absent-reason=&method=&related=&related-type=&status=&value-concept=&value-date=&value-quantity=&value-string=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Observation" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "encounter", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" - }, - { - "key": "based-on", - "value": "", - "description": "Reference to the test or procedure request." - }, - { - "key": "context", - "value": "", - "description": "Healthcare event (Episode-of-care or Encounter) related to the observation" - }, - { - "key": "device", - "value": "", - "description": "The Device that generated the observation data." - }, - { - "key": "performer", - "value": "", - "description": "Who performed the observation" - }, - { - "key": "related-target", - "value": "", - "description": "Resource that is related to this one" - }, - { - "key": "specimen", - "value": "", - "description": "Specimen used for this observation" - }, - { - "key": "subject", - "value": "", - "description": "The subject that the observation is about" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "category", - "value": "", - "description": "The classification of the type of observation" - }, - { - "key": "code-value-concept", - "value": "", - "description": "Code and coded value parameter pair" - }, - { - "key": "code-value-date", - "value": "", - "description": "Code and date/time value parameter pair" - }, - { - "key": "code-value-quantity", - "value": "", - "description": "Code and quantity value parameter pair" - }, - { - "key": "code-value-string", - "value": "", - "description": "Code and string value parameter pair" - }, - { - "key": "combo-code", - "value": "", - "description": "The code of the observation type or component type" - }, - { - "key": "combo-code-value-concept", - "value": "", - "description": "Code and coded value parameter pair, including in components" - }, - { - "key": "combo-code-value-quantity", - "value": "", - "description": "Code and quantity value parameter pair, including in components" - }, - { - "key": "combo-data-absent-reason", - "value": "", - "description": "The reason why the expected value in the element Observation.value[x] or Observation.component.value[x] is missing." - }, - { - "key": "combo-value-concept", - "value": "", - "description": "The value or component value of the observation, if the value is a CodeableConcept" - }, - { - "key": "combo-value-quantity", - "value": "", - "description": "The value or component value of the observation, if the value is a Quantity, or a SampledData (just search on the bounds of the values in sampled data)" - }, - { - "key": "component-code", - "value": "", - "description": "The component code of the observation type" - }, - { - "key": "component-code-value-concept", - "value": "", - "description": "Component code and component coded value parameter pair" - }, - { - "key": "component-code-value-quantity", - "value": "", - "description": "Component code and component quantity value parameter pair" - }, - { - "key": "component-data-absent-reason", - "value": "", - "description": "The reason why the expected value in the element Observation.component.value[x] is missing." - }, - { - "key": "component-value-concept", - "value": "", - "description": "The value of the component observation, if the value is a CodeableConcept" - }, - { - "key": "component-value-quantity", - "value": "", - "description": "The value of the component observation, if the value is a Quantity, or a SampledData (just search on the bounds of the values in sampled data)" - }, - { - "key": "data-absent-reason", - "value": "", - "description": "The reason why the expected value in the element Observation.value[x] is missing." - }, - { - "key": "method", - "value": "", - "description": "The method used for the observation" - }, - { - "key": "related", - "value": "", - "description": "Related Observations - search on related-type and related-target together" - }, - { - "key": "related-type", - "value": "", - "description": "has-member | derived-from | sequel-to | replaces | qualified-by | interfered-by" - }, - { - "key": "status", - "value": "", - "description": "The status of the observation" - }, - { - "key": "value-concept", - "value": "", - "description": "The value of the observation, if the value is a CodeableConcept" - }, - { - "key": "value-date", - "value": "", - "description": "The value of the observation, if the value is a date or period of time" - }, - { - "key": "value-quantity", - "value": "", - "description": "The value of the observation, if the value is a Quantity, or a SampledData (just search on the bounds of the values in sampled data)" - }, - { - "key": "value-string", - "value": "", - "description": "The value of the observation, if the value is a string, and also searches in CodeableConcept.text" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ObservationHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Observation/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Observation", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Operation Definition", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "OperationDefinitionHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/OperationDefinition/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationDefinition", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OperationDefinitionHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/OperationDefinition/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationDefinition", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "OperationDefinitionById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/OperationDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OperationDefinitionById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"OperationDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://h7.org/fhir/OperationDefinition/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: B\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Populate Questionnaire\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ekind\\u003c/b\\u003e: operation\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 04/08/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: Acme Healthcare Services\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Limited implementation of the Populate Questionnaire implementation\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United Kingdom of Great Britain and Northern Ireland (the) \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027GB\\u0027 \\u003d \\u0027United Kingdom of Great Britain and Northern Ireland\\u0027, given as \\u0027United Kingdom of Great Britain and Northern Ireland (the)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: populate\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecomment\\u003c/b\\u003e: Only implemented for Labs and Medications so far\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebase\\u003c/b\\u003e: \\u003ca\\u003eOperationDefinition/Questionnaire-populate\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e: Questionnaire\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esystem\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einstance\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparameter\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: subject\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euse\\u003c/b\\u003e: in\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emin\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emax\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The resource that is to be the *QuestionnaireResponse.subject*. The [[[QuestionnaireResponse]]] instance will reference the provided subject. In addition, if the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Reference\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparameter\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: local\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euse\\u003c/b\\u003e: in\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emin\\u003c/b\\u003e: 0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emax\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: If the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Reference\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparameter\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: return\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euse\\u003c/b\\u003e: out\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emin\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emax\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The partially (or fully)-populated set of answers for the specified Questionnaire\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: QuestionnaireResponse\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eoverload\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparameterName\\u003c/b\\u003e: subject, local\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eoverload\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparameterName\\u003c/b\\u003e: subject\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecomment\\u003c/b\\u003e: local defaults to false when not passed as a parameter\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://h7.org/fhir/OperationDefinition/example\",\n \"version\": \"B\",\n \"name\": \"Populate Questionnaire\",\n \"status\": \"draft\",\n \"kind\": \"operation\",\n \"date\": \"2015-08-04\",\n \"publisher\": \"Acme Healthcare Services\",\n \"contact\": [\n {\n \"name\": \"System Administrator\",\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"beep@coyote.acme.com\"\n }\n ]\n }\n ],\n \"description\": \"Limited implementation of the Populate Questionnaire implementation\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://build.fhir.org/codesystem-usage-context-type\",\n \"code\": \"venue\",\n \"display\": \"Clinical Venue\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"IMP\",\n \"display\": \"inpatient encounter\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"GB\",\n \"display\": \"United Kingdom of Great Britain and Northern Ireland (the)\"\n }\n ]\n }\n ],\n \"code\": \"populate\",\n \"comment\": \"Only implemented for Labs and Medications so far\",\n \"base\": \"OperationDefinition/Questionnaire-populate\",\n \"resource\": [\n \"Questionnaire\"\n ],\n \"system\": false,\n \"type\": false,\n \"instance\": true,\n \"parameter\": [\n {\n \"name\": \"subject\",\n \"use\": \"in\",\n \"min\": 1,\n \"max\": \"1\",\n \"documentation\": \"The resource that is to be the *QuestionnaireResponse.subject*. The [[[QuestionnaireResponse]]] instance will reference the provided subject. In addition, if the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\",\n \"type\": \"Reference\"\n },\n {\n \"name\": \"local\",\n \"use\": \"in\",\n \"min\": 0,\n \"max\": \"1\",\n \"documentation\": \"If the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\",\n \"type\": \"Reference\"\n },\n {\n \"name\": \"return\",\n \"use\": \"out\",\n \"min\": 1,\n \"max\": \"1\",\n \"documentation\": \"The partially (or fully)-populated set of answers for the specified Questionnaire\",\n \"type\": \"QuestionnaireResponse\"\n }\n ],\n \"overload\": [\n {\n \"parameterName\": [\n \"subject\",\n \"local\"\n ]\n },\n {\n \"parameterName\": [\n \"subject\"\n ],\n \"comment\": \"local defaults to false when not passed as a parameter\"\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/OperationDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OperationDefinitionById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/OperationDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "OperationDefinition_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"OperationDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://h7.org/fhir/OperationDefinition/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: B\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Populate Questionnaire\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ekind\\u003c/b\\u003e: operation\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 04/08/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: Acme Healthcare Services\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Limited implementation of the Populate Questionnaire implementation\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United Kingdom of Great Britain and Northern Ireland (the) \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027GB\\u0027 \\u003d \\u0027United Kingdom of Great Britain and Northern Ireland\\u0027, given as \\u0027United Kingdom of Great Britain and Northern Ireland (the)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: populate\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecomment\\u003c/b\\u003e: Only implemented for Labs and Medications so far\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebase\\u003c/b\\u003e: \\u003ca\\u003eOperationDefinition/Questionnaire-populate\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e: Questionnaire\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esystem\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einstance\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparameter\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: subject\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euse\\u003c/b\\u003e: in\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emin\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emax\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The resource that is to be the *QuestionnaireResponse.subject*. The [[[QuestionnaireResponse]]] instance will reference the provided subject. In addition, if the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Reference\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparameter\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: local\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euse\\u003c/b\\u003e: in\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emin\\u003c/b\\u003e: 0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emax\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: If the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Reference\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparameter\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: return\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euse\\u003c/b\\u003e: out\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emin\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emax\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The partially (or fully)-populated set of answers for the specified Questionnaire\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: QuestionnaireResponse\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eoverload\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparameterName\\u003c/b\\u003e: subject, local\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eoverload\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparameterName\\u003c/b\\u003e: subject\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecomment\\u003c/b\\u003e: local defaults to false when not passed as a parameter\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://h7.org/fhir/OperationDefinition/example\",\n \"version\": \"B\",\n \"name\": \"Populate Questionnaire\",\n \"status\": \"draft\",\n \"kind\": \"operation\",\n \"date\": \"2015-08-04\",\n \"publisher\": \"Acme Healthcare Services\",\n \"contact\": [\n {\n \"name\": \"System Administrator\",\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"beep@coyote.acme.com\"\n }\n ]\n }\n ],\n \"description\": \"Limited implementation of the Populate Questionnaire implementation\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://build.fhir.org/codesystem-usage-context-type\",\n \"code\": \"venue\",\n \"display\": \"Clinical Venue\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"IMP\",\n \"display\": \"inpatient encounter\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"GB\",\n \"display\": \"United Kingdom of Great Britain and Northern Ireland (the)\"\n }\n ]\n }\n ],\n \"code\": \"populate\",\n \"comment\": \"Only implemented for Labs and Medications so far\",\n \"base\": \"OperationDefinition/Questionnaire-populate\",\n \"resource\": [\n \"Questionnaire\"\n ],\n \"system\": false,\n \"type\": false,\n \"instance\": true,\n \"parameter\": [\n {\n \"name\": \"subject\",\n \"use\": \"in\",\n \"min\": 1,\n \"max\": \"1\",\n \"documentation\": \"The resource that is to be the *QuestionnaireResponse.subject*. The [[[QuestionnaireResponse]]] instance will reference the provided subject. In addition, if the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\",\n \"type\": \"Reference\"\n },\n {\n \"name\": \"local\",\n \"use\": \"in\",\n \"min\": 0,\n \"max\": \"1\",\n \"documentation\": \"If the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\",\n \"type\": \"Reference\"\n },\n {\n \"name\": \"return\",\n \"use\": \"out\",\n \"min\": 1,\n \"max\": \"1\",\n \"documentation\": \"The partially (or fully)-populated set of answers for the specified Questionnaire\",\n \"type\": \"QuestionnaireResponse\"\n }\n ],\n \"overload\": [\n {\n \"parameterName\": [\n \"subject\",\n \"local\"\n ]\n },\n {\n \"parameterName\": [\n \"subject\"\n ],\n \"comment\": \"local defaults to false when not passed as a parameter\"\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/OperationDefinition", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationDefinition" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OperationDefinition_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/OperationDefinition?base=¶m-profile=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&description=&instance=&jurisdiction=&kind=&name=&publisher=&status=&system=&type=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationDefinition" - ], - "query": [ - { - "key": "base", - "value": "", - "description": "Marks this as a profile of the base" - }, - { - "key": "param-profile", - "value": "", - "description": "Profile on the type" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Name used to invoke the operation" - }, - { - "key": "date", - "value": "", - "description": "The operation definition publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the operation definition" - }, - { - "key": "instance", - "value": "", - "description": "Invoke on an instance?" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the operation definition" - }, - { - "key": "kind", - "value": "", - "description": "operation | query" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the operation definition" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the operation definition" - }, - { - "key": "status", - "value": "", - "description": "The current status of the operation definition" - }, - { - "key": "system", - "value": "", - "description": "Invoke at the system level?" - }, - { - "key": "type", - "value": "", - "description": "Invole at the type level?" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the operation definition" - }, - { - "key": "version", - "value": "", - "description": "The business version of the operation definition" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OperationDefinitionHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/OperationDefinition/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationDefinition", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Operation Outcome", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "OperationOutcomeHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/OperationOutcome/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationOutcome", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OperationOutcomeHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/OperationOutcome/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationOutcome", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "OperationOutcomeById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/OperationOutcome/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationOutcome", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OperationOutcomeById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"OperationOutcome\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eThe code \\u0026quot;W\\u0026quot; is not known and not legal Patient.gender.\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"issue\": [\n {\n \"severity\": \"error\",\n \"code\": \"code-invalid\",\n \"details\": {\n \"text\": \"The code \\\"W\\\" is not known and not legal in this context\"\n },\n \"diagnostics\": \"Acme.Interop.FHIRProcessors.Patient.processGender line 2453\",\n \"location\": [\n \"/f:Patient/f:gender\"\n ],\n \"expression\": [\n \"Patient.gender\"\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/OperationOutcome/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationOutcome", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OperationOutcomeById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/OperationOutcome/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationOutcome", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "OperationOutcome_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"OperationOutcome\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eThe code \\u0026quot;W\\u0026quot; is not known and not legal Patient.gender.\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"issue\": [\n {\n \"severity\": \"error\",\n \"code\": \"code-invalid\",\n \"details\": {\n \"text\": \"The code \\\"W\\\" is not known and not legal in this context\"\n },\n \"diagnostics\": \"Acme.Interop.FHIRProcessors.Patient.processGender line 2453\",\n \"location\": [\n \"/f:Patient/f:gender\"\n ],\n \"expression\": [\n \"Patient.gender\"\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/OperationOutcome", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationOutcome" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OperationOutcome_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/OperationOutcome?_id=&_lastUpdated=&_profile=&_security=&_tag=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationOutcome" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OperationOutcomeHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/OperationOutcome/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "OperationOutcome", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Organization", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "OrganizationHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Organization/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Organization", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OrganizationHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Organization/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Organization", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "OrganizationById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Organization/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Organization", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OrganizationById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Organization\",\n \"id\": \"hl7\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n Health Level Seven International\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\t3300 Washtenaw Avenue, Suite 227\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\tAnn Arbor, MI 48104\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\tUSA\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\t(+1) 734-677-7777 (phone)\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\t(+1) 734-677-6622 (fax)\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\tE-mail: \\n \\u003ca href\\u003d\\\"mailto:hq@HL7.org\\\"\\u003ehq@HL7.org\\u003c/a\\u003e\\n \\n \\u003c/div\\u003e\"\n },\n \"name\": \"Health Level Seven International\",\n \"alias\": [\n \"HL7 International\"\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"(+1) 734-677-7777\"\n },\n {\n \"system\": \"fax\",\n \"value\": \"(+1) 734-677-6622\"\n },\n {\n \"system\": \"email\",\n \"value\": \"hq@HL7.org\"\n }\n ],\n \"address\": [\n {\n \"line\": [\n \"3300 Washtenaw Avenue, Suite 227\"\n ],\n \"city\": \"Ann Arbor\",\n \"state\": \"MI\",\n \"postalCode\": \"48104\",\n \"country\": \"USA\"\n }\n ],\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Organization/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Organization", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OrganizationById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Organization/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Organization", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Organization_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Organization\",\n \"id\": \"hl7\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n Health Level Seven International\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\t3300 Washtenaw Avenue, Suite 227\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\tAnn Arbor, MI 48104\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\tUSA\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\t(+1) 734-677-7777 (phone)\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\t(+1) 734-677-6622 (fax)\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\tE-mail: \\n \\u003ca href\\u003d\\\"mailto:hq@HL7.org\\\"\\u003ehq@HL7.org\\u003c/a\\u003e\\n \\n \\u003c/div\\u003e\"\n },\n \"name\": \"Health Level Seven International\",\n \"alias\": [\n \"HL7 International\"\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"(+1) 734-677-7777\"\n },\n {\n \"system\": \"fax\",\n \"value\": \"(+1) 734-677-6622\"\n },\n {\n \"system\": \"email\",\n \"value\": \"hq@HL7.org\"\n }\n ],\n \"address\": [\n {\n \"line\": [\n \"3300 Washtenaw Avenue, Suite 227\"\n ],\n \"city\": \"Ann Arbor\",\n \"state\": \"MI\",\n \"postalCode\": \"48104\",\n \"country\": \"USA\"\n }\n ],\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Organization", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Organization" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Organization_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Organization?endpoint=&partof=&_id=&_lastUpdated=&_profile=&_security=&_tag=&active=&address=&address-city=&address-country=&address-postalcode=&address-state=&address-use=&identifier=&name=&phonetic=&type=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Organization" - ], - "query": [ - { - "key": "endpoint", - "value": "", - "description": "Technical endpoints providing access to services operated for the organization" - }, - { - "key": "partof", - "value": "", - "description": "An organization of which this organization forms a part" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "active", - "value": "", - "description": "A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text" - }, - { - "key": "address", - "value": "", - "description": "A (part of the) address of the organization" - }, - { - "key": "address-city", - "value": "", - "description": "A city specified in an address" - }, - { - "key": "address-country", - "value": "", - "description": "A country specified in an address" - }, - { - "key": "address-postalcode", - "value": "", - "description": "A postal code specified in an address" - }, - { - "key": "address-state", - "value": "", - "description": "A state specified in an address" - }, - { - "key": "address-use", - "value": "", - "description": "A use code specified in an address" - }, - { - "key": "identifier", - "value": "", - "description": "Any identifier for the organization (not the accreditation issuer's identifier)" - }, - { - "key": "name", - "value": "", - "description": "A portion of the organization's name or alias" - }, - { - "key": "phonetic", - "value": "", - "description": "A portion of the organization's name using some kind of phonetic matching algorithm" - }, - { - "key": "type", - "value": "", - "description": "A code for the type of organization" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "OrganizationHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Organization/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Organization", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Parameters", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ParametersHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Parameters/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Parameters", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ParametersHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Parameters/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Parameters", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ParametersById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Parameters/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Parameters", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ParametersById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Parameters\",\n \"parameter\": [\n {\n \"name\": \"exact\",\n \"valueBoolean\": true\n },\n {\n \"name\": \"property\",\n \"part\": [\n {\n \"name\": \"code\",\n \"valueCode\": \"focus\"\n },\n {\n \"name\": \"value\",\n \"valueCode\": \"top\"\n }\n ]\n },\n {\n \"name\": \"patient\",\n \"resource\": {\n \"resourceType\": \"Patient\",\n \"id\": \"example\",\n \"name\": [\n {\n \"use\": \"official\",\n \"family\": \"Chalmers\",\n \"given\": [\n \"Peter\",\n \"James\"\n ]\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Parameters/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Parameters", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ParametersById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Parameters/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Parameters", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Parameters_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Parameters\",\n \"parameter\": [\n {\n \"name\": \"exact\",\n \"valueBoolean\": true\n },\n {\n \"name\": \"property\",\n \"part\": [\n {\n \"name\": \"code\",\n \"valueCode\": \"focus\"\n },\n {\n \"name\": \"value\",\n \"valueCode\": \"top\"\n }\n ]\n },\n {\n \"name\": \"patient\",\n \"resource\": {\n \"resourceType\": \"Patient\",\n \"id\": \"example\",\n \"name\": [\n {\n \"use\": \"official\",\n \"family\": \"Chalmers\",\n \"given\": [\n \"Peter\",\n \"James\"\n ]\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Parameters", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Parameters" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Parameters_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Parameters?_id=&_lastUpdated=&_profile=&_security=&_tag=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Parameters" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ParametersHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Parameters/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Parameters", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Patient", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "PatientHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Patient/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Patient", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PatientHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Patient/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Patient", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "PatientById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Patient/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Patient", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PatientById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Patient\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003ctable\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eName\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003ePeter James \\n \\u003cb\\u003eChalmers\\u003c/b\\u003e (\\u0026quot;Jim\\u0026quot;)\\n \\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eAddress\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e534 Erewhon, Pleasantville, Vic, 3999\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eContacts\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eHome: unknown. Work: (03) 5555 6473\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eId\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eMRN: 12345 (Acme Healthcare)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"MR\"\n }\n ]\n },\n \"system\": \"urn:oid:1.2.36.146.595.217.0.1\",\n \"value\": \"12345\",\n \"period\": {\n \"start\": \"2001-05-06\"\n },\n \"assigner\": {\n \"display\": \"Acme Healthcare\"\n }\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"family\": \"Chalmers\",\n \"given\": [\n \"Peter\",\n \"James\"\n ]\n },\n {\n \"use\": \"usual\",\n \"given\": [\n \"Jim\"\n ]\n },\n {\n \"use\": \"maiden\",\n \"family\": \"Windsor\",\n \"given\": [\n \"Peter\",\n \"James\"\n ],\n \"period\": {\n \"end\": \"2002\"\n }\n }\n ],\n \"telecom\": [\n {\n \"use\": \"home\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"(03) 5555 6473\",\n \"use\": \"work\",\n \"rank\": 1\n },\n {\n \"system\": \"phone\",\n \"value\": \"(03) 3410 5613\",\n \"use\": \"mobile\",\n \"rank\": 2\n },\n {\n \"system\": \"phone\",\n \"value\": \"(03) 5555 8834\",\n \"use\": \"old\",\n \"period\": {\n \"end\": \"2014\"\n }\n }\n ],\n \"gender\": \"male\",\n \"birthDate\": \"1974-12-25\",\n \"_birthDate\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/patient-birthTime\",\n \"valueDateTime\": \"1974-12-25T14:35:45-05:00\"\n }\n ]\n },\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"type\": \"both\",\n \"text\": \"534 Erewhon St PeasantVille, Rainbow, Vic 3999\",\n \"line\": [\n \"534 Erewhon St\"\n ],\n \"city\": \"PleasantVille\",\n \"district\": \"Rainbow\",\n \"state\": \"Vic\",\n \"postalCode\": \"3999\",\n \"period\": {\n \"start\": \"1974-12-25\"\n }\n }\n ],\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"N\"\n }\n ]\n }\n ],\n \"name\": {\n \"family\": \"du Marché\",\n \"_family\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/humanname-own-prefix\",\n \"valueString\": \"VV\"\n }\n ]\n },\n \"given\": [\n \"Bénédicte\"\n ]\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+33 (237) 998327\"\n }\n ],\n \"address\": {\n \"use\": \"home\",\n \"type\": \"both\",\n \"line\": [\n \"534 Erewhon St\"\n ],\n \"city\": \"PleasantVille\",\n \"district\": \"Rainbow\",\n \"state\": \"Vic\",\n \"postalCode\": \"3999\",\n \"period\": {\n \"start\": \"1974-12-25\"\n }\n },\n \"gender\": \"female\",\n \"period\": {\n \"start\": \"2012\"\n }\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Patient/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Patient", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PatientById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Patient/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Patient", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Patient_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Patient\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003ctable\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eName\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003ePeter James \\n \\u003cb\\u003eChalmers\\u003c/b\\u003e (\\u0026quot;Jim\\u0026quot;)\\n \\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eAddress\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e534 Erewhon, Pleasantville, Vic, 3999\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eContacts\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eHome: unknown. Work: (03) 5555 6473\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eId\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eMRN: 12345 (Acme Healthcare)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"MR\"\n }\n ]\n },\n \"system\": \"urn:oid:1.2.36.146.595.217.0.1\",\n \"value\": \"12345\",\n \"period\": {\n \"start\": \"2001-05-06\"\n },\n \"assigner\": {\n \"display\": \"Acme Healthcare\"\n }\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"family\": \"Chalmers\",\n \"given\": [\n \"Peter\",\n \"James\"\n ]\n },\n {\n \"use\": \"usual\",\n \"given\": [\n \"Jim\"\n ]\n },\n {\n \"use\": \"maiden\",\n \"family\": \"Windsor\",\n \"given\": [\n \"Peter\",\n \"James\"\n ],\n \"period\": {\n \"end\": \"2002\"\n }\n }\n ],\n \"telecom\": [\n {\n \"use\": \"home\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"(03) 5555 6473\",\n \"use\": \"work\",\n \"rank\": 1\n },\n {\n \"system\": \"phone\",\n \"value\": \"(03) 3410 5613\",\n \"use\": \"mobile\",\n \"rank\": 2\n },\n {\n \"system\": \"phone\",\n \"value\": \"(03) 5555 8834\",\n \"use\": \"old\",\n \"period\": {\n \"end\": \"2014\"\n }\n }\n ],\n \"gender\": \"male\",\n \"birthDate\": \"1974-12-25\",\n \"_birthDate\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/patient-birthTime\",\n \"valueDateTime\": \"1974-12-25T14:35:45-05:00\"\n }\n ]\n },\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"type\": \"both\",\n \"text\": \"534 Erewhon St PeasantVille, Rainbow, Vic 3999\",\n \"line\": [\n \"534 Erewhon St\"\n ],\n \"city\": \"PleasantVille\",\n \"district\": \"Rainbow\",\n \"state\": \"Vic\",\n \"postalCode\": \"3999\",\n \"period\": {\n \"start\": \"1974-12-25\"\n }\n }\n ],\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"N\"\n }\n ]\n }\n ],\n \"name\": {\n \"family\": \"du Marché\",\n \"_family\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/humanname-own-prefix\",\n \"valueString\": \"VV\"\n }\n ]\n },\n \"given\": [\n \"Bénédicte\"\n ]\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+33 (237) 998327\"\n }\n ],\n \"address\": {\n \"use\": \"home\",\n \"type\": \"both\",\n \"line\": [\n \"534 Erewhon St\"\n ],\n \"city\": \"PleasantVille\",\n \"district\": \"Rainbow\",\n \"state\": \"Vic\",\n \"postalCode\": \"3999\",\n \"period\": {\n \"start\": \"1974-12-25\"\n }\n },\n \"gender\": \"female\",\n \"period\": {\n \"start\": \"2012\"\n }\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Patient", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Patient" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Patient_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Patient?general-practitioner=&link=&organization=&_id=&_lastUpdated=&_profile=&_security=&_tag=&active=&address=&address-city=&address-country=&address-postalcode=&address-state=&address-use=&animal-breed=&animal-species=&birthdate=&death-date=&deceased=&email=&family=&gender=&given=&identifier=&language=&name=&phone=&phonetic=&telecom=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Patient" - ], - "query": [ - { - "key": "general-practitioner", - "value": "", - "description": "Patient's nominated general practitioner, not the organization that manages the record" - }, - { - "key": "link", - "value": "", - "description": "All patients linked to the given patient" - }, - { - "key": "organization", - "value": "", - "description": "The organization at which this person is a patient" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "active", - "value": "", - "description": "Whether the patient record is active" - }, - { - "key": "address", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Practitioner](practitioner.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Person](person.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Patient](patient.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text" - }, - { - "key": "address-city", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A city specified in an address\r\n* [Practitioner](practitioner.html): A city specified in an address\r\n* [Person](person.html): A city specified in an address\r\n* [Patient](patient.html): A city specified in an address" - }, - { - "key": "address-country", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A country specified in an address\r\n* [Practitioner](practitioner.html): A country specified in an address\r\n* [Person](person.html): A country specified in an address\r\n* [Patient](patient.html): A country specified in an address" - }, - { - "key": "address-postalcode", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A postal code specified in an address\r\n* [Practitioner](practitioner.html): A postalCode specified in an address\r\n* [Person](person.html): A postal code specified in an address\r\n* [Patient](patient.html): A postalCode specified in an address" - }, - { - "key": "address-state", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A state specified in an address\r\n* [Practitioner](practitioner.html): A state specified in an address\r\n* [Person](person.html): A state specified in an address\r\n* [Patient](patient.html): A state specified in an address" - }, - { - "key": "address-use", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A use code specified in an address\r\n* [Practitioner](practitioner.html): A use code specified in an address\r\n* [Person](person.html): A use code specified in an address\r\n* [Patient](patient.html): A use code specified in an address" - }, - { - "key": "animal-breed", - "value": "", - "description": "The breed for animal patients" - }, - { - "key": "animal-species", - "value": "", - "description": "The species for animal patients" - }, - { - "key": "birthdate", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): The Related Person's date of birth\r\n* [Person](person.html): The person's date of birth\r\n* [Patient](patient.html): The patient's date of birth" - }, - { - "key": "death-date", - "value": "", - "description": "The date of death has been provided and satisfies this search value" - }, - { - "key": "deceased", - "value": "", - "description": "This patient has been marked as deceased, or as a death date entered" - }, - { - "key": "email", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in an email contact\r\n* [RelatedPerson](relatedperson.html): A value in an email contact\r\n* [Practitioner](practitioner.html): A value in an email contact\r\n* [Person](person.html): A value in an email contact\r\n* [Patient](patient.html): A value in an email contact" - }, - { - "key": "family", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Practitioner](practitioner.html): A portion of the family name\r\n* [Patient](patient.html): A portion of the family name of the patient" - }, - { - "key": "gender", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): Gender of the related person\r\n* [Practitioner](practitioner.html): Gender of the practitioner\r\n* [Person](person.html): The gender of the person\r\n* [Patient](patient.html): Gender of the patient" - }, - { - "key": "given", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Practitioner](practitioner.html): A portion of the given name\r\n* [Patient](patient.html): A portion of the given name of the patient" - }, - { - "key": "identifier", - "value": "", - "description": "A patient identifier" - }, - { - "key": "language", - "value": "", - "description": "Language code (irrespective of use value)" - }, - { - "key": "name", - "value": "", - "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text" - }, - { - "key": "phone", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in a phone contact\r\n* [RelatedPerson](relatedperson.html): A value in a phone contact\r\n* [Practitioner](practitioner.html): A value in a phone contact\r\n* [Person](person.html): A value in a phone contact\r\n* [Patient](patient.html): A value in a phone contact" - }, - { - "key": "phonetic", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Practitioner](practitioner.html): A portion of either family or given name using some kind of phonetic matching algorithm\r\n* [Person](person.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Patient](patient.html): A portion of either family or given name using some kind of phonetic matching algorithm" - }, - { - "key": "telecom", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): The value in any kind of contact\r\n* [RelatedPerson](relatedperson.html): The value in any kind of contact\r\n* [Practitioner](practitioner.html): The value in any kind of contact\r\n* [Person](person.html): The value in any kind of contact\r\n* [Patient](patient.html): The value in any kind of telecom details of the patient" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PatientHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Patient/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Patient", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Payment Notice", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "PaymentNoticeHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PaymentNotice/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentNotice", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PaymentNoticeHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PaymentNotice/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentNotice", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "PaymentNoticeById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PaymentNotice/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentNotice", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PaymentNoticeById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"PaymentNotice\",\n \"id\": \"77654\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the PaymentNotice\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://benefitsinc.com/paymentnotice\",\n \"value\": \"776543\"\n }\n ],\n \"status\": \"active\",\n \"request\": {\n \"reference\": \"http://benefitsinc.com/fhir/claim/12345\"\n },\n \"response\": {\n \"reference\": \"http://benefitsinc.com/fhir/claimresponse/CR12345\"\n },\n \"created\": \"2014-08-16\",\n \"provider\": {\n \"reference\": \"Organization/1\"\n },\n \"payment\": {\n \"reference\": \"PaymentReconciliation/ER2500\"\n },\n \"paymentDate\": \"2014-08-15\",\n \"payee\": {\n \"reference\": \"Organization/1\"\n },\n \"recipient\": {\n \"identifier\": {\n \"system\": \"http://regulators.gov\",\n \"value\": \"AB123\"\n }\n },\n \"amount\": {\n \"value\": 12500.00,\n \"currency\": \"USD\"\n },\n \"paymentStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/paymentstatus\",\n \"code\": \"paid\"\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/PaymentNotice/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentNotice", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PaymentNoticeById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PaymentNotice/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentNotice", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "PaymentNotice_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"PaymentNotice\",\n \"id\": \"77654\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the PaymentNotice\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://benefitsinc.com/paymentnotice\",\n \"value\": \"776543\"\n }\n ],\n \"status\": \"active\",\n \"request\": {\n \"reference\": \"http://benefitsinc.com/fhir/claim/12345\"\n },\n \"response\": {\n \"reference\": \"http://benefitsinc.com/fhir/claimresponse/CR12345\"\n },\n \"created\": \"2014-08-16\",\n \"provider\": {\n \"reference\": \"Organization/1\"\n },\n \"payment\": {\n \"reference\": \"PaymentReconciliation/ER2500\"\n },\n \"paymentDate\": \"2014-08-15\",\n \"payee\": {\n \"reference\": \"Organization/1\"\n },\n \"recipient\": {\n \"identifier\": {\n \"system\": \"http://regulators.gov\",\n \"value\": \"AB123\"\n }\n },\n \"amount\": {\n \"value\": 12500.00,\n \"currency\": \"USD\"\n },\n \"paymentStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/paymentstatus\",\n \"code\": \"paid\"\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/PaymentNotice", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentNotice" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PaymentNotice_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PaymentNotice?organization=&provider=&request=&response=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&identifier=&payment-status=&statusdate=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentNotice" - ], - "query": [ - { - "key": "organization", - "value": "", - "description": "The organization who generated this resource" - }, - { - "key": "provider", - "value": "", - "description": "The reference to the provider" - }, - { - "key": "request", - "value": "", - "description": "The Claim" - }, - { - "key": "response", - "value": "", - "description": "The ClaimResponse" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "created", - "value": "", - "description": "Creation date fro the notice" - }, - { - "key": "identifier", - "value": "", - "description": "The business identifier of the notice" - }, - { - "key": "payment-status", - "value": "", - "description": "The type of payment notice" - }, - { - "key": "statusdate", - "value": "", - "description": "The date of the payment action" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PaymentNoticeHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PaymentNotice/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentNotice", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Payment Reconciliation", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "PaymentReconciliationHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PaymentReconciliation/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentReconciliation", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PaymentReconciliationHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PaymentReconciliation/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentReconciliation", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "PaymentReconciliationById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PaymentReconciliation/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentReconciliation", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PaymentReconciliationById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"PaymentReconciliation\",\n \"id\": \"ER2500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the PaymentReconciliation\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/enrollmentresponse\",\n \"value\": \"781234\"\n }\n ],\n \"status\": \"active\",\n \"period\": {\n \"start\": \"2014-08-16\",\n \"end\": \"2014-08-31\"\n },\n \"created\": \"2014-08-16\",\n \"paymentIssuer\": {\n \"reference\": \"Organization/2\"\n },\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/eligibility/225476332402\"\n },\n \"requestor\": {\n \"reference\": \"Organization/1\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"2014 August mid-month settlement.\",\n \"paymentDate\": \"2014-08-01\",\n \"paymentAmount\": {\n \"value\": 7000.00,\n \"currency\": \"USD\"\n },\n \"paymentIdentifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018\",\n \"value\": \"10-12345\"\n },\n \"detail\": [\n {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018/detail\",\n \"value\": \"10-12345-001\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payment-type\",\n \"code\": \"payment\"\n }\n ]\n },\n \"request\": {\n \"identifier\": {\n \"system\": \"http://happyvalleyclinic.com/claim\",\n \"value\": \"AB12345\"\n }\n },\n \"submitter\": {\n \"reference\": \"Organization/1\"\n },\n \"response\": {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/fhir/claimresponse\",\n \"value\": \"CR20140815-AB12345\"\n }\n },\n \"date\": \"2014-08-16\",\n \"payee\": {\n \"reference\": \"Organization/1\"\n },\n \"amount\": {\n \"value\": 3500.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018/detail\",\n \"value\": \"10-12345-002\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payment-type\",\n \"code\": \"payment\"\n }\n ]\n },\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/oralhealthclaim/225476332699\"\n },\n \"date\": \"2014-08-12\",\n \"amount\": {\n \"value\": 4000.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018/detail\",\n \"value\": \"10-12345-003\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payment-type\",\n \"code\": \"advance\"\n }\n ]\n },\n \"date\": \"2014-08-16\",\n \"amount\": {\n \"value\": -1500.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"formCode\": {\n \"coding\": [\n {\n \"system\": \"http://ncforms.org/formid\",\n \"code\": \"PAYREC/2016/01B\"\n }\n ]\n },\n \"processNote\": [\n {\n \"type\": \"display\",\n \"text\": \"Due to the year end holiday the cutoff for submissions for December will be the 28th.\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/PaymentReconciliation/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentReconciliation", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PaymentReconciliationById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PaymentReconciliation/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentReconciliation", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "PaymentReconciliation_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"PaymentReconciliation\",\n \"id\": \"ER2500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the PaymentReconciliation\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/enrollmentresponse\",\n \"value\": \"781234\"\n }\n ],\n \"status\": \"active\",\n \"period\": {\n \"start\": \"2014-08-16\",\n \"end\": \"2014-08-31\"\n },\n \"created\": \"2014-08-16\",\n \"paymentIssuer\": {\n \"reference\": \"Organization/2\"\n },\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/eligibility/225476332402\"\n },\n \"requestor\": {\n \"reference\": \"Organization/1\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"2014 August mid-month settlement.\",\n \"paymentDate\": \"2014-08-01\",\n \"paymentAmount\": {\n \"value\": 7000.00,\n \"currency\": \"USD\"\n },\n \"paymentIdentifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018\",\n \"value\": \"10-12345\"\n },\n \"detail\": [\n {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018/detail\",\n \"value\": \"10-12345-001\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payment-type\",\n \"code\": \"payment\"\n }\n ]\n },\n \"request\": {\n \"identifier\": {\n \"system\": \"http://happyvalleyclinic.com/claim\",\n \"value\": \"AB12345\"\n }\n },\n \"submitter\": {\n \"reference\": \"Organization/1\"\n },\n \"response\": {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/fhir/claimresponse\",\n \"value\": \"CR20140815-AB12345\"\n }\n },\n \"date\": \"2014-08-16\",\n \"payee\": {\n \"reference\": \"Organization/1\"\n },\n \"amount\": {\n \"value\": 3500.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018/detail\",\n \"value\": \"10-12345-002\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payment-type\",\n \"code\": \"payment\"\n }\n ]\n },\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/oralhealthclaim/225476332699\"\n },\n \"date\": \"2014-08-12\",\n \"amount\": {\n \"value\": 4000.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018/detail\",\n \"value\": \"10-12345-003\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payment-type\",\n \"code\": \"advance\"\n }\n ]\n },\n \"date\": \"2014-08-16\",\n \"amount\": {\n \"value\": -1500.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"formCode\": {\n \"coding\": [\n {\n \"system\": \"http://ncforms.org/formid\",\n \"code\": \"PAYREC/2016/01B\"\n }\n ]\n },\n \"processNote\": [\n {\n \"type\": \"display\",\n \"text\": \"Due to the year end holiday the cutoff for submissions for December will be the 28th.\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/PaymentReconciliation", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentReconciliation" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PaymentReconciliation_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PaymentReconciliation?organization=&request=&request-organization=&request-provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&disposition=&identifier=&outcome=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentReconciliation" - ], - "query": [ - { - "key": "organization", - "value": "", - "description": "The organization who generated this resource" - }, - { - "key": "request", - "value": "", - "description": "The reference to the claim" - }, - { - "key": "request-organization", - "value": "", - "description": "The organization who generated this resource" - }, - { - "key": "request-provider", - "value": "", - "description": "The reference to the provider who sumbitted the claim" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "created", - "value": "", - "description": "The creation date" - }, - { - "key": "disposition", - "value": "", - "description": "The contents of the disposition message" - }, - { - "key": "identifier", - "value": "", - "description": "The business identifier of the Explanation of Benefit" - }, - { - "key": "outcome", - "value": "", - "description": "The processing outcome" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PaymentReconciliationHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PaymentReconciliation/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PaymentReconciliation", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Person", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "PersonHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Person/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Person", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PersonHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Person/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Person", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "PersonById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Person/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Person", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PersonById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Person\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eName\\u003c/td\\u003e\\n \\u003ctd\\u003ePeter James \\u003cb\\u003eChalmers\\u003c/b\\u003e (\\u0026quot;Jim\\u0026quot;)\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eAddress\\u003c/td\\u003e\\n \\u003ctd\\u003e534 Erewhon, Pleasantville, Vic, 3999\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eContacts\\u003c/td\\u003e\\n \\u003ctd\\u003eHome: unknown. Work: (03) 5555 6473\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eId\\u003c/td\\u003e\\n \\u003ctd\\u003eMRN: 12345 (Acme Healthcare)\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"MR\"\n }\n ]\n },\n \"system\": \"urn:oid:1.2.36.146.595.217.0.1\",\n \"value\": \"12345\",\n \"period\": {\n \"start\": \"2001-05-06\"\n },\n \"assigner\": {\n \"display\": \"Acme Healthcare\"\n }\n }\n ],\n \"name\": [\n {\n \"use\": \"official\",\n \"family\": \"Chalmers\",\n \"given\": [\n \"Peter\",\n \"James\"\n ]\n },\n {\n \"use\": \"usual\",\n \"given\": [\n \"Jim\"\n ]\n }\n ],\n \"telecom\": [\n {\n \"use\": \"home\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"(03) 5555 6473\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"Jim@example.org\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"male\",\n \"birthDate\": \"1974-12-25\",\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"534 Erewhon St\"\n ],\n \"city\": \"PleasantVille\",\n \"state\": \"Vic\",\n \"postalCode\": \"3999\"\n }\n ],\n \"active\": true,\n \"link\": [\n {\n \"target\": {\n \"reference\": \"RelatedPerson/peter\",\n \"display\": \"Peter Chalmers\"\n }\n },\n {\n \"target\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Person/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Person", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PersonById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Person/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Person", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Person_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Person\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eName\\u003c/td\\u003e\\n \\u003ctd\\u003ePeter James \\u003cb\\u003eChalmers\\u003c/b\\u003e (\\u0026quot;Jim\\u0026quot;)\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eAddress\\u003c/td\\u003e\\n \\u003ctd\\u003e534 Erewhon, Pleasantville, Vic, 3999\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eContacts\\u003c/td\\u003e\\n \\u003ctd\\u003eHome: unknown. Work: (03) 5555 6473\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eId\\u003c/td\\u003e\\n \\u003ctd\\u003eMRN: 12345 (Acme Healthcare)\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"MR\"\n }\n ]\n },\n \"system\": \"urn:oid:1.2.36.146.595.217.0.1\",\n \"value\": \"12345\",\n \"period\": {\n \"start\": \"2001-05-06\"\n },\n \"assigner\": {\n \"display\": \"Acme Healthcare\"\n }\n }\n ],\n \"name\": [\n {\n \"use\": \"official\",\n \"family\": \"Chalmers\",\n \"given\": [\n \"Peter\",\n \"James\"\n ]\n },\n {\n \"use\": \"usual\",\n \"given\": [\n \"Jim\"\n ]\n }\n ],\n \"telecom\": [\n {\n \"use\": \"home\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"(03) 5555 6473\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"Jim@example.org\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"male\",\n \"birthDate\": \"1974-12-25\",\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"534 Erewhon St\"\n ],\n \"city\": \"PleasantVille\",\n \"state\": \"Vic\",\n \"postalCode\": \"3999\"\n }\n ],\n \"active\": true,\n \"link\": [\n {\n \"target\": {\n \"reference\": \"RelatedPerson/peter\",\n \"display\": \"Peter Chalmers\"\n }\n },\n {\n \"target\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Person", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Person" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Person_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Person?link=&organization=&patient=&practitioner=&relatedperson=&_id=&_lastUpdated=&_profile=&_security=&_tag=&address=&address-city=&address-country=&address-postalcode=&address-state=&address-use=&birthdate=&email=&gender=&phone=&phonetic=&telecom=&identifier=&name=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Person" - ], - "query": [ - { - "key": "link", - "value": "", - "description": "Any link has this Patient, Person, RelatedPerson or Practitioner reference" - }, - { - "key": "organization", - "value": "", - "description": "The organization at which this person record is being managed" - }, - { - "key": "patient", - "value": "", - "description": "The Person links to this Patient" - }, - { - "key": "practitioner", - "value": "", - "description": "The Person links to this Practitioner" - }, - { - "key": "relatedperson", - "value": "", - "description": "The Person links to this RelatedPerson" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "address", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Practitioner](practitioner.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Person](person.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Patient](patient.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text" - }, - { - "key": "address-city", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A city specified in an address\r\n* [Practitioner](practitioner.html): A city specified in an address\r\n* [Person](person.html): A city specified in an address\r\n* [Patient](patient.html): A city specified in an address" - }, - { - "key": "address-country", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A country specified in an address\r\n* [Practitioner](practitioner.html): A country specified in an address\r\n* [Person](person.html): A country specified in an address\r\n* [Patient](patient.html): A country specified in an address" - }, - { - "key": "address-postalcode", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A postal code specified in an address\r\n* [Practitioner](practitioner.html): A postalCode specified in an address\r\n* [Person](person.html): A postal code specified in an address\r\n* [Patient](patient.html): A postalCode specified in an address" - }, - { - "key": "address-state", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A state specified in an address\r\n* [Practitioner](practitioner.html): A state specified in an address\r\n* [Person](person.html): A state specified in an address\r\n* [Patient](patient.html): A state specified in an address" - }, - { - "key": "address-use", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A use code specified in an address\r\n* [Practitioner](practitioner.html): A use code specified in an address\r\n* [Person](person.html): A use code specified in an address\r\n* [Patient](patient.html): A use code specified in an address" - }, - { - "key": "birthdate", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): The Related Person's date of birth\r\n* [Person](person.html): The person's date of birth\r\n* [Patient](patient.html): The patient's date of birth" - }, - { - "key": "email", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in an email contact\r\n* [RelatedPerson](relatedperson.html): A value in an email contact\r\n* [Practitioner](practitioner.html): A value in an email contact\r\n* [Person](person.html): A value in an email contact\r\n* [Patient](patient.html): A value in an email contact" - }, - { - "key": "gender", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): Gender of the related person\r\n* [Practitioner](practitioner.html): Gender of the practitioner\r\n* [Person](person.html): The gender of the person\r\n* [Patient](patient.html): Gender of the patient" - }, - { - "key": "phone", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in a phone contact\r\n* [RelatedPerson](relatedperson.html): A value in a phone contact\r\n* [Practitioner](practitioner.html): A value in a phone contact\r\n* [Person](person.html): A value in a phone contact\r\n* [Patient](patient.html): A value in a phone contact" - }, - { - "key": "phonetic", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Practitioner](practitioner.html): A portion of either family or given name using some kind of phonetic matching algorithm\r\n* [Person](person.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Patient](patient.html): A portion of either family or given name using some kind of phonetic matching algorithm" - }, - { - "key": "telecom", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): The value in any kind of contact\r\n* [RelatedPerson](relatedperson.html): The value in any kind of contact\r\n* [Practitioner](practitioner.html): The value in any kind of contact\r\n* [Person](person.html): The value in any kind of contact\r\n* [Patient](patient.html): The value in any kind of telecom details of the patient" - }, - { - "key": "identifier", - "value": "", - "description": "A person Identifier" - }, - { - "key": "name", - "value": "", - "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PersonHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Person/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Person", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Plan Definition", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "PlanDefinitionHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PlanDefinition/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PlanDefinition", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PlanDefinitionHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PlanDefinition/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PlanDefinition", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "PlanDefinitionById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PlanDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PlanDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PlanDefinitionById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"PlanDefinition\",\n \"id\": \"low-suicide-risk-order-set\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003ePlanDefinition/low-suicide-risk-order-set\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eIdentifier: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003emmi:low-suicide-risk-order-set\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTitle: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eLow Suicide Risk Order Set\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003edraft\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDescription: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eOrders to be applied to a patient characterized as low suicide risk.\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003ePurpose: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eThis order set helps ensure consistent application of appropriate orders for the care of low suicide risk patients.\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eUsage: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eThis order set should be applied after assessing a patient for suicide risk, when the findings of that assessment indicate the patient has low suicide risk.\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003eage\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttps://meshb.nlm.nih.gov\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003eD000328\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eAdult\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e87512008\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eMild major depression\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e40379007\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eMajor depression, recurrent, mild\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e394687007\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eLow suicide risk\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e225337009\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicide risk assessment\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003euser\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e309343006\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003ePhysician\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003evenue\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e440655000\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eOutpatient environment\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTopic: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicide risk assessment\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContributor: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003e\\n \\u003cspan\\u003eauthor\\u003c/span\\u003e:\\n \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 50px; padding-right: 25px;\\\"\\u003eMotive Medical Intelligence\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eLibrary: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003eLibrary/suiciderisk-orderset-logic\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicideRiskLogic\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ch2\\u003eActions\\u003c/h2\\u003e\\n \\u003cp style\\u003d\\\"width: 100%;\\\" class\\u003d\\\"hierarchy\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicide Risk Assessment and Outpatient Management\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eConsults and Referrals\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eRefer to outpatient mental health program for evaluation and treatment of mental health conditions now\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cb\\u003econdition: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e#referralToMentalHealthCare\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003edescription: \\u003c/b\\u003e\\n \\u003cspan\\u003erefer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003ecategory: \\u003c/b\\u003e\\n \\u003cspan\\u003ereferral\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eMedications\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eFirst-Line Antidepressants\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eSelective Serotonin Reuptake Inhibitors (Choose a mazimum of one or document reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003ecitalopram 20 mg tablet 1 tablet oral 1 time daily now (30 table; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003econdition: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 150px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 175px;\\\"\\u003e#citalopramPrescription\\u003c/span\\u003e\\n \\u003cspan/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 150px;\\\"\\u003e\\n \\u003cb\\u003ecategory: \\u003c/b\\u003e\\n \\u003cspan\\u003edrug\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan/\\u003e\\n \\u003cspan/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eescitalopram 10 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003efluoxetine 20 mg capsule 1 capsule oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eparoxetine 20 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003esertraline 50 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eDopamine Norepinephrine Reuptake Inhibitors (Choose a maximum of one or document reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eSerotonin Norepinephrine Reuptake Inhibitors (Choose a maximum of one or doument reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eNorepinephrine-Serotonin Modulators (Choose a maximum of one or document reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"ActivityDefinition\",\n \"id\": \"referralToMentalHealthCare\",\n \"status\": \"draft\",\n \"description\": \"refer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\",\n \"kind\": \"ServiceRequest\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"306206005\"\n }\n ],\n \"text\": \"Referral to service (procedure)\"\n },\n \"timingTiming\": {\n \"_event\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/cqf-expression\",\n \"valueExpression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Now()\"\n }\n }\n ]\n }\n ]\n },\n \"participant\": [\n {\n \"type\": \"practitioner\"\n }\n ]\n },\n {\n \"resourceType\": \"ActivityDefinition\",\n \"id\": \"citalopramPrescription\",\n \"status\": \"draft\",\n \"kind\": \"MedicationRequest\",\n \"productReference\": {\n \"reference\": \"#citalopramMedication\"\n },\n \"dosage\": [\n {\n \"text\": \"1 tablet oral 1 time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"code\": \"26643006\",\n \"display\": \"Oral route (qualifier value)\"\n }\n ],\n \"text\": \"Oral route (qualifier value)\"\n },\n \"doseAndRate\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n \"code\": \"ordered\",\n \"display\": \"Ordered\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": 1,\n \"unit\": \"{tbl}\"\n }\n }\n ]\n }\n ],\n \"dynamicValue\": [\n {\n \"path\": \"dispenseRequest.numberOfRepeatsAllowed\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"3\"\n }\n },\n {\n \"path\": \"dispenseRequest.quantity\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"30 \\u0027{tbl}\\u0027\"\n }\n }\n ]\n },\n {\n \"resourceType\": \"Medication\",\n \"id\": \"citalopramMedication\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"200371\"\n }\n ],\n \"text\": \"citalopram\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"385055001\",\n \"display\": \"Tablet dose form\"\n }\n ],\n \"text\": \"Tablet dose form\"\n },\n \"ingredient\": [\n {\n \"itemReference\": {\n \"reference\": \"#citalopramSubstance\"\n },\n \"strength\": {\n \"numerator\": {\n \"value\": 20,\n \"unit\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"{tbl}\"\n }\n }\n }\n ]\n },\n {\n \"resourceType\": \"Substance\",\n \"id\": \"citalopramSubstance\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"2556\"\n }\n ],\n \"text\": \"citalopram\"\n }\n }\n ],\n \"url\": \"http://motivemi.com/artifacts/PlanDefinition/low-suicide-risk-order-set\",\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://motivemi.com/artifacts\",\n \"value\": \"mmi:low-suicide-risk-order-set\"\n }\n ],\n \"version\": \"1.0.0\",\n \"name\": \"LowSuicideRiskOrderSet\",\n \"title\": \"Low Suicide Risk Order Set\",\n \"status\": \"active\",\n \"experimental\": true,\n \"date\": \"2015-08-15\",\n \"publisher\": \"Motive Medical Intelligence\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"description\": \"Orders to be applied to a patient characterized as low suicide risk.\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"https://meshb.nlm.nih.gov\",\n \"code\": \"D000328\",\n \"display\": \"Adult\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"87512008\",\n \"display\": \"Mild major depression\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40379007\",\n \"display\": \"Major depression, recurrent, mild\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394687007\",\n \"display\": \"Low suicide risk\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"225337009\",\n \"display\": \"Suicide risk assessment\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"user\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"309343006\",\n \"display\": \"Physician\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"venue\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"440655000\",\n \"display\": \"Outpatient environment\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"This order set helps ensure consistent application of appropriate orders for the care of low suicide risk patients.\",\n \"usage\": \"This order set should be applied after assessing a patient for suicide risk, when the findings of that assessment indicate the patient has low suicide risk.\",\n \"copyright\": \"© Copyright 2016 Motive Medical Intelligence. All rights reserved.\",\n \"approvalDate\": \"2016-03-12\",\n \"lastReviewDate\": \"2016-08-15\",\n \"effectivePeriod\": {\n \"start\": \"2016-01-01\",\n \"end\": \"2017-12-31\"\n },\n \"topic\": [\n {\n \"text\": \"Suicide risk assessment\"\n }\n ],\n \"author\": [\n {\n \"name\": \"Motive Medical Intelligence\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"derived-from\",\n \"display\": \"Practice Guideline for the Treatment of Patients with Major Depressive Disorder\",\n \"url\": \"http://psychiatryonline.org/pb/assets/raw/sitewide/practice_guidelines/guidelines/mdd.pdf\"\n },\n {\n \"type\": \"composed-of\",\n \"resource\": \"ActivityDefinition/referralPrimaryCareMentalHealth\"\n },\n {\n \"type\": \"composed-of\",\n \"resource\": \"ActivityDefinition/citalopramPrescription\"\n }\n ],\n \"library\": [\n \"Library/suiciderisk-orderset-logic\"\n ],\n \"action\": [\n {\n \"title\": \"Suicide Risk Assessment and Outpatient Management\",\n \"action\": [\n {\n \"title\": \"Consults and Referrals\",\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"any\",\n \"action\": [\n {\n \"textEquivalent\": \"Refer to outpatient mental health program for evaluation and treatment of mental health conditions now\",\n \"definitionCanonical\": \"#referralToMentalHealthCare\",\n \"dynamicValue\": [\n {\n \"path\": \"timing.event\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Now()\"\n }\n },\n {\n \"path\": \"specialty\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Code \\u0027261QM0850X\\u0027 from SuicideRiskLogic.\\\"NUCC Provider Taxonomy\\\" display \\u0027Adult Mental Health\\u0027\"\n }\n },\n {\n \"path\": \"occurrenceDateTime\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.ServiceRequestFulfillmentTime\"\n }\n },\n {\n \"path\": \"subject\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Patient\"\n }\n },\n {\n \"path\": \"requester.agent\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Practitioner\"\n }\n },\n {\n \"path\": \"reasonCode\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessmentScore\"\n }\n },\n {\n \"path\": \"reasonReference\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessment\"\n }\n }\n ]\n }\n ]\n },\n {\n \"title\": \"Medications\",\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"at-most-one\",\n \"action\": [\n {\n \"title\": \"First-Line Antidepressants\",\n \"documentation\": [\n {\n \"type\": \"citation\",\n \"document\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/cqf-qualityOfEvidence\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/evidence-quality\",\n \"code\": \"high\"\n }\n ],\n \"text\": \"High Quality\"\n }\n }\n ],\n \"contentType\": \"text/html\",\n \"url\": \"http://psychiatryonline.org/pb/assets/raw/sitewide/practice_guidelines/guidelines/mdd.pdf\",\n \"title\": \"Practice Guideline for the Treatment of Patients with Major Depressive Disorder\"\n }\n }\n ],\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"at-most-one\",\n \"action\": [\n {\n \"title\": \"Selective Serotonin Reuptake Inhibitors (Choose a mazimum of one or document reasons for exception)\",\n \"documentation\": [\n {\n \"type\": \"citation\",\n \"document\": {\n \"contentType\": \"text/html\",\n \"url\": \"http://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid\\u003d6daeb45c-451d-b135-bf8f-2d6dff4b6b01\",\n \"title\": \"National Library of Medicine. DailyMed website. CITALOPRAM- citalopram hydrobromide tablet, film coated.\"\n }\n }\n ],\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"at-most-one\",\n \"action\": [\n {\n \"textEquivalent\": \"citalopram 20 mg tablet 1 tablet oral 1 time daily now (30 table; 3 refills)\",\n \"definitionCanonical\": \"#citalopramPrescription\",\n \"dynamicValue\": [\n {\n \"path\": \"status\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"\\u0027draft\\u0027\"\n }\n },\n {\n \"path\": \"patient\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Patient\"\n }\n },\n {\n \"path\": \"prescriber\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Practitioner\"\n }\n },\n {\n \"path\": \"reasonCode\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessmentScore\"\n }\n },\n {\n \"path\": \"reasonReference\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessment\"\n }\n }\n ]\n },\n {\n \"textEquivalent\": \"escitalopram 10 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\"\n },\n {\n \"textEquivalent\": \"fluoxetine 20 mg capsule 1 capsule oral 1 time daily now (30 tablet; 3 refills)\"\n },\n {\n \"textEquivalent\": \"paroxetine 20 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\"\n },\n {\n \"textEquivalent\": \"sertraline 50 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\"\n }\n ]\n },\n {\n \"textEquivalent\": \"Dopamine Norepinephrine Reuptake Inhibitors (Choose a maximum of one or document reasons for exception)\"\n },\n {\n \"textEquivalent\": \"Serotonin Norepinephrine Reuptake Inhibitors (Choose a maximum of one or doument reasons for exception)\"\n },\n {\n \"textEquivalent\": \"Norepinephrine-Serotonin Modulators (Choose a maximum of one or document reasons for exception)\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/PlanDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PlanDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PlanDefinitionById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PlanDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PlanDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "PlanDefinition_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"PlanDefinition\",\n \"id\": \"low-suicide-risk-order-set\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003ePlanDefinition/low-suicide-risk-order-set\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eIdentifier: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003emmi:low-suicide-risk-order-set\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTitle: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eLow Suicide Risk Order Set\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003edraft\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDescription: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eOrders to be applied to a patient characterized as low suicide risk.\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003ePurpose: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eThis order set helps ensure consistent application of appropriate orders for the care of low suicide risk patients.\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eUsage: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eThis order set should be applied after assessing a patient for suicide risk, when the findings of that assessment indicate the patient has low suicide risk.\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003eage\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttps://meshb.nlm.nih.gov\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003eD000328\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eAdult\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e87512008\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eMild major depression\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e40379007\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eMajor depression, recurrent, mild\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e394687007\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eLow suicide risk\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e225337009\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicide risk assessment\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003euser\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e309343006\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003ePhysician\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003evenue\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e440655000\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eOutpatient environment\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTopic: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicide risk assessment\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContributor: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003e\\n \\u003cspan\\u003eauthor\\u003c/span\\u003e:\\n \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 50px; padding-right: 25px;\\\"\\u003eMotive Medical Intelligence\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eLibrary: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003eLibrary/suiciderisk-orderset-logic\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicideRiskLogic\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ch2\\u003eActions\\u003c/h2\\u003e\\n \\u003cp style\\u003d\\\"width: 100%;\\\" class\\u003d\\\"hierarchy\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicide Risk Assessment and Outpatient Management\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eConsults and Referrals\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eRefer to outpatient mental health program for evaluation and treatment of mental health conditions now\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cb\\u003econdition: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e#referralToMentalHealthCare\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003edescription: \\u003c/b\\u003e\\n \\u003cspan\\u003erefer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003ecategory: \\u003c/b\\u003e\\n \\u003cspan\\u003ereferral\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eMedications\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eFirst-Line Antidepressants\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eSelective Serotonin Reuptake Inhibitors (Choose a mazimum of one or document reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003ecitalopram 20 mg tablet 1 tablet oral 1 time daily now (30 table; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003econdition: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 150px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 175px;\\\"\\u003e#citalopramPrescription\\u003c/span\\u003e\\n \\u003cspan/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 150px;\\\"\\u003e\\n \\u003cb\\u003ecategory: \\u003c/b\\u003e\\n \\u003cspan\\u003edrug\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan/\\u003e\\n \\u003cspan/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eescitalopram 10 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003efluoxetine 20 mg capsule 1 capsule oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eparoxetine 20 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003esertraline 50 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eDopamine Norepinephrine Reuptake Inhibitors (Choose a maximum of one or document reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eSerotonin Norepinephrine Reuptake Inhibitors (Choose a maximum of one or doument reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eNorepinephrine-Serotonin Modulators (Choose a maximum of one or document reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"ActivityDefinition\",\n \"id\": \"referralToMentalHealthCare\",\n \"status\": \"draft\",\n \"description\": \"refer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\",\n \"kind\": \"ServiceRequest\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"306206005\"\n }\n ],\n \"text\": \"Referral to service (procedure)\"\n },\n \"timingTiming\": {\n \"_event\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/cqf-expression\",\n \"valueExpression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Now()\"\n }\n }\n ]\n }\n ]\n },\n \"participant\": [\n {\n \"type\": \"practitioner\"\n }\n ]\n },\n {\n \"resourceType\": \"ActivityDefinition\",\n \"id\": \"citalopramPrescription\",\n \"status\": \"draft\",\n \"kind\": \"MedicationRequest\",\n \"productReference\": {\n \"reference\": \"#citalopramMedication\"\n },\n \"dosage\": [\n {\n \"text\": \"1 tablet oral 1 time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"code\": \"26643006\",\n \"display\": \"Oral route (qualifier value)\"\n }\n ],\n \"text\": \"Oral route (qualifier value)\"\n },\n \"doseAndRate\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n \"code\": \"ordered\",\n \"display\": \"Ordered\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": 1,\n \"unit\": \"{tbl}\"\n }\n }\n ]\n }\n ],\n \"dynamicValue\": [\n {\n \"path\": \"dispenseRequest.numberOfRepeatsAllowed\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"3\"\n }\n },\n {\n \"path\": \"dispenseRequest.quantity\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"30 \\u0027{tbl}\\u0027\"\n }\n }\n ]\n },\n {\n \"resourceType\": \"Medication\",\n \"id\": \"citalopramMedication\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"200371\"\n }\n ],\n \"text\": \"citalopram\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"385055001\",\n \"display\": \"Tablet dose form\"\n }\n ],\n \"text\": \"Tablet dose form\"\n },\n \"ingredient\": [\n {\n \"itemReference\": {\n \"reference\": \"#citalopramSubstance\"\n },\n \"strength\": {\n \"numerator\": {\n \"value\": 20,\n \"unit\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"{tbl}\"\n }\n }\n }\n ]\n },\n {\n \"resourceType\": \"Substance\",\n \"id\": \"citalopramSubstance\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"2556\"\n }\n ],\n \"text\": \"citalopram\"\n }\n }\n ],\n \"url\": \"http://motivemi.com/artifacts/PlanDefinition/low-suicide-risk-order-set\",\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://motivemi.com/artifacts\",\n \"value\": \"mmi:low-suicide-risk-order-set\"\n }\n ],\n \"version\": \"1.0.0\",\n \"name\": \"LowSuicideRiskOrderSet\",\n \"title\": \"Low Suicide Risk Order Set\",\n \"status\": \"active\",\n \"experimental\": true,\n \"date\": \"2015-08-15\",\n \"publisher\": \"Motive Medical Intelligence\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"description\": \"Orders to be applied to a patient characterized as low suicide risk.\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"https://meshb.nlm.nih.gov\",\n \"code\": \"D000328\",\n \"display\": \"Adult\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"87512008\",\n \"display\": \"Mild major depression\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40379007\",\n \"display\": \"Major depression, recurrent, mild\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394687007\",\n \"display\": \"Low suicide risk\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"225337009\",\n \"display\": \"Suicide risk assessment\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"user\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"309343006\",\n \"display\": \"Physician\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"venue\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"440655000\",\n \"display\": \"Outpatient environment\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"This order set helps ensure consistent application of appropriate orders for the care of low suicide risk patients.\",\n \"usage\": \"This order set should be applied after assessing a patient for suicide risk, when the findings of that assessment indicate the patient has low suicide risk.\",\n \"copyright\": \"© Copyright 2016 Motive Medical Intelligence. All rights reserved.\",\n \"approvalDate\": \"2016-03-12\",\n \"lastReviewDate\": \"2016-08-15\",\n \"effectivePeriod\": {\n \"start\": \"2016-01-01\",\n \"end\": \"2017-12-31\"\n },\n \"topic\": [\n {\n \"text\": \"Suicide risk assessment\"\n }\n ],\n \"author\": [\n {\n \"name\": \"Motive Medical Intelligence\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"derived-from\",\n \"display\": \"Practice Guideline for the Treatment of Patients with Major Depressive Disorder\",\n \"url\": \"http://psychiatryonline.org/pb/assets/raw/sitewide/practice_guidelines/guidelines/mdd.pdf\"\n },\n {\n \"type\": \"composed-of\",\n \"resource\": \"ActivityDefinition/referralPrimaryCareMentalHealth\"\n },\n {\n \"type\": \"composed-of\",\n \"resource\": \"ActivityDefinition/citalopramPrescription\"\n }\n ],\n \"library\": [\n \"Library/suiciderisk-orderset-logic\"\n ],\n \"action\": [\n {\n \"title\": \"Suicide Risk Assessment and Outpatient Management\",\n \"action\": [\n {\n \"title\": \"Consults and Referrals\",\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"any\",\n \"action\": [\n {\n \"textEquivalent\": \"Refer to outpatient mental health program for evaluation and treatment of mental health conditions now\",\n \"definitionCanonical\": \"#referralToMentalHealthCare\",\n \"dynamicValue\": [\n {\n \"path\": \"timing.event\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Now()\"\n }\n },\n {\n \"path\": \"specialty\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Code \\u0027261QM0850X\\u0027 from SuicideRiskLogic.\\\"NUCC Provider Taxonomy\\\" display \\u0027Adult Mental Health\\u0027\"\n }\n },\n {\n \"path\": \"occurrenceDateTime\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.ServiceRequestFulfillmentTime\"\n }\n },\n {\n \"path\": \"subject\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Patient\"\n }\n },\n {\n \"path\": \"requester.agent\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Practitioner\"\n }\n },\n {\n \"path\": \"reasonCode\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessmentScore\"\n }\n },\n {\n \"path\": \"reasonReference\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessment\"\n }\n }\n ]\n }\n ]\n },\n {\n \"title\": \"Medications\",\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"at-most-one\",\n \"action\": [\n {\n \"title\": \"First-Line Antidepressants\",\n \"documentation\": [\n {\n \"type\": \"citation\",\n \"document\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/cqf-qualityOfEvidence\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/evidence-quality\",\n \"code\": \"high\"\n }\n ],\n \"text\": \"High Quality\"\n }\n }\n ],\n \"contentType\": \"text/html\",\n \"url\": \"http://psychiatryonline.org/pb/assets/raw/sitewide/practice_guidelines/guidelines/mdd.pdf\",\n \"title\": \"Practice Guideline for the Treatment of Patients with Major Depressive Disorder\"\n }\n }\n ],\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"at-most-one\",\n \"action\": [\n {\n \"title\": \"Selective Serotonin Reuptake Inhibitors (Choose a mazimum of one or document reasons for exception)\",\n \"documentation\": [\n {\n \"type\": \"citation\",\n \"document\": {\n \"contentType\": \"text/html\",\n \"url\": \"http://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid\\u003d6daeb45c-451d-b135-bf8f-2d6dff4b6b01\",\n \"title\": \"National Library of Medicine. DailyMed website. CITALOPRAM- citalopram hydrobromide tablet, film coated.\"\n }\n }\n ],\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"at-most-one\",\n \"action\": [\n {\n \"textEquivalent\": \"citalopram 20 mg tablet 1 tablet oral 1 time daily now (30 table; 3 refills)\",\n \"definitionCanonical\": \"#citalopramPrescription\",\n \"dynamicValue\": [\n {\n \"path\": \"status\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"\\u0027draft\\u0027\"\n }\n },\n {\n \"path\": \"patient\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Patient\"\n }\n },\n {\n \"path\": \"prescriber\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Practitioner\"\n }\n },\n {\n \"path\": \"reasonCode\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessmentScore\"\n }\n },\n {\n \"path\": \"reasonReference\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessment\"\n }\n }\n ]\n },\n {\n \"textEquivalent\": \"escitalopram 10 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\"\n },\n {\n \"textEquivalent\": \"fluoxetine 20 mg capsule 1 capsule oral 1 time daily now (30 tablet; 3 refills)\"\n },\n {\n \"textEquivalent\": \"paroxetine 20 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\"\n },\n {\n \"textEquivalent\": \"sertraline 50 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\"\n }\n ]\n },\n {\n \"textEquivalent\": \"Dopamine Norepinephrine Reuptake Inhibitors (Choose a maximum of one or document reasons for exception)\"\n },\n {\n \"textEquivalent\": \"Serotonin Norepinephrine Reuptake Inhibitors (Choose a maximum of one or doument reasons for exception)\"\n },\n {\n \"textEquivalent\": \"Norepinephrine-Serotonin Modulators (Choose a maximum of one or document reasons for exception)\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/PlanDefinition", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PlanDefinition" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PlanDefinition_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PlanDefinition?composed-of=&depends-on=&derived-from=&predecessor=&successor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&effective=&identifier=&jurisdiction=&name=&publisher=&status=&title=&topic=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PlanDefinition" - ], - "query": [ - { - "key": "composed-of", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "depends-on", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "derived-from", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "predecessor", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "successor", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "The plan definition publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the plan definition" - }, - { - "key": "effective", - "value": "", - "description": "The time during which the plan definition is intended to be in use" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the plan definition" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the plan definition" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the plan definition" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the plan definition" - }, - { - "key": "status", - "value": "", - "description": "The current status of the plan definition" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the plan definition" - }, - { - "key": "topic", - "value": "", - "description": "Topics associated with the module" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the plan definition" - }, - { - "key": "version", - "value": "", - "description": "The business version of the plan definition" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PlanDefinitionHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PlanDefinition/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PlanDefinition", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Practitioner", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "PractitionerHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Practitioner/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Practitioner", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PractitionerHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Practitioner/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Practitioner", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "PractitionerById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Practitioner/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Practitioner", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PractitionerById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Practitioner\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eDr Adam Careful is a Referring Practitioner for Acme Hospital from 1-Jan 2012 to 31-Mar\\n 2012\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.acme.org/practitioners\",\n \"value\": \"23\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"family\": \"Careful\",\n \"given\": [\n \"Adam\"\n ],\n \"prefix\": [\n \"Dr\"\n ]\n }\n ],\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"534 Erewhon St\"\n ],\n \"city\": \"PleasantVille\",\n \"state\": \"Vic\",\n \"postalCode\": \"3999\"\n }\n ],\n \"qualification\": [\n {\n \"identifier\": [\n {\n \"system\": \"http://example.org/UniversityIdentifier\",\n \"value\": \"12345\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360/2.7\",\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"period\": {\n \"start\": \"1995\"\n },\n \"issuer\": {\n \"display\": \"Example University\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Practitioner/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Practitioner", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PractitionerById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Practitioner/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Practitioner", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Practitioner_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Practitioner\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eDr Adam Careful is a Referring Practitioner for Acme Hospital from 1-Jan 2012 to 31-Mar\\n 2012\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.acme.org/practitioners\",\n \"value\": \"23\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"family\": \"Careful\",\n \"given\": [\n \"Adam\"\n ],\n \"prefix\": [\n \"Dr\"\n ]\n }\n ],\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"534 Erewhon St\"\n ],\n \"city\": \"PleasantVille\",\n \"state\": \"Vic\",\n \"postalCode\": \"3999\"\n }\n ],\n \"qualification\": [\n {\n \"identifier\": [\n {\n \"system\": \"http://example.org/UniversityIdentifier\",\n \"value\": \"12345\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360/2.7\",\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"period\": {\n \"start\": \"1995\"\n },\n \"issuer\": {\n \"display\": \"Example University\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Practitioner", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Practitioner" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Practitioner_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Practitioner?_id=&_lastUpdated=&_profile=&_security=&_tag=&address=&address-city=&address-country=&address-postalcode=&address-state=&address-use=&email=&family=&gender=&given=&phone=&phonetic=&telecom=&active=&communication=&identifier=&name=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Practitioner" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "address", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Practitioner](practitioner.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Person](person.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Patient](patient.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text" - }, - { - "key": "address-city", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A city specified in an address\r\n* [Practitioner](practitioner.html): A city specified in an address\r\n* [Person](person.html): A city specified in an address\r\n* [Patient](patient.html): A city specified in an address" - }, - { - "key": "address-country", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A country specified in an address\r\n* [Practitioner](practitioner.html): A country specified in an address\r\n* [Person](person.html): A country specified in an address\r\n* [Patient](patient.html): A country specified in an address" - }, - { - "key": "address-postalcode", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A postal code specified in an address\r\n* [Practitioner](practitioner.html): A postalCode specified in an address\r\n* [Person](person.html): A postal code specified in an address\r\n* [Patient](patient.html): A postalCode specified in an address" - }, - { - "key": "address-state", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A state specified in an address\r\n* [Practitioner](practitioner.html): A state specified in an address\r\n* [Person](person.html): A state specified in an address\r\n* [Patient](patient.html): A state specified in an address" - }, - { - "key": "address-use", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A use code specified in an address\r\n* [Practitioner](practitioner.html): A use code specified in an address\r\n* [Person](person.html): A use code specified in an address\r\n* [Patient](patient.html): A use code specified in an address" - }, - { - "key": "email", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in an email contact\r\n* [RelatedPerson](relatedperson.html): A value in an email contact\r\n* [Practitioner](practitioner.html): A value in an email contact\r\n* [Person](person.html): A value in an email contact\r\n* [Patient](patient.html): A value in an email contact" - }, - { - "key": "family", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Practitioner](practitioner.html): A portion of the family name\r\n* [Patient](patient.html): A portion of the family name of the patient" - }, - { - "key": "gender", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): Gender of the related person\r\n* [Practitioner](practitioner.html): Gender of the practitioner\r\n* [Person](person.html): The gender of the person\r\n* [Patient](patient.html): Gender of the patient" - }, - { - "key": "given", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Practitioner](practitioner.html): A portion of the given name\r\n* [Patient](patient.html): A portion of the given name of the patient" - }, - { - "key": "phone", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in a phone contact\r\n* [RelatedPerson](relatedperson.html): A value in a phone contact\r\n* [Practitioner](practitioner.html): A value in a phone contact\r\n* [Person](person.html): A value in a phone contact\r\n* [Patient](patient.html): A value in a phone contact" - }, - { - "key": "phonetic", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Practitioner](practitioner.html): A portion of either family or given name using some kind of phonetic matching algorithm\r\n* [Person](person.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Patient](patient.html): A portion of either family or given name using some kind of phonetic matching algorithm" - }, - { - "key": "telecom", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): The value in any kind of contact\r\n* [RelatedPerson](relatedperson.html): The value in any kind of contact\r\n* [Practitioner](practitioner.html): The value in any kind of contact\r\n* [Person](person.html): The value in any kind of contact\r\n* [Patient](patient.html): The value in any kind of telecom details of the patient" - }, - { - "key": "active", - "value": "", - "description": "Whether the practitioner record is active" - }, - { - "key": "communication", - "value": "", - "description": "One of the languages that the practitioner can communicate with" - }, - { - "key": "identifier", - "value": "", - "description": "A practitioner's Identifier" - }, - { - "key": "name", - "value": "", - "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PractitionerHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Practitioner/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Practitioner", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Practitioner Role", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "PractitionerRoleHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PractitionerRole/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PractitionerRole", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PractitionerRoleHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PractitionerRole/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PractitionerRole", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "PractitionerRoleById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PractitionerRole/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PractitionerRole", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PractitionerRoleById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"PractitionerRole\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003e\\n\\t\\t\\t\\tDr Adam Careful is a Referring Practitioner for Acme Hospital from 1-Jan 2012 to 31-Mar\\n\\t\\t\\t\\t2012\\n\\t\\t\\t\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.acme.org/practitioners\",\n \"value\": \"23\"\n }\n ],\n \"active\": true,\n \"period\": {\n \"start\": \"2012-01-01\",\n \"end\": \"2012-03-31\"\n },\n \"practitioner\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"organization\": {\n \"reference\": \"Organization/f001\"\n },\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0286\",\n \"code\": \"RP\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"408443003\",\n \"display\": \"General medical practice\"\n }\n ]\n }\n ],\n \"location\": [\n {\n \"reference\": \"Location/1\",\n \"display\": \"South Wing, second floor\"\n }\n ],\n \"healthcareService\": [\n {\n \"reference\": \"HealthcareService/example\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"(03) 5555 6473\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"adam.southern@example.org\",\n \"use\": \"work\"\n }\n ],\n \"availableTime\": [\n {\n \"daysOfWeek\": [\n \"mon\",\n \"tue\",\n \"wed\"\n ],\n \"availableStartTime\": \"09:00:00\",\n \"availableEndTime\": \"16:30:00\"\n },\n {\n \"daysOfWeek\": [\n \"thu\",\n \"fri\"\n ],\n \"availableStartTime\": \"09:00:00\",\n \"availableEndTime\": \"12:00:00\"\n }\n ],\n \"notAvailable\": [\n {\n \"description\": \"Adam will be on extended leave during May 2017\",\n \"during\": {\n \"start\": \"2017-05-01\",\n \"end\": \"2017-05-20\"\n }\n }\n ],\n \"availabilityExceptions\": \"Adam is generally unavailable on public holidays and during the Christmas/New Year break\",\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/PractitionerRole/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PractitionerRole", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PractitionerRoleById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PractitionerRole/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PractitionerRole", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "PractitionerRole_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"PractitionerRole\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003e\\n\\t\\t\\t\\tDr Adam Careful is a Referring Practitioner for Acme Hospital from 1-Jan 2012 to 31-Mar\\n\\t\\t\\t\\t2012\\n\\t\\t\\t\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.acme.org/practitioners\",\n \"value\": \"23\"\n }\n ],\n \"active\": true,\n \"period\": {\n \"start\": \"2012-01-01\",\n \"end\": \"2012-03-31\"\n },\n \"practitioner\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"organization\": {\n \"reference\": \"Organization/f001\"\n },\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0286\",\n \"code\": \"RP\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"408443003\",\n \"display\": \"General medical practice\"\n }\n ]\n }\n ],\n \"location\": [\n {\n \"reference\": \"Location/1\",\n \"display\": \"South Wing, second floor\"\n }\n ],\n \"healthcareService\": [\n {\n \"reference\": \"HealthcareService/example\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"(03) 5555 6473\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"adam.southern@example.org\",\n \"use\": \"work\"\n }\n ],\n \"availableTime\": [\n {\n \"daysOfWeek\": [\n \"mon\",\n \"tue\",\n \"wed\"\n ],\n \"availableStartTime\": \"09:00:00\",\n \"availableEndTime\": \"16:30:00\"\n },\n {\n \"daysOfWeek\": [\n \"thu\",\n \"fri\"\n ],\n \"availableStartTime\": \"09:00:00\",\n \"availableEndTime\": \"12:00:00\"\n }\n ],\n \"notAvailable\": [\n {\n \"description\": \"Adam will be on extended leave during May 2017\",\n \"during\": {\n \"start\": \"2017-05-01\",\n \"end\": \"2017-05-20\"\n }\n }\n ],\n \"availabilityExceptions\": \"Adam is generally unavailable on public holidays and during the Christmas/New Year break\",\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/PractitionerRole", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PractitionerRole" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PractitionerRole_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PractitionerRole?endpoint=&location=&organization=&practitioner=&service=&_id=&_lastUpdated=&_profile=&_security=&_tag=&email=&phone=&telecom=&active=&date=&identifier=&role=&specialty=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PractitionerRole" - ], - "query": [ - { - "key": "endpoint", - "value": "", - "description": "Technical endpoints providing access to services operated for the practitioner with this role" - }, - { - "key": "location", - "value": "", - "description": "One of the locations at which this practitioner provides care" - }, - { - "key": "organization", - "value": "", - "description": "The identity of the organization the practitioner represents / acts on behalf of" - }, - { - "key": "practitioner", - "value": "", - "description": "Practitioner that is able to provide the defined services for the organation" - }, - { - "key": "service", - "value": "", - "description": "The list of healthcare services that this worker provides for this role's Organization/Location(s)" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "email", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in an email contact\r\n* [RelatedPerson](relatedperson.html): A value in an email contact\r\n* [Practitioner](practitioner.html): A value in an email contact\r\n* [Person](person.html): A value in an email contact\r\n* [Patient](patient.html): A value in an email contact" - }, - { - "key": "phone", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in a phone contact\r\n* [RelatedPerson](relatedperson.html): A value in a phone contact\r\n* [Practitioner](practitioner.html): A value in a phone contact\r\n* [Person](person.html): A value in a phone contact\r\n* [Patient](patient.html): A value in a phone contact" - }, - { - "key": "telecom", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): The value in any kind of contact\r\n* [RelatedPerson](relatedperson.html): The value in any kind of contact\r\n* [Practitioner](practitioner.html): The value in any kind of contact\r\n* [Person](person.html): The value in any kind of contact\r\n* [Patient](patient.html): The value in any kind of telecom details of the patient" - }, - { - "key": "active", - "value": "", - "description": "Whether this practitioner's record is in active use" - }, - { - "key": "date", - "value": "", - "description": "The period during which the practitioner is authorized to perform in these role(s)" - }, - { - "key": "identifier", - "value": "", - "description": "A practitioner's Identifier" - }, - { - "key": "role", - "value": "", - "description": "The practitioner can perform this role at for the organization" - }, - { - "key": "specialty", - "value": "", - "description": "The practitioner has this specialty at an organization" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "PractitionerRoleHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/PractitionerRole/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "PractitionerRole", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Procedure", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ProcedureHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Procedure/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Procedure", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcedureHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Procedure/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Procedure", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ProcedureById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Procedure/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Procedure", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcedureById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Procedure\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eRoutine Appendectomy\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80146002\",\n \"display\": \"Appendectomy (Procedure)\"\n }\n ],\n \"text\": \"Appendectomy\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"performedDateTime\": \"2013-04-05\",\n \"recorder\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Cecil Surgeon\"\n },\n \"asserter\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Cecil Surgeon\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Cecil Surgeon\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Generalized abdominal pain 24 hours. Localized in RIF with rebound and guarding\"\n }\n ],\n \"followUp\": [\n {\n \"text\": \"ROS 5 days - 2013-04-10\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Routine Appendectomy. Appendix was inflamed and in retro-caecal position\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Procedure/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Procedure", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcedureById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Procedure/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Procedure", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Procedure_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Procedure\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eRoutine Appendectomy\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80146002\",\n \"display\": \"Appendectomy (Procedure)\"\n }\n ],\n \"text\": \"Appendectomy\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"performedDateTime\": \"2013-04-05\",\n \"recorder\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Cecil Surgeon\"\n },\n \"asserter\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Cecil Surgeon\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Cecil Surgeon\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Generalized abdominal pain 24 hours. Localized in RIF with rebound and guarding\"\n }\n ],\n \"followUp\": [\n {\n \"text\": \"ROS 5 days - 2013-04-10\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Routine Appendectomy. Appendix was inflamed and in retro-caecal position\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Procedure", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Procedure" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Procedure_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Procedure?patient=&encounter=&based-on=&context=&definition=&location=&part-of=&performer=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&identifier=&category=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Procedure" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "encounter", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" - }, - { - "key": "based-on", - "value": "", - "description": "A request for this procedure" - }, - { - "key": "context", - "value": "", - "description": "Encounter or episode associated with the procedure" - }, - { - "key": "definition", - "value": "", - "description": "Instantiates protocol or definition" - }, - { - "key": "location", - "value": "", - "description": "Where the procedure happened" - }, - { - "key": "part-of", - "value": "", - "description": "Part of referenced event" - }, - { - "key": "performer", - "value": "", - "description": "The reference to the practitioner" - }, - { - "key": "subject", - "value": "", - "description": "Search by subject" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "category", - "value": "", - "description": "Classification of the procedure" - }, - { - "key": "status", - "value": "", - "description": "preparation | in-progress | suspended | aborted | completed | entered-in-error | unknown" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcedureHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Procedure/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Procedure", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Procedure Request", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ProcedureRequestHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcedureRequest/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcedureRequest", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcedureRequestHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcedureRequest/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcedureRequest", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ProcedureRequestById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcedureRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcedureRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcedureRequestById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"subject\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"reference\": \"\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ProcedureRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcedureRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcedureRequestById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcedureRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcedureRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ProcedureRequest_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"subject\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"reference\": \"\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ProcedureRequest", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcedureRequest" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcedureRequest_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcedureRequest?patient=&encounter=&based-on=&context=&definition=&performer=&replaces=&requester=&specimen=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&authored=&body-site=&intent=&occurrence=&performer-type=&priority=&requisition=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcedureRequest" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "encounter", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" - }, - { - "key": "based-on", - "value": "", - "description": "What request fulfills" - }, - { - "key": "context", - "value": "", - "description": "Encounter or Episode during which request was created" - }, - { - "key": "definition", - "value": "", - "description": "Protocol or definition" - }, - { - "key": "performer", - "value": "", - "description": "Requested perfomer" - }, - { - "key": "replaces", - "value": "", - "description": "What request replaces" - }, - { - "key": "requester", - "value": "", - "description": "Individual making the request" - }, - { - "key": "specimen", - "value": "", - "description": "Specimen to be tested" - }, - { - "key": "subject", - "value": "", - "description": "Search by subject" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "authored", - "value": "", - "description": "Date request signed" - }, - { - "key": "body-site", - "value": "", - "description": "Where procedure is going to be done" - }, - { - "key": "intent", - "value": "", - "description": "proposal | plan | order +" - }, - { - "key": "occurrence", - "value": "", - "description": "When procedure should occur" - }, - { - "key": "performer-type", - "value": "", - "description": "Performer role" - }, - { - "key": "priority", - "value": "", - "description": "routine | urgent | asap | stat" - }, - { - "key": "requisition", - "value": "", - "description": "Composite Request ID" - }, - { - "key": "status", - "value": "", - "description": "draft | active | suspended | completed | entered-in-error | cancelled" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcedureRequestHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcedureRequest/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcedureRequest", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Process Request", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ProcessRequestHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcessRequest/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessRequest", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcessRequestHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcessRequest/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessRequest", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ProcessRequestById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcessRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcessRequestById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"action\": \"\",\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"created\": \"\",\n \"organizationReference\": {\n \"reference\": \"\"\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ProcessRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcessRequestById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcessRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ProcessRequest_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"action\": \"\",\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"created\": \"\",\n \"organizationReference\": {\n \"reference\": \"\"\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ProcessRequest", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessRequest" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcessRequest_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcessRequest?organization=&provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&action=&identifier=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessRequest" - ], - "query": [ - { - "key": "organization", - "value": "", - "description": "The organization who generated this request" - }, - { - "key": "provider", - "value": "", - "description": "The provider who regenerated this request" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "action", - "value": "", - "description": "The action requested by this resource" - }, - { - "key": "identifier", - "value": "", - "description": "The business identifier of the ProcessRequest" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcessRequestHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcessRequest/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessRequest", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Process Response", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ProcessResponseHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcessResponse/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessResponse", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcessResponseHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcessResponse/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessResponse", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ProcessResponseById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcessResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcessResponseById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"requestReference\": {\n \"reference\": \"\"\n },\n \"outcome\": {\n \"system\": \"\",\n \"code\": \"\"\n },\n \"disposition\": \"\",\n \"created\": \"\",\n \"organizationReference\": {\n \"reference\": \"\"\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ProcessResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcessResponseById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcessResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ProcessResponse_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"requestReference\": {\n \"reference\": \"\"\n },\n \"outcome\": {\n \"system\": \"\",\n \"code\": \"\"\n },\n \"disposition\": \"\",\n \"created\": \"\",\n \"organizationReference\": {\n \"reference\": \"\"\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ProcessResponse", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessResponse" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcessResponse_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcessResponse?organization=&request=&request-organization=&request-provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessResponse" - ], - "query": [ - { - "key": "organization", - "value": "", - "description": "The organization who generated this resource" - }, - { - "key": "request", - "value": "", - "description": "The reference to the claim" - }, - { - "key": "request-organization", - "value": "", - "description": "The Organization who is responsible the request transaction" - }, - { - "key": "request-provider", - "value": "", - "description": "The Provider who is responsible the request transaction" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "The business identifier of the Explanation of Benefit" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProcessResponseHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ProcessResponse/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ProcessResponse", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Provenance", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ProvenanceHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Provenance/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Provenance", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProvenanceHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Provenance/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Provenance", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ProvenanceById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Provenance/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Provenance", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProvenanceById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Provenance\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eprocedure record authored on 27-June 2015 by Harold Hippocrates, MD Content extracted from XDS managed CDA Referral received 26-June as authorized by a referenced Consent.\\u003c/div\\u003e\"\n },\n \"target\": [\n {\n \"reference\": \"Procedure/example/_history/1\"\n }\n ],\n \"occurredPeriod\": {\n \"start\": \"2015-06-27\",\n \"end\": \"2015-06-28\"\n },\n \"recorded\": \"2015-06-27T08:39:24+10:00\",\n \"policy\": [\n \"http://acme.com/fhir/Consent/25\"\n ],\n \"location\": {\n \"reference\": \"Location/1\"\n },\n \"reason\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Referral\"\n }\n ]\n }\n ],\n \"agent\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"AUT\"\n }\n ]\n },\n \"who\": {\n \"reference\": \"Practitioner/xcda-author\"\n }\n },\n {\n \"id\": \"a1\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"DEV\"\n }\n ]\n },\n \"who\": {\n \"reference\": \"Device/software\"\n }\n }\n ],\n \"entity\": [\n {\n \"role\": \"source\",\n \"what\": {\n \"reference\": \"DocumentReference/example\",\n \"display\": \"CDA Document in XDS repository\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Provenance/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Provenance", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProvenanceById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Provenance/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Provenance", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Provenance_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Provenance\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eprocedure record authored on 27-June 2015 by Harold Hippocrates, MD Content extracted from XDS managed CDA Referral received 26-June as authorized by a referenced Consent.\\u003c/div\\u003e\"\n },\n \"target\": [\n {\n \"reference\": \"Procedure/example/_history/1\"\n }\n ],\n \"occurredPeriod\": {\n \"start\": \"2015-06-27\",\n \"end\": \"2015-06-28\"\n },\n \"recorded\": \"2015-06-27T08:39:24+10:00\",\n \"policy\": [\n \"http://acme.com/fhir/Consent/25\"\n ],\n \"location\": {\n \"reference\": \"Location/1\"\n },\n \"reason\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Referral\"\n }\n ]\n }\n ],\n \"agent\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"AUT\"\n }\n ]\n },\n \"who\": {\n \"reference\": \"Practitioner/xcda-author\"\n }\n },\n {\n \"id\": \"a1\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"DEV\"\n }\n ]\n },\n \"who\": {\n \"reference\": \"Device/software\"\n }\n }\n ],\n \"entity\": [\n {\n \"role\": \"source\",\n \"what\": {\n \"reference\": \"DocumentReference/example\",\n \"display\": \"CDA Document in XDS repository\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Provenance", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Provenance" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Provenance_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Provenance?agent=&entity-ref=&location=&patient=&target=&_id=&_lastUpdated=&_profile=&_security=&_tag=&agent-role=&end=&entity-id=&recorded=&signature-type=&start=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Provenance" - ], - "query": [ - { - "key": "agent", - "value": "", - "description": "Who participated" - }, - { - "key": "entity-ref", - "value": "", - "description": "Identity of entity" - }, - { - "key": "location", - "value": "", - "description": "Where the activity occurred, if relevant" - }, - { - "key": "patient", - "value": "", - "description": "Target Reference(s) (usually version specific)" - }, - { - "key": "target", - "value": "", - "description": "Target Reference(s) (usually version specific)" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "agent-role", - "value": "", - "description": "What the agents role was" - }, - { - "key": "end", - "value": "", - "description": "End time with inclusive boundary, if not ongoing" - }, - { - "key": "entity-id", - "value": "", - "description": "Identity of entity" - }, - { - "key": "recorded", - "value": "", - "description": "When the activity was recorded / updated" - }, - { - "key": "signature-type", - "value": "", - "description": "Indication of the reason the entity signed the object(s)" - }, - { - "key": "start", - "value": "", - "description": "Starting time with inclusive boundary" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ProvenanceHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Provenance/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Provenance", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Questionnaire", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "QuestionnaireHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Questionnaire/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Questionnaire", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "QuestionnaireHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Questionnaire/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Questionnaire", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "QuestionnaireById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Questionnaire/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Questionnaire", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "QuestionnaireById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Questionnaire\",\n \"id\": \"3141\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cpre\\u003e\\n 1.Comorbidity?\\n 1.1 Cardial Comorbidity\\n 1.1.1 Angina?\\n 1.1.2 MI?\\n 1.2 Vascular Comorbidity?\\n ...\\n Histopathology\\n Abdominal\\n pT category?\\n ...\\n \\u003c/pre\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/Questionnaire/3141\",\n \"title\": \"Cancer Quality Forum Questionnaire 2012\",\n \"status\": \"draft\",\n \"subjectType\": [\n \"Patient\"\n ],\n \"date\": \"2012-01\",\n \"item\": [\n {\n \"linkId\": \"1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"COMORBIDITY\"\n }\n ],\n \"type\": \"group\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMORB\"\n }\n ],\n \"prefix\": \"1\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\",\n \"item\": [\n {\n \"linkId\": \"1.1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"CARDIAL\"\n }\n ],\n \"type\": \"group\",\n \"enableWhen\": [\n {\n \"question\": \"1.1\",\n \"operator\": \"\\u003d\",\n \"answerCoding\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0136\",\n \"code\": \"Y\"\n }\n }\n ],\n \"item\": [\n {\n \"linkId\": \"1.1.1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMORBCAR\"\n }\n ],\n \"prefix\": \"1.1\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\",\n \"item\": [\n {\n \"linkId\": \"1.1.1.1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMCAR00\",\n \"display\": \"Angina Pectoris\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"194828000\",\n \"display\": \"Angina (disorder)\"\n }\n ],\n \"prefix\": \"1.1.1\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\"\n },\n {\n \"linkId\": \"1.1.1.1.2\",\n \"code\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"22298006\",\n \"display\": \"Myocardial infarction (disorder)\"\n }\n ],\n \"prefix\": \"1.1.2\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\"\n }\n ]\n },\n {\n \"linkId\": \"1.1.1.2\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMORBVAS\"\n }\n ],\n \"prefix\": \"1.2\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\"\n }\n ]\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"HISTOPATHOLOGY\"\n }\n ],\n \"type\": \"group\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"ABDOMINAL\"\n }\n ],\n \"type\": \"group\",\n \"item\": [\n {\n \"linkId\": \"2.1.2\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"STADPT\",\n \"display\": \"pT category\"\n }\n ],\n \"type\": \"choice\"\n }\n ]\n }\n ]\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/Questionnaire/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Questionnaire", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "QuestionnaireById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Questionnaire/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Questionnaire", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Questionnaire_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Questionnaire\",\n \"id\": \"3141\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cpre\\u003e\\n 1.Comorbidity?\\n 1.1 Cardial Comorbidity\\n 1.1.1 Angina?\\n 1.1.2 MI?\\n 1.2 Vascular Comorbidity?\\n ...\\n Histopathology\\n Abdominal\\n pT category?\\n ...\\n \\u003c/pre\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/Questionnaire/3141\",\n \"title\": \"Cancer Quality Forum Questionnaire 2012\",\n \"status\": \"draft\",\n \"subjectType\": [\n \"Patient\"\n ],\n \"date\": \"2012-01\",\n \"item\": [\n {\n \"linkId\": \"1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"COMORBIDITY\"\n }\n ],\n \"type\": \"group\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMORB\"\n }\n ],\n \"prefix\": \"1\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\",\n \"item\": [\n {\n \"linkId\": \"1.1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"CARDIAL\"\n }\n ],\n \"type\": \"group\",\n \"enableWhen\": [\n {\n \"question\": \"1.1\",\n \"operator\": \"\\u003d\",\n \"answerCoding\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0136\",\n \"code\": \"Y\"\n }\n }\n ],\n \"item\": [\n {\n \"linkId\": \"1.1.1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMORBCAR\"\n }\n ],\n \"prefix\": \"1.1\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\",\n \"item\": [\n {\n \"linkId\": \"1.1.1.1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMCAR00\",\n \"display\": \"Angina Pectoris\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"194828000\",\n \"display\": \"Angina (disorder)\"\n }\n ],\n \"prefix\": \"1.1.1\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\"\n },\n {\n \"linkId\": \"1.1.1.1.2\",\n \"code\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"22298006\",\n \"display\": \"Myocardial infarction (disorder)\"\n }\n ],\n \"prefix\": \"1.1.2\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\"\n }\n ]\n },\n {\n \"linkId\": \"1.1.1.2\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMORBVAS\"\n }\n ],\n \"prefix\": \"1.2\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\"\n }\n ]\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"HISTOPATHOLOGY\"\n }\n ],\n \"type\": \"group\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"ABDOMINAL\"\n }\n ],\n \"type\": \"group\",\n \"item\": [\n {\n \"linkId\": \"2.1.2\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"STADPT\",\n \"display\": \"pT category\"\n }\n ],\n \"type\": \"choice\"\n }\n ]\n }\n ]\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/Questionnaire", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Questionnaire" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Questionnaire_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Questionnaire?_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&description=&effective=&identifier=&jurisdiction=&name=&publisher=&status=&title=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Questionnaire" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "code", - "value": "", - "description": "A code that corresponds to one of its items in the questionnaire" - }, - { - "key": "date", - "value": "", - "description": "The questionnaire publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the questionnaire" - }, - { - "key": "effective", - "value": "", - "description": "The time during which the questionnaire is intended to be in use" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the questionnaire" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the questionnaire" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the questionnaire" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the questionnaire" - }, - { - "key": "status", - "value": "", - "description": "The current status of the questionnaire" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the questionnaire" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the questionnaire" - }, - { - "key": "version", - "value": "", - "description": "The business version of the questionnaire" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "QuestionnaireHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Questionnaire/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Questionnaire", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Questionnaire Response", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "QuestionnaireResponseHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/QuestionnaireResponse/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "QuestionnaireResponse", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "QuestionnaireResponseHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/QuestionnaireResponse/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "QuestionnaireResponse", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "QuestionnaireResponseById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/QuestionnaireResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "QuestionnaireResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "QuestionnaireResponseById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"id\": \"3141\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cpre\\u003e\\n Comorbidity? YES\\n Cardial Comorbidity? YES\\n Angina? YES\\n MI? NO\\n Vascular Comorbidity?\\n (no answers)\\n ...\\n Histopathology\\n Abdominal\\n pT category: 1a\\n ...\\n \\u003c/pre\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Patient\",\n \"id\": \"patsub\",\n \"identifier\": [\n {\n \"system\": \"http://cancer.questionnaire.org/systems/id/patientnr\",\n \"value\": \"A34442332\"\n },\n {\n \"type\": {\n \"text\": \"Dutch BSN\"\n },\n \"system\": \"urn:oid:2.16.840.1.113883.2.4.6.3\",\n \"value\": \"188912345\"\n }\n ],\n \"gender\": \"male\",\n \"birthDate\": \"1972-11-30\"\n },\n {\n \"resourceType\": \"ServiceRequest\",\n \"id\": \"order\",\n \"status\": \"unknown\",\n \"intent\": \"order\",\n \"subject\": {\n \"reference\": \"#patsub\"\n },\n \"requester\": {\n \"reference\": \"Practitioner/example\"\n }\n },\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"questauth\",\n \"identifier\": [\n {\n \"type\": {\n \"text\": \"AUMC, Den Helder\"\n },\n \"system\": \"http://cancer.questionnaire.org/systems/id/org\",\n \"value\": \"AUMC\"\n }\n ]\n }\n ],\n \"identifier\": {\n \"system\": \"http://example.org/fhir/NamingSystem/questionnaire-ids\",\n \"value\": \"Q12349876\"\n },\n \"basedOn\": [\n {\n \"reference\": \"#order\"\n }\n ],\n \"partOf\": [\n {\n \"reference\": \"Procedure/f201\"\n }\n ],\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"#patsub\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"authored\": \"2013-02-19T14:15:00-05:00\",\n \"author\": {\n \"reference\": \"#questauth\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"1\",\n \"display\": \"Yes\"\n },\n \"item\": [\n {\n \"linkId\": \"1.1.1\",\n \"item\": [\n {\n \"linkId\": \"1.1.1.1\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"1\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.1.1.2\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"1\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.1.1.3\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"0\"\n }\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/QuestionnaireResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "QuestionnaireResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "QuestionnaireResponseById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/QuestionnaireResponse/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "QuestionnaireResponse", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "QuestionnaireResponse_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"id\": \"3141\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cpre\\u003e\\n Comorbidity? YES\\n Cardial Comorbidity? YES\\n Angina? YES\\n MI? NO\\n Vascular Comorbidity?\\n (no answers)\\n ...\\n Histopathology\\n Abdominal\\n pT category: 1a\\n ...\\n \\u003c/pre\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Patient\",\n \"id\": \"patsub\",\n \"identifier\": [\n {\n \"system\": \"http://cancer.questionnaire.org/systems/id/patientnr\",\n \"value\": \"A34442332\"\n },\n {\n \"type\": {\n \"text\": \"Dutch BSN\"\n },\n \"system\": \"urn:oid:2.16.840.1.113883.2.4.6.3\",\n \"value\": \"188912345\"\n }\n ],\n \"gender\": \"male\",\n \"birthDate\": \"1972-11-30\"\n },\n {\n \"resourceType\": \"ServiceRequest\",\n \"id\": \"order\",\n \"status\": \"unknown\",\n \"intent\": \"order\",\n \"subject\": {\n \"reference\": \"#patsub\"\n },\n \"requester\": {\n \"reference\": \"Practitioner/example\"\n }\n },\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"questauth\",\n \"identifier\": [\n {\n \"type\": {\n \"text\": \"AUMC, Den Helder\"\n },\n \"system\": \"http://cancer.questionnaire.org/systems/id/org\",\n \"value\": \"AUMC\"\n }\n ]\n }\n ],\n \"identifier\": {\n \"system\": \"http://example.org/fhir/NamingSystem/questionnaire-ids\",\n \"value\": \"Q12349876\"\n },\n \"basedOn\": [\n {\n \"reference\": \"#order\"\n }\n ],\n \"partOf\": [\n {\n \"reference\": \"Procedure/f201\"\n }\n ],\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"#patsub\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"authored\": \"2013-02-19T14:15:00-05:00\",\n \"author\": {\n \"reference\": \"#questauth\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"1\",\n \"display\": \"Yes\"\n },\n \"item\": [\n {\n \"linkId\": \"1.1.1\",\n \"item\": [\n {\n \"linkId\": \"1.1.1.1\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"1\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.1.1.2\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"1\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.1.1.3\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"0\"\n }\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/QuestionnaireResponse", - "host": [ - "{{API_URL}}" - ], - "path": [ - "QuestionnaireResponse" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "QuestionnaireResponse_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/QuestionnaireResponse?author=&based-on=&context=&parent=&patient=&questionnaire=&source=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&authored=&identifier=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "QuestionnaireResponse" - ], - "query": [ - { - "key": "author", - "value": "", - "description": "The author of the questionnaire response" - }, - { - "key": "based-on", - "value": "", - "description": "Plan/proposal/order fulfilled by this questionnaire response" - }, - { - "key": "context", - "value": "", - "description": "Encounter or episode associated with the questionnaire response" - }, - { - "key": "parent", - "value": "", - "description": "Procedure or observation this questionnaire response was performed as a part of" - }, - { - "key": "patient", - "value": "", - "description": "The patient that is the subject of the questionnaire response" - }, - { - "key": "questionnaire", - "value": "", - "description": "The questionnaire the answers are provided for" - }, - { - "key": "source", - "value": "", - "description": "The individual providing the information reflected in the questionnaire respose" - }, - { - "key": "subject", - "value": "", - "description": "The subject of the questionnaire response" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "authored", - "value": "", - "description": "When the questionnaire response was last changed" - }, - { - "key": "identifier", - "value": "", - "description": "The unique identifier for the questionnaire response" - }, - { - "key": "status", - "value": "", - "description": "The status of the questionnaire response" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "QuestionnaireResponseHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/QuestionnaireResponse/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "QuestionnaireResponse", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Referral Request", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ReferralRequestHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ReferralRequest/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ReferralRequest", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ReferralRequestHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ReferralRequest/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ReferralRequest", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ReferralRequestById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ReferralRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ReferralRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ReferralRequestById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"status\": \"\",\n \"category\": \"\",\n \"type\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"priority\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"patient\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"authored\": \"\",\n \"requester\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"specialty\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"recipient\": [\n {\n \"reference\": \"\",\n \"display\": \"\"\n }\n ],\n \"reason\": {\n \"text\": \"\"\n },\n \"description\": \"\",\n \"serviceRequested\": [\n {\n \"text\": \"\",\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/ReferralRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ReferralRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ReferralRequestById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ReferralRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ReferralRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ReferralRequest_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"status\": \"\",\n \"category\": \"\",\n \"type\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"priority\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"patient\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"authored\": \"\",\n \"requester\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"specialty\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"recipient\": [\n {\n \"reference\": \"\",\n \"display\": \"\"\n }\n ],\n \"reason\": {\n \"text\": \"\"\n },\n \"description\": \"\",\n \"serviceRequested\": [\n {\n \"text\": \"\",\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/ReferralRequest", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ReferralRequest" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ReferralRequest_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ReferralRequest?patient=&based-on=&context=&definition=&encounter=&recipient=&replaces=&requester=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&type=&authored-on=&group-identifier=&identifier=&intent=&occurrence-date=&priority=&service=&specialty=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ReferralRequest" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "based-on", - "value": "", - "description": "Request being fulfilled" - }, - { - "key": "context", - "value": "", - "description": "Part of encounter or episode of care" - }, - { - "key": "definition", - "value": "", - "description": "Instantiates protocol or definition" - }, - { - "key": "encounter", - "value": "", - "description": "Originating encounter" - }, - { - "key": "recipient", - "value": "", - "description": "The person that the referral was sent to" - }, - { - "key": "replaces", - "value": "", - "description": "Request(s) replaced by this request" - }, - { - "key": "requester", - "value": "", - "description": "Individual making the request" - }, - { - "key": "subject", - "value": "", - "description": "Patient referred to care or transfer" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "type", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" - }, - { - "key": "authored-on", - "value": "", - "description": "Creation or activation date" - }, - { - "key": "group-identifier", - "value": "", - "description": "Part of common request" - }, - { - "key": "identifier", - "value": "", - "description": "Business identifier" - }, - { - "key": "intent", - "value": "", - "description": "Proposal, plan or order" - }, - { - "key": "occurrence-date", - "value": "", - "description": "When the service(s) requested in the referral should occur" - }, - { - "key": "priority", - "value": "", - "description": "The priority assigned to the referral" - }, - { - "key": "service", - "value": "", - "description": "Actions requested as part of the referral" - }, - { - "key": "specialty", - "value": "", - "description": "The specialty that the referral is for" - }, - { - "key": "status", - "value": "", - "description": "The status of the referral" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ReferralRequestHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ReferralRequest/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ReferralRequest", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Related Person", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "RelatedPersonHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RelatedPerson/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RelatedPerson", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RelatedPersonHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RelatedPerson/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RelatedPerson", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "RelatedPersonById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RelatedPerson/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RelatedPerson", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RelatedPersonById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"RelatedPerson\",\n \"id\": \"benedicte\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eName\\u003c/td\\u003e\\n \\u003ctd\\u003eBénédicte du Marché\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eAddress\\u003c/td\\u003e\\n \\u003ctd\\u003e43, Place du Marché Sainte Catherine, 75004 Paris, France\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eContacts\\u003c/td\\u003e\\n \\u003ctd\\u003ePhone: +33 (237) 998327\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"type\": {\n \"text\": \"INSEE\"\n },\n \"system\": \"urn:oid:1.2.250.1.61\",\n \"value\": \"272117510400399\"\n }\n ],\n \"active\": true,\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"N\"\n },\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"WIFE\"\n }\n ]\n }\n ],\n \"name\": [\n {\n \"family\": \"du Marché\",\n \"_family\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/humanname-own-prefix\",\n \"valueString\": \"VV\"\n }\n ]\n },\n \"given\": [\n \"Bénédicte\"\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+33 (237) 998327\"\n }\n ],\n \"gender\": \"female\",\n \"address\": [\n {\n \"line\": [\n \"43, Place du Marché Sainte Catherine\"\n ],\n \"city\": \"Paris\",\n \"postalCode\": \"75004\",\n \"country\": \"FRA\"\n }\n ],\n \"photo\": [\n {\n \"contentType\": \"image/jpeg\",\n \"url\": \"Binary/f016\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/RelatedPerson/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RelatedPerson", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RelatedPersonById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RelatedPerson/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RelatedPerson", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "RelatedPerson_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"RelatedPerson\",\n \"id\": \"benedicte\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eName\\u003c/td\\u003e\\n \\u003ctd\\u003eBénédicte du Marché\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eAddress\\u003c/td\\u003e\\n \\u003ctd\\u003e43, Place du Marché Sainte Catherine, 75004 Paris, France\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eContacts\\u003c/td\\u003e\\n \\u003ctd\\u003ePhone: +33 (237) 998327\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"type\": {\n \"text\": \"INSEE\"\n },\n \"system\": \"urn:oid:1.2.250.1.61\",\n \"value\": \"272117510400399\"\n }\n ],\n \"active\": true,\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"N\"\n },\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"WIFE\"\n }\n ]\n }\n ],\n \"name\": [\n {\n \"family\": \"du Marché\",\n \"_family\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/humanname-own-prefix\",\n \"valueString\": \"VV\"\n }\n ]\n },\n \"given\": [\n \"Bénédicte\"\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+33 (237) 998327\"\n }\n ],\n \"gender\": \"female\",\n \"address\": [\n {\n \"line\": [\n \"43, Place du Marché Sainte Catherine\"\n ],\n \"city\": \"Paris\",\n \"postalCode\": \"75004\",\n \"country\": \"FRA\"\n }\n ],\n \"photo\": [\n {\n \"contentType\": \"image/jpeg\",\n \"url\": \"Binary/f016\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/RelatedPerson", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RelatedPerson" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RelatedPerson_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RelatedPerson?patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&address=&address-city=&address-country=&address-postalcode=&address-state=&address-use=&birthdate=&email=&gender=&phone=&phonetic=&telecom=&active=&identifier=&name=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RelatedPerson" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "The patient this related person is related to" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "address", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Practitioner](practitioner.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Person](person.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Patient](patient.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text" - }, - { - "key": "address-city", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A city specified in an address\r\n* [Practitioner](practitioner.html): A city specified in an address\r\n* [Person](person.html): A city specified in an address\r\n* [Patient](patient.html): A city specified in an address" - }, - { - "key": "address-country", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A country specified in an address\r\n* [Practitioner](practitioner.html): A country specified in an address\r\n* [Person](person.html): A country specified in an address\r\n* [Patient](patient.html): A country specified in an address" - }, - { - "key": "address-postalcode", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A postal code specified in an address\r\n* [Practitioner](practitioner.html): A postalCode specified in an address\r\n* [Person](person.html): A postal code specified in an address\r\n* [Patient](patient.html): A postalCode specified in an address" - }, - { - "key": "address-state", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A state specified in an address\r\n* [Practitioner](practitioner.html): A state specified in an address\r\n* [Person](person.html): A state specified in an address\r\n* [Patient](patient.html): A state specified in an address" - }, - { - "key": "address-use", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A use code specified in an address\r\n* [Practitioner](practitioner.html): A use code specified in an address\r\n* [Person](person.html): A use code specified in an address\r\n* [Patient](patient.html): A use code specified in an address" - }, - { - "key": "birthdate", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): The Related Person's date of birth\r\n* [Person](person.html): The person's date of birth\r\n* [Patient](patient.html): The patient's date of birth" - }, - { - "key": "email", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in an email contact\r\n* [RelatedPerson](relatedperson.html): A value in an email contact\r\n* [Practitioner](practitioner.html): A value in an email contact\r\n* [Person](person.html): A value in an email contact\r\n* [Patient](patient.html): A value in an email contact" - }, - { - "key": "gender", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): Gender of the related person\r\n* [Practitioner](practitioner.html): Gender of the practitioner\r\n* [Person](person.html): The gender of the person\r\n* [Patient](patient.html): Gender of the patient" - }, - { - "key": "phone", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in a phone contact\r\n* [RelatedPerson](relatedperson.html): A value in a phone contact\r\n* [Practitioner](practitioner.html): A value in a phone contact\r\n* [Person](person.html): A value in a phone contact\r\n* [Patient](patient.html): A value in a phone contact" - }, - { - "key": "phonetic", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Practitioner](practitioner.html): A portion of either family or given name using some kind of phonetic matching algorithm\r\n* [Person](person.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Patient](patient.html): A portion of either family or given name using some kind of phonetic matching algorithm" - }, - { - "key": "telecom", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): The value in any kind of contact\r\n* [RelatedPerson](relatedperson.html): The value in any kind of contact\r\n* [Practitioner](practitioner.html): The value in any kind of contact\r\n* [Person](person.html): The value in any kind of contact\r\n* [Patient](patient.html): The value in any kind of telecom details of the patient" - }, - { - "key": "active", - "value": "", - "description": "Indicates if the related person record is active" - }, - { - "key": "identifier", - "value": "", - "description": "An Identifier of the RelatedPerson" - }, - { - "key": "name", - "value": "", - "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RelatedPersonHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RelatedPerson/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RelatedPerson", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Request Group", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "RequestGroupHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RequestGroup/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RequestGroup", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RequestGroupHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RequestGroup/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RequestGroup", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "RequestGroupById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RequestGroup/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RequestGroup", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RequestGroupById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"RequestGroup\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eExample RequestGroup illustrating related actions to administer medications in sequence with time delay.\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"MedicationRequest\",\n \"id\": \"medicationrequest-1\",\n \"status\": \"unknown\",\n \"intent\": \"proposal\",\n \"medicationCodeableConcept\": {\n \"text\": \"Medication 1\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n }\n },\n {\n \"resourceType\": \"MedicationRequest\",\n \"id\": \"medicationrequest-2\",\n \"status\": \"unknown\",\n \"intent\": \"proposal\",\n \"medicationCodeableConcept\": {\n \"text\": \"Medication 2\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n }\n }\n ],\n \"identifier\": [\n {\n \"value\": \"requestgroup-1\"\n }\n ],\n \"groupIdentifier\": {\n \"system\": \"http://example.org/treatment-group\",\n \"value\": \"00001\"\n },\n \"status\": \"draft\",\n \"intent\": \"plan\",\n \"priority\": \"routine\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"authoredOn\": \"2017-03-06T17:31:00Z\",\n \"author\": {\n \"reference\": \"Practitioner/1\"\n },\n \"reasonCode\": [\n {\n \"text\": \"Treatment\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Additional notes about the request group\"\n }\n ],\n \"action\": [\n {\n \"prefix\": \"1\",\n \"title\": \"Administer Medications\",\n \"description\": \"Administer medications at the appropriate time\",\n \"textEquivalent\": \"Administer medication 1, followed an hour later by medication 2\",\n \"timingDateTime\": \"2017-03-06T19:00:00Z\",\n \"participant\": [\n {\n \"reference\": \"Practitioner/1\"\n }\n ],\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"all\",\n \"requiredBehavior\": \"must\",\n \"precheckBehavior\": \"yes\",\n \"cardinalityBehavior\": \"single\",\n \"action\": [\n {\n \"id\": \"medication-action-1\",\n \"description\": \"Administer medication 1\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"create\"\n }\n ]\n },\n \"resource\": {\n \"reference\": \"#medicationrequest-1\"\n }\n },\n {\n \"id\": \"medication-action-2\",\n \"description\": \"Administer medication 2\",\n \"relatedAction\": [\n {\n \"actionId\": \"medication-action-1\",\n \"relationship\": \"after-end\",\n \"offsetDuration\": {\n \"value\": 1,\n \"unit\": \"h\"\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"code\": \"create\"\n }\n ]\n },\n \"resource\": {\n \"reference\": \"#medicationrequest-2\"\n }\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/RequestGroup/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RequestGroup", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RequestGroupById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RequestGroup/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RequestGroup", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "RequestGroup_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"RequestGroup\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eExample RequestGroup illustrating related actions to administer medications in sequence with time delay.\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"MedicationRequest\",\n \"id\": \"medicationrequest-1\",\n \"status\": \"unknown\",\n \"intent\": \"proposal\",\n \"medicationCodeableConcept\": {\n \"text\": \"Medication 1\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n }\n },\n {\n \"resourceType\": \"MedicationRequest\",\n \"id\": \"medicationrequest-2\",\n \"status\": \"unknown\",\n \"intent\": \"proposal\",\n \"medicationCodeableConcept\": {\n \"text\": \"Medication 2\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n }\n }\n ],\n \"identifier\": [\n {\n \"value\": \"requestgroup-1\"\n }\n ],\n \"groupIdentifier\": {\n \"system\": \"http://example.org/treatment-group\",\n \"value\": \"00001\"\n },\n \"status\": \"draft\",\n \"intent\": \"plan\",\n \"priority\": \"routine\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"authoredOn\": \"2017-03-06T17:31:00Z\",\n \"author\": {\n \"reference\": \"Practitioner/1\"\n },\n \"reasonCode\": [\n {\n \"text\": \"Treatment\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Additional notes about the request group\"\n }\n ],\n \"action\": [\n {\n \"prefix\": \"1\",\n \"title\": \"Administer Medications\",\n \"description\": \"Administer medications at the appropriate time\",\n \"textEquivalent\": \"Administer medication 1, followed an hour later by medication 2\",\n \"timingDateTime\": \"2017-03-06T19:00:00Z\",\n \"participant\": [\n {\n \"reference\": \"Practitioner/1\"\n }\n ],\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"all\",\n \"requiredBehavior\": \"must\",\n \"precheckBehavior\": \"yes\",\n \"cardinalityBehavior\": \"single\",\n \"action\": [\n {\n \"id\": \"medication-action-1\",\n \"description\": \"Administer medication 1\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"create\"\n }\n ]\n },\n \"resource\": {\n \"reference\": \"#medicationrequest-1\"\n }\n },\n {\n \"id\": \"medication-action-2\",\n \"description\": \"Administer medication 2\",\n \"relatedAction\": [\n {\n \"actionId\": \"medication-action-1\",\n \"relationship\": \"after-end\",\n \"offsetDuration\": {\n \"value\": 1,\n \"unit\": \"h\"\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"code\": \"create\"\n }\n ]\n },\n \"resource\": {\n \"reference\": \"#medicationrequest-2\"\n }\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/RequestGroup", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RequestGroup" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RequestGroup_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RequestGroup?author=&context=&definition=&encounter=&participant=&patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&authored=&group-identifier=&identifier=&intent=&priority=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RequestGroup" - ], - "query": [ - { - "key": "author", - "value": "", - "description": "The author of the request group" - }, - { - "key": "context", - "value": "", - "description": "The context the request group applies to" - }, - { - "key": "definition", - "value": "", - "description": "The definition from which the request group is realized" - }, - { - "key": "encounter", - "value": "", - "description": "The encounter the request group applies to" - }, - { - "key": "participant", - "value": "", - "description": "The participant in the requests in the group" - }, - { - "key": "patient", - "value": "", - "description": "The identity of a patient to search for request groups" - }, - { - "key": "subject", - "value": "", - "description": "The subject that the request group is about" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "authored", - "value": "", - "description": "The date the request group was authored" - }, - { - "key": "group-identifier", - "value": "", - "description": "The group identifier for the request group" - }, - { - "key": "identifier", - "value": "", - "description": "External identifiers for the request group" - }, - { - "key": "intent", - "value": "", - "description": "The intent of the request group" - }, - { - "key": "priority", - "value": "", - "description": "The priority of the request group" - }, - { - "key": "status", - "value": "", - "description": "The status of the request group" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RequestGroupHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RequestGroup/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RequestGroup", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Research Study", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ResearchStudyHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ResearchStudy/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchStudy", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResearchStudyHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ResearchStudy/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchStudy", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ResearchStudyById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ResearchStudy/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchStudy", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResearchStudyById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ResearchStudy\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e[Put rendering here]\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ResearchStudy/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchStudy", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResearchStudyById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ResearchStudy/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchStudy", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ResearchStudy_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ResearchStudy\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e[Put rendering here]\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ResearchStudy", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchStudy" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResearchStudy_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ResearchStudy?partof=&principalinvestigator=&protocol=&site=&sponsor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&date=&focus=&identifier=&jurisdiction=&keyword=&status=&title=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchStudy" - ], - "query": [ - { - "key": "partof", - "value": "", - "description": "Part of larger study" - }, - { - "key": "principalinvestigator", - "value": "", - "description": "The individual responsible for the study" - }, - { - "key": "protocol", - "value": "", - "description": "Steps followed in executing study" - }, - { - "key": "site", - "value": "", - "description": "Location involved in study execution" - }, - { - "key": "sponsor", - "value": "", - "description": "Organization responsible for the study" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "category", - "value": "", - "description": "Classifications for the study" - }, - { - "key": "date", - "value": "", - "description": "When the study began and ended" - }, - { - "key": "focus", - "value": "", - "description": "Drugs, devices, conditions, etc. under study" - }, - { - "key": "identifier", - "value": "", - "description": "Business Identifier for study" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Geographic region(s) for study" - }, - { - "key": "keyword", - "value": "", - "description": "Used to search for the study" - }, - { - "key": "status", - "value": "", - "description": "draft | in-progress | suspended | stopped | completed | entered-in-error" - }, - { - "key": "title", - "value": "", - "description": "Name for this study" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResearchStudyHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ResearchStudy/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchStudy", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Research Subject", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ResearchSubjectHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ResearchSubject/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchSubject", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResearchSubjectHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ResearchSubject/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchSubject", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ResearchSubjectById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ResearchSubject/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchSubject", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResearchSubjectById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ResearchSubject\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e[Put rendering here]\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"type\": {\n \"text\": \"Subject id\"\n },\n \"system\": \"http://example.org/studysubjectids\",\n \"value\": \"123\"\n }\n ],\n \"status\": \"candidate\",\n \"study\": {\n \"reference\": \"ResearchStudy/example\"\n },\n \"individual\": {\n \"reference\": \"Patient/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ResearchSubject/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchSubject", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResearchSubjectById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ResearchSubject/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchSubject", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ResearchSubject_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ResearchSubject\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e[Put rendering here]\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"type\": {\n \"text\": \"Subject id\"\n },\n \"system\": \"http://example.org/studysubjectids\",\n \"value\": \"123\"\n }\n ],\n \"status\": \"candidate\",\n \"study\": {\n \"reference\": \"ResearchStudy/example\"\n },\n \"individual\": {\n \"reference\": \"Patient/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ResearchSubject", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchSubject" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResearchSubject_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ResearchSubject?individual=&patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchSubject" - ], - "query": [ - { - "key": "individual", - "value": "", - "description": "Who is part of study" - }, - { - "key": "patient", - "value": "", - "description": "Who is part of study" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Start and end of participation" - }, - { - "key": "identifier", - "value": "", - "description": "Business Identifier for research subject" - }, - { - "key": "status", - "value": "", - "description": "candidate | enrolled | active | suspended | withdrawn | completed" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResearchSubjectHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ResearchSubject/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ResearchSubject", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Resource", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ResourceHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Resource/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Resource", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResourceHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Resource/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Resource", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ResourceById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Resource/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Resource", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResourceById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "\"\"" - }, - "url": { - "raw": "{{API_URL}}/Resource/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Resource", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResourceById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Resource/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Resource", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Resource_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "\"\"" - }, - "url": { - "raw": "{{API_URL}}/Resource", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Resource" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Resource_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Resource?_id=&_lastUpdated=&_profile=&_security=&_tag=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Resource" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ResourceHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Resource/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Resource", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Risk Assessment", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "RiskAssessmentHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RiskAssessment/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RiskAssessment", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RiskAssessmentHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RiskAssessment/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RiskAssessment", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "RiskAssessmentById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RiskAssessment/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RiskAssessment", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RiskAssessmentById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"RiskAssessment\",\n \"id\": \"genetic\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eProbability of developing breast cancer before the age indicated:\\u003c/p\\u003e\\n \\u003ctable\\u003e\\n \\u003cthead\\u003e\\n \\u003ctr\\u003e\\n \\u003cth\\u003eAge\\u003c/th\\u003e\\n \\u003cth\\u003eProbability (%)\\u003c/th\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/thead\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003ecurrent-53\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0168\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e54-57\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0368\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e58-62\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0594\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e63-67\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0838\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e68-72\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1089\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e73-77\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1327\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e78-82\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1530\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e83-87\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1663\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"method\": {\n \"coding\": [\n {\n \"code\": \"BRCAPRO\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/b248b1b2-1686-4b94-9936-37d7a5f94b51\"\n },\n \"occurrenceDateTime\": \"2006-01-13T23:01:00Z\",\n \"basis\": [\n {\n \"reference\": \"List/prognosis\"\n }\n ],\n \"prediction\": [\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000168,\n \"whenRange\": {\n \"high\": {\n \"value\": 53,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000368,\n \"whenRange\": {\n \"low\": {\n \"value\": 54,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 57,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000594,\n \"whenRange\": {\n \"low\": {\n \"value\": 58,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 62,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000838,\n \"whenRange\": {\n \"low\": {\n \"value\": 63,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 67,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001089,\n \"whenRange\": {\n \"low\": {\n \"value\": 68,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 72,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001327,\n \"whenRange\": {\n \"low\": {\n \"value\": 73,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 77,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001530,\n \"whenRange\": {\n \"low\": {\n \"value\": 78,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 82,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001663,\n \"whenRange\": {\n \"low\": {\n \"value\": 83,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 88,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"High degree of certainty\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/RiskAssessment/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RiskAssessment", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RiskAssessmentById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RiskAssessment/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RiskAssessment", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "RiskAssessment_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"RiskAssessment\",\n \"id\": \"genetic\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eProbability of developing breast cancer before the age indicated:\\u003c/p\\u003e\\n \\u003ctable\\u003e\\n \\u003cthead\\u003e\\n \\u003ctr\\u003e\\n \\u003cth\\u003eAge\\u003c/th\\u003e\\n \\u003cth\\u003eProbability (%)\\u003c/th\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/thead\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003ecurrent-53\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0168\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e54-57\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0368\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e58-62\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0594\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e63-67\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0838\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e68-72\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1089\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e73-77\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1327\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e78-82\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1530\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e83-87\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1663\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"method\": {\n \"coding\": [\n {\n \"code\": \"BRCAPRO\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/b248b1b2-1686-4b94-9936-37d7a5f94b51\"\n },\n \"occurrenceDateTime\": \"2006-01-13T23:01:00Z\",\n \"basis\": [\n {\n \"reference\": \"List/prognosis\"\n }\n ],\n \"prediction\": [\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000168,\n \"whenRange\": {\n \"high\": {\n \"value\": 53,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000368,\n \"whenRange\": {\n \"low\": {\n \"value\": 54,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 57,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000594,\n \"whenRange\": {\n \"low\": {\n \"value\": 58,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 62,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000838,\n \"whenRange\": {\n \"low\": {\n \"value\": 63,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 67,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001089,\n \"whenRange\": {\n \"low\": {\n \"value\": 68,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 72,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001327,\n \"whenRange\": {\n \"low\": {\n \"value\": 73,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 77,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001530,\n \"whenRange\": {\n \"low\": {\n \"value\": 78,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 82,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001663,\n \"whenRange\": {\n \"low\": {\n \"value\": 83,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 88,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"High degree of certainty\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/RiskAssessment", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RiskAssessment" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RiskAssessment_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RiskAssessment?patient=&encounter=&condition=&performer=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&method=&probability=&risk=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RiskAssessment" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "encounter", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" - }, - { - "key": "condition", - "value": "", - "description": "Condition assessed" - }, - { - "key": "performer", - "value": "", - "description": "Who did assessment?" - }, - { - "key": "subject", - "value": "", - "description": "Who/what does assessment apply to?" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "method", - "value": "", - "description": "Evaluation mechanism" - }, - { - "key": "probability", - "value": "", - "description": "Likelihood of specified outcome" - }, - { - "key": "risk", - "value": "", - "description": "Likelihood of specified outcome as a qualitative value" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "RiskAssessmentHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/RiskAssessment/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "RiskAssessment", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Schedule", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ScheduleHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Schedule/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Schedule", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ScheduleHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Schedule/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Schedule", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ScheduleById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Schedule/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Schedule", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ScheduleById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Schedule\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n Burgers UMC, South Wing, second floor Physiotherapy Schedule\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"system\": \"http://example.org/scheduleid\",\n \"value\": \"45\"\n }\n ],\n \"active\": true,\n \"serviceCategory\": [\n {\n \"coding\": [\n {\n \"code\": \"17\",\n \"display\": \"General Practice\"\n }\n ]\n }\n ],\n \"serviceType\": [\n {\n \"coding\": [\n {\n \"code\": \"57\",\n \"display\": \"Immunization\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"code\": \"408480009\",\n \"display\": \"Clinical immunology\"\n }\n ]\n }\n ],\n \"actor\": [\n {\n \"reference\": \"Location/1\",\n \"display\": \"Burgers UMC, South Wing, second floor\"\n }\n ],\n \"planningHorizon\": {\n \"start\": \"2013-12-25T09:15:00Z\",\n \"end\": \"2013-12-25T09:30:00Z\"\n },\n \"comment\": \"The slots attached to this schedule should be specialized to cover immunizations within the clinic\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Schedule/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Schedule", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ScheduleById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Schedule/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Schedule", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Schedule_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Schedule\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n Burgers UMC, South Wing, second floor Physiotherapy Schedule\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"system\": \"http://example.org/scheduleid\",\n \"value\": \"45\"\n }\n ],\n \"active\": true,\n \"serviceCategory\": [\n {\n \"coding\": [\n {\n \"code\": \"17\",\n \"display\": \"General Practice\"\n }\n ]\n }\n ],\n \"serviceType\": [\n {\n \"coding\": [\n {\n \"code\": \"57\",\n \"display\": \"Immunization\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"code\": \"408480009\",\n \"display\": \"Clinical immunology\"\n }\n ]\n }\n ],\n \"actor\": [\n {\n \"reference\": \"Location/1\",\n \"display\": \"Burgers UMC, South Wing, second floor\"\n }\n ],\n \"planningHorizon\": {\n \"start\": \"2013-12-25T09:15:00Z\",\n \"end\": \"2013-12-25T09:30:00Z\"\n },\n \"comment\": \"The slots attached to this schedule should be specialized to cover immunizations within the clinic\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Schedule", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Schedule" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Schedule_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Schedule?actor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&active=&date=&identifier=&type=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Schedule" - ], - "query": [ - { - "key": "actor", - "value": "", - "description": "The individual(HealthcareService, Practitioner, Location, ...) to find a Schedule for" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "active", - "value": "", - "description": "Is the schedule in active use" - }, - { - "key": "date", - "value": "", - "description": "Search for Schedule resources that have a period that contains this date specified" - }, - { - "key": "identifier", - "value": "", - "description": "A Schedule Identifier" - }, - { - "key": "type", - "value": "", - "description": "The type of appointments that can be booked into associated slot(s)" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ScheduleHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Schedule/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Schedule", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Search Parameter", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "SearchParameterHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SearchParameter/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SearchParameter", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SearchParameterHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SearchParameter/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SearchParameter", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "SearchParameterById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SearchParameter/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SearchParameter", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SearchParameterById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"SearchParameter\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/SearchParameter/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: ID-SEARCH-PARAMETER\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ederivedFrom\\u003c/b\\u003e: \\u003ca\\u003ehttp://hl7.org/fhir/SearchParameter/Resource-id\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 23/10/2013\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: Health Level Seven International (FHIR Infrastructure)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Search by resource identifier - e.g. same as the read interaction, but can return included resources\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United States of America (the) \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027US\\u0027 \\u003d \\u0027United States of America\\u0027, given as \\u0027United States of America (the)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epurpose\\u003c/b\\u003e: Need to search by identifier for various infrastructural cases - mainly retrieving packages, and matching as part of a chain\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: _id\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebase\\u003c/b\\u003e: Resource\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: token\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexpression\\u003c/b\\u003e: id\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003expath\\u003c/b\\u003e: f:*/f:id\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003expathUsage\\u003c/b\\u003e: normal\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecomparator\\u003c/b\\u003e: eq\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/SearchParameter/example\",\n \"version\": \"1\",\n \"name\": \"ID-SEARCH-PARAMETER\",\n \"derivedFrom\": \"http://hl7.org/fhir/SearchParameter/Resource-id\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2013-10-23\",\n \"publisher\": \"Health Level Seven International (FHIR Infrastructure)\",\n \"contact\": [\n {\n \"name\": \"[string]\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"Search by resource identifier - e.g. same as the read interaction, but can return included resources\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/variant-state\",\n \"code\": \"positive\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\",\n \"display\": \"United States of America (the)\"\n }\n ]\n }\n ],\n \"purpose\": \"Need to search by identifier for various infrastructural cases - mainly retrieving packages, and matching as part of a chain\",\n \"code\": \"_id\",\n \"base\": [\n \"Resource\"\n ],\n \"type\": \"token\",\n \"expression\": \"id\",\n \"xpath\": \"f:*/f:id\",\n \"xpathUsage\": \"normal\",\n \"comparator\": [\n \"eq\"\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/SearchParameter/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SearchParameter", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SearchParameterById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SearchParameter/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SearchParameter", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "SearchParameter_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"SearchParameter\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/SearchParameter/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: ID-SEARCH-PARAMETER\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ederivedFrom\\u003c/b\\u003e: \\u003ca\\u003ehttp://hl7.org/fhir/SearchParameter/Resource-id\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 23/10/2013\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: Health Level Seven International (FHIR Infrastructure)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Search by resource identifier - e.g. same as the read interaction, but can return included resources\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United States of America (the) \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027US\\u0027 \\u003d \\u0027United States of America\\u0027, given as \\u0027United States of America (the)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epurpose\\u003c/b\\u003e: Need to search by identifier for various infrastructural cases - mainly retrieving packages, and matching as part of a chain\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: _id\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebase\\u003c/b\\u003e: Resource\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: token\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexpression\\u003c/b\\u003e: id\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003expath\\u003c/b\\u003e: f:*/f:id\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003expathUsage\\u003c/b\\u003e: normal\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecomparator\\u003c/b\\u003e: eq\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/SearchParameter/example\",\n \"version\": \"1\",\n \"name\": \"ID-SEARCH-PARAMETER\",\n \"derivedFrom\": \"http://hl7.org/fhir/SearchParameter/Resource-id\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2013-10-23\",\n \"publisher\": \"Health Level Seven International (FHIR Infrastructure)\",\n \"contact\": [\n {\n \"name\": \"[string]\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"Search by resource identifier - e.g. same as the read interaction, but can return included resources\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/variant-state\",\n \"code\": \"positive\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\",\n \"display\": \"United States of America (the)\"\n }\n ]\n }\n ],\n \"purpose\": \"Need to search by identifier for various infrastructural cases - mainly retrieving packages, and matching as part of a chain\",\n \"code\": \"_id\",\n \"base\": [\n \"Resource\"\n ],\n \"type\": \"token\",\n \"expression\": \"id\",\n \"xpath\": \"f:*/f:id\",\n \"xpathUsage\": \"normal\",\n \"comparator\": [\n \"eq\"\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/SearchParameter", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SearchParameter" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SearchParameter_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SearchParameter?component=&_id=&_lastUpdated=&_profile=&_security=&_tag=&base=&code=&date=&derived-from=&description=&jurisdiction=&name=&publisher=&status=&target=&type=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SearchParameter" - ], - "query": [ - { - "key": "component", - "value": "", - "description": "Defines how the part works" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "base", - "value": "", - "description": "The resource type(s) this search parameter applies to" - }, - { - "key": "code", - "value": "", - "description": "Code used in URL" - }, - { - "key": "date", - "value": "", - "description": "The search parameter publication date" - }, - { - "key": "derived-from", - "value": "", - "description": "Original Definition for the search parameter" - }, - { - "key": "description", - "value": "", - "description": "The description of the search parameter" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the search parameter" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the search parameter" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the search parameter" - }, - { - "key": "status", - "value": "", - "description": "The current status of the search parameter" - }, - { - "key": "target", - "value": "", - "description": "Types of resource (if a resource reference)" - }, - { - "key": "type", - "value": "", - "description": "number | date | string | token | reference | composite | quantity | uri" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the search parameter" - }, - { - "key": "version", - "value": "", - "description": "The business version of the search parameter" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SearchParameterHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SearchParameter/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SearchParameter", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Sequence", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "SequenceHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Sequence/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Sequence", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SequenceHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Sequence/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Sequence", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "SequenceById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Sequence/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Sequence", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SequenceById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MolecularSequence\",\n \"id\": \"fda-example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: fda-example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: dna\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecoordinateSystem\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epatient\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceSeqs\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReferenceSeqId\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eStrand\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWindowStart\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWindowEnd\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eNC_000001.11 \\u003cspan\\u003e(Details : {http://www.ncbi.nlm.nih.gov/nuccore code \\u0027NC_000001.11\\u0027 \\u003d \\u0027NC_000001.11)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003ewatson\\u003c/td\\u003e\\u003ctd\\u003e10453\\u003c/td\\u003e\\u003ctd\\u003e101770080\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eVariants\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eStart\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEnd\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eObservedAllele\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReferenceAllele\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e13116\\u003c/td\\u003e\\u003ctd\\u003e13117\\u003c/td\\u003e\\u003ctd\\u003eT\\u003c/td\\u003e\\u003ctd\\u003eG\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eQualities\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eStandardSequence\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eStart\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEnd\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMethod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTruthTP\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQueryTP\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTruthFN\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQueryFP\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eGtFP\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePrecision\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRecall\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eFScore\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003esnp\\u003c/td\\u003e\\u003ctd\\u003efile-Bk50V4Q0qVb65P0v2VPbfYPZ \\u003cspan\\u003e(Details : {https://precision.fda.gov/files/ code \\u0027file-Bk50V4Q0qVb65P0v2VPbfYPZ\\u0027 \\u003d \\u0027file-Bk50V4Q0qVb65P0v2VPbfYPZ)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e10453\\u003c/td\\u003e\\u003ctd\\u003e101770080\\u003c/td\\u003e\\u003ctd\\u003eVcfeval + Hap.py Comparison \\u003cspan\\u003e(Details : {https://precision.fda.gov/jobs/ code \\u0027job-ByxYPx809jFVy21KJG74Jg3Y\\u0027 \\u003d \\u0027job-ByxYPx809jFVy21KJG74Jg3Y)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e7749\\u003c/td\\u003e\\u003ctd\\u003e7984\\u003c/td\\u003e\\u003ctd\\u003e2554\\u003c/td\\u003e\\u003ctd\\u003e10670\\u003c/td\\u003e\\u003ctd\\u003e2186\\u003c/td\\u003e\\u003ctd\\u003e0.428005\\u003c/td\\u003e\\u003ctd\\u003e0.752111\\u003c/td\\u003e\\u003ctd\\u003e0.545551\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eRepositories\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eVariantsetId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003elogin\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttps://precision.fda.gov/files/file-Bx37ZK009P4bX5g3qjkFZV38\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eFDA\\u003c/td\\u003e\\u003ctd\\u003efile-Bx37ZK009P4bX5g3qjkFZV38\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"type\": \"dna\",\n \"coordinateSystem\": 1,\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"referenceSeq\": {\n \"referenceSeqId\": {\n \"coding\": [\n {\n \"system\": \"http://www.ncbi.nlm.nih.gov/nuccore\",\n \"code\": \"NC_000001.11\"\n }\n ]\n },\n \"strand\": \"watson\",\n \"windowStart\": 10453,\n \"windowEnd\": 101770080\n },\n \"variant\": [\n {\n \"start\": 13116,\n \"end\": 13117,\n \"observedAllele\": \"T\",\n \"referenceAllele\": \"G\"\n }\n ],\n \"quality\": [\n {\n \"type\": \"snp\",\n \"standardSequence\": {\n \"coding\": [\n {\n \"system\": \"https://precision.fda.gov/files/\",\n \"code\": \"file-Bk50V4Q0qVb65P0v2VPbfYPZ\"\n }\n ]\n },\n \"start\": 10453,\n \"end\": 101770080,\n \"method\": {\n \"coding\": [\n {\n \"system\": \"https://precision.fda.gov/jobs/\",\n \"code\": \"job-ByxYPx809jFVy21KJG74Jg3Y\"\n }\n ],\n \"text\": \"Vcfeval + Hap.py Comparison\"\n },\n \"truthTP\": 7749,\n \"queryTP\": 7984,\n \"truthFN\": 2554,\n \"queryFP\": 10670,\n \"gtFP\": 2186,\n \"precision\": 0.428005,\n \"recall\": 0.752111,\n \"fScore\": 0.545551\n }\n ],\n \"repository\": [\n {\n \"type\": \"login\",\n \"url\": \"https://precision.fda.gov/files/file-Bx37ZK009P4bX5g3qjkFZV38\",\n \"name\": \"FDA\",\n \"variantsetId\": \"file-Bx37ZK009P4bX5g3qjkFZV38\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Sequence/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Sequence", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SequenceById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Sequence/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Sequence", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Sequence_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"MolecularSequence\",\n \"id\": \"fda-example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: fda-example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: dna\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecoordinateSystem\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epatient\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceSeqs\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReferenceSeqId\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eStrand\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWindowStart\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWindowEnd\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eNC_000001.11 \\u003cspan\\u003e(Details : {http://www.ncbi.nlm.nih.gov/nuccore code \\u0027NC_000001.11\\u0027 \\u003d \\u0027NC_000001.11)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003ewatson\\u003c/td\\u003e\\u003ctd\\u003e10453\\u003c/td\\u003e\\u003ctd\\u003e101770080\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eVariants\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eStart\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEnd\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eObservedAllele\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReferenceAllele\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e13116\\u003c/td\\u003e\\u003ctd\\u003e13117\\u003c/td\\u003e\\u003ctd\\u003eT\\u003c/td\\u003e\\u003ctd\\u003eG\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eQualities\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eStandardSequence\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eStart\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEnd\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMethod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTruthTP\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQueryTP\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTruthFN\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQueryFP\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eGtFP\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePrecision\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRecall\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eFScore\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003esnp\\u003c/td\\u003e\\u003ctd\\u003efile-Bk50V4Q0qVb65P0v2VPbfYPZ \\u003cspan\\u003e(Details : {https://precision.fda.gov/files/ code \\u0027file-Bk50V4Q0qVb65P0v2VPbfYPZ\\u0027 \\u003d \\u0027file-Bk50V4Q0qVb65P0v2VPbfYPZ)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e10453\\u003c/td\\u003e\\u003ctd\\u003e101770080\\u003c/td\\u003e\\u003ctd\\u003eVcfeval + Hap.py Comparison \\u003cspan\\u003e(Details : {https://precision.fda.gov/jobs/ code \\u0027job-ByxYPx809jFVy21KJG74Jg3Y\\u0027 \\u003d \\u0027job-ByxYPx809jFVy21KJG74Jg3Y)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e7749\\u003c/td\\u003e\\u003ctd\\u003e7984\\u003c/td\\u003e\\u003ctd\\u003e2554\\u003c/td\\u003e\\u003ctd\\u003e10670\\u003c/td\\u003e\\u003ctd\\u003e2186\\u003c/td\\u003e\\u003ctd\\u003e0.428005\\u003c/td\\u003e\\u003ctd\\u003e0.752111\\u003c/td\\u003e\\u003ctd\\u003e0.545551\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eRepositories\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eVariantsetId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003elogin\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttps://precision.fda.gov/files/file-Bx37ZK009P4bX5g3qjkFZV38\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eFDA\\u003c/td\\u003e\\u003ctd\\u003efile-Bx37ZK009P4bX5g3qjkFZV38\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"type\": \"dna\",\n \"coordinateSystem\": 1,\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"referenceSeq\": {\n \"referenceSeqId\": {\n \"coding\": [\n {\n \"system\": \"http://www.ncbi.nlm.nih.gov/nuccore\",\n \"code\": \"NC_000001.11\"\n }\n ]\n },\n \"strand\": \"watson\",\n \"windowStart\": 10453,\n \"windowEnd\": 101770080\n },\n \"variant\": [\n {\n \"start\": 13116,\n \"end\": 13117,\n \"observedAllele\": \"T\",\n \"referenceAllele\": \"G\"\n }\n ],\n \"quality\": [\n {\n \"type\": \"snp\",\n \"standardSequence\": {\n \"coding\": [\n {\n \"system\": \"https://precision.fda.gov/files/\",\n \"code\": \"file-Bk50V4Q0qVb65P0v2VPbfYPZ\"\n }\n ]\n },\n \"start\": 10453,\n \"end\": 101770080,\n \"method\": {\n \"coding\": [\n {\n \"system\": \"https://precision.fda.gov/jobs/\",\n \"code\": \"job-ByxYPx809jFVy21KJG74Jg3Y\"\n }\n ],\n \"text\": \"Vcfeval + Hap.py Comparison\"\n },\n \"truthTP\": 7749,\n \"queryTP\": 7984,\n \"truthFN\": 2554,\n \"queryFP\": 10670,\n \"gtFP\": 2186,\n \"precision\": 0.428005,\n \"recall\": 0.752111,\n \"fScore\": 0.545551\n }\n ],\n \"repository\": [\n {\n \"type\": \"login\",\n \"url\": \"https://precision.fda.gov/files/file-Bx37ZK009P4bX5g3qjkFZV38\",\n \"name\": \"FDA\",\n \"variantsetId\": \"file-Bx37ZK009P4bX5g3qjkFZV38\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Sequence", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Sequence" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Sequence_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Sequence?patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&chromosome=&coordinate=&end=&identifier=&start=&type=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Sequence" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "The subject that the observation is about" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "chromosome", - "value": "", - "description": "Chromosome number of the reference sequence" - }, - { - "key": "coordinate", - "value": "", - "description": "Search parameter for region of the reference DNA sequence string. This will refer to part of a locus or part of a gene where search region will be represented in 1-based system. Since the coordinateSystem can either be 0-based or 1-based, this search query will include the result of both coordinateSystem that contains the equivalent segment of the gene or whole genome sequence. For example, a search for sequence can be represented as `coordinate=1$lt345$gt123`, this means it will search for the Sequence resource on chromosome 1 and with position >123 and <345, where in 1-based system resource, all strings within region 1:124-344 will be revealed, while in 0-based system resource, all strings within region 1:123-344 will be revealed. You may want to check detail about 0-based v.s. 1-based above." - }, - { - "key": "end", - "value": "", - "description": "End position (0-based exclusive, which menas the acid at this position will not be included, 1-based inclusive, which means the acid at this position will be included) of the reference sequence." - }, - { - "key": "identifier", - "value": "", - "description": "The unique identity for a particular sequence" - }, - { - "key": "start", - "value": "", - "description": "Start position (0-based inclusive, 1-based inclusive, that means the nucleic acid or amino acid at this position will be included) of the reference sequence." - }, - { - "key": "type", - "value": "", - "description": "Amino Acid Sequence/ DNA Sequence / RNA Sequence" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SequenceHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Sequence/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Sequence", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Service Definition", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ServiceDefinitionHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ServiceDefinition/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ServiceDefinition", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ServiceDefinitionHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ServiceDefinition/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ServiceDefinition", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ServiceDefinitionById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ServiceDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ServiceDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ServiceDefinitionById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "\"\"" - }, - "url": { - "raw": "{{API_URL}}/ServiceDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ServiceDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ServiceDefinitionById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ServiceDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ServiceDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ServiceDefinition_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "\"\"" - }, - "url": { - "raw": "{{API_URL}}/ServiceDefinition", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ServiceDefinition" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ServiceDefinition_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ServiceDefinition?composed-of=&depends-on=&derived-from=&predecessor=&successor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&effective=&identifier=&jurisdiction=&name=&publisher=&status=&title=&topic=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ServiceDefinition" - ], - "query": [ - { - "key": "composed-of", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "depends-on", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "derived-from", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "predecessor", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "successor", - "value": "", - "description": "What resource is being referenced" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "The service definition publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the service definition" - }, - { - "key": "effective", - "value": "", - "description": "The time during which the service definition is intended to be in use" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the service definition" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the service definition" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the service definition" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the service definition" - }, - { - "key": "status", - "value": "", - "description": "The current status of the service definition" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the service definition" - }, - { - "key": "topic", - "value": "", - "description": "Topics associated with the module" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the service definition" - }, - { - "key": "version", - "value": "", - "description": "The business version of the service definition" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ServiceDefinitionHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ServiceDefinition/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ServiceDefinition", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Slot", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "SlotHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Slot/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Slot", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SlotHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Slot/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Slot", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "SlotById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Slot/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Slot", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SlotById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Slot\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t25 Dec 2013 9:15am - 9:30am: \\u003cb\\u003eBusy\\u003c/b\\u003e Physiotherapy\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"serviceCategory\": [\n {\n \"coding\": [\n {\n \"code\": \"17\",\n \"display\": \"General Practice\"\n }\n ]\n }\n ],\n \"serviceType\": [\n {\n \"coding\": [\n {\n \"code\": \"57\",\n \"display\": \"Immunization\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"code\": \"408480009\",\n \"display\": \"Clinical immunology\"\n }\n ]\n }\n ],\n \"appointmentType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0276\",\n \"code\": \"WALKIN\",\n \"display\": \"A previously unscheduled walk-in visit\"\n }\n ]\n },\n \"schedule\": {\n \"reference\": \"Schedule/example\"\n },\n \"status\": \"free\",\n \"start\": \"2013-12-25T09:15:00Z\",\n \"end\": \"2013-12-25T09:30:00Z\",\n \"comment\": \"Assessments should be performed before requesting appointments in this slot.\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Slot/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Slot", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SlotById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Slot/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Slot", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Slot_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Slot\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t25 Dec 2013 9:15am - 9:30am: \\u003cb\\u003eBusy\\u003c/b\\u003e Physiotherapy\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"serviceCategory\": [\n {\n \"coding\": [\n {\n \"code\": \"17\",\n \"display\": \"General Practice\"\n }\n ]\n }\n ],\n \"serviceType\": [\n {\n \"coding\": [\n {\n \"code\": \"57\",\n \"display\": \"Immunization\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"code\": \"408480009\",\n \"display\": \"Clinical immunology\"\n }\n ]\n }\n ],\n \"appointmentType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0276\",\n \"code\": \"WALKIN\",\n \"display\": \"A previously unscheduled walk-in visit\"\n }\n ]\n },\n \"schedule\": {\n \"reference\": \"Schedule/example\"\n },\n \"status\": \"free\",\n \"start\": \"2013-12-25T09:15:00Z\",\n \"end\": \"2013-12-25T09:30:00Z\",\n \"comment\": \"Assessments should be performed before requesting appointments in this slot.\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Slot", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Slot" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Slot_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Slot?schedule=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&slot-type=&start=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Slot" - ], - "query": [ - { - "key": "schedule", - "value": "", - "description": "The Schedule Resource that we are seeking a slot within" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "A Slot Identifier" - }, - { - "key": "slot-type", - "value": "", - "description": "The type of appointments that can be booked into the slot" - }, - { - "key": "start", - "value": "", - "description": "Appointment date/time." - }, - { - "key": "status", - "value": "", - "description": "The free/busy status of the appointment" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SlotHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Slot/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Slot", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Specimen", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "SpecimenHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Specimen/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Specimen", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SpecimenHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Specimen/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Specimen", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "SpecimenById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Specimen/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Specimen", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SpecimenById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Specimen\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: 101\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 23234352356\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eaccessionIdentifier\\u003c/b\\u003e: X352356\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: available\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Venous blood specimen \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027122555007\\u0027 \\u003d \\u0027Venous blood specimen\\u0027, given as \\u0027Venous blood specimen\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePeter Patient\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereceivedTime\\u003c/b\\u003e: 04/03/2011 7:03:00 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequest\\u003c/b\\u003e: \\u003ca\\u003eServiceRequest/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eCollections\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCollector\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCollected[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMethod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eBodySite\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e30/05/2011 6:15:00 AM\\u003c/td\\u003e\\u003ctd\\u003e6 mL\\u003c/td\\u003e\\u003ctd\\u003eLine, Venous \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v2-0488 code \\u0027LNV\\u0027 \\u003d \\u0027Line, Venous)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003eRight median cubital vein \\u003cspan\\u003e(Details : {SNOMED CT code \\u002749852007\\u0027 \\u003d \\u0027Median cubital vein\\u0027, given as \\u0027Structure of median cubital vein (body structure)\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eContainers\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eIdentifier\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCapacity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSpecimenQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAdditive[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e48736-15394-75465\\u003c/td\\u003e\\u003ctd\\u003eGreen Gel tube\\u003c/td\\u003e\\u003ctd\\u003eVacutainer \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e10 mL\\u003c/td\\u003e\\u003ctd\\u003e6 mL\\u003c/td\\u003e\\u003ctd\\u003eid: hep; Lithium/Li Heparin \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-EntityCode code \\u0027HEPL\\u0027 \\u003d \\u0027Lithium/Li Heparin)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: Specimen is grossly lipemic\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Substance\",\n \"id\": \"hep\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-EntityCode\",\n \"code\": \"HEPL\"\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"system\": \"http://ehr.acme.org/identifiers/collections\",\n \"value\": \"23234352356\"\n }\n ],\n \"accessionIdentifier\": {\n \"system\": \"http://lab.acme.org/specimens/2011\",\n \"value\": \"X352356\"\n },\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122555007\",\n \"display\": \"Venous blood specimen\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Patient\"\n },\n \"receivedTime\": \"2011-03-04T07:03:00Z\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/example\"\n }\n ],\n \"collection\": {\n \"collector\": {\n \"reference\": \"Practitioner/example\"\n },\n \"collectedDateTime\": \"2011-05-30T06:15:00Z\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0488\",\n \"code\": \"LNV\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"49852007\",\n \"display\": \"Structure of median cubital vein (body structure)\"\n }\n ],\n \"text\": \"Right median cubital vein\"\n }\n },\n \"container\": [\n {\n \"identifier\": [\n {\n \"value\": \"48736-15394-75465\"\n }\n ],\n \"description\": \"Green Gel tube\",\n \"type\": {\n \"text\": \"Vacutainer\"\n },\n \"capacity\": {\n \"value\": 10,\n \"unit\": \"mL\"\n },\n \"specimenQuantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"additiveReference\": {\n \"reference\": \"#hep\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Specimen is grossly lipemic\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Specimen/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Specimen", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SpecimenById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Specimen/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Specimen", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Specimen_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Specimen\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: 101\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 23234352356\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eaccessionIdentifier\\u003c/b\\u003e: X352356\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: available\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Venous blood specimen \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027122555007\\u0027 \\u003d \\u0027Venous blood specimen\\u0027, given as \\u0027Venous blood specimen\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePeter Patient\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereceivedTime\\u003c/b\\u003e: 04/03/2011 7:03:00 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequest\\u003c/b\\u003e: \\u003ca\\u003eServiceRequest/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eCollections\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCollector\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCollected[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMethod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eBodySite\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e30/05/2011 6:15:00 AM\\u003c/td\\u003e\\u003ctd\\u003e6 mL\\u003c/td\\u003e\\u003ctd\\u003eLine, Venous \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v2-0488 code \\u0027LNV\\u0027 \\u003d \\u0027Line, Venous)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003eRight median cubital vein \\u003cspan\\u003e(Details : {SNOMED CT code \\u002749852007\\u0027 \\u003d \\u0027Median cubital vein\\u0027, given as \\u0027Structure of median cubital vein (body structure)\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eContainers\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eIdentifier\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCapacity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSpecimenQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAdditive[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e48736-15394-75465\\u003c/td\\u003e\\u003ctd\\u003eGreen Gel tube\\u003c/td\\u003e\\u003ctd\\u003eVacutainer \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e10 mL\\u003c/td\\u003e\\u003ctd\\u003e6 mL\\u003c/td\\u003e\\u003ctd\\u003eid: hep; Lithium/Li Heparin \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-EntityCode code \\u0027HEPL\\u0027 \\u003d \\u0027Lithium/Li Heparin)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: Specimen is grossly lipemic\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Substance\",\n \"id\": \"hep\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-EntityCode\",\n \"code\": \"HEPL\"\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"system\": \"http://ehr.acme.org/identifiers/collections\",\n \"value\": \"23234352356\"\n }\n ],\n \"accessionIdentifier\": {\n \"system\": \"http://lab.acme.org/specimens/2011\",\n \"value\": \"X352356\"\n },\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122555007\",\n \"display\": \"Venous blood specimen\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Patient\"\n },\n \"receivedTime\": \"2011-03-04T07:03:00Z\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/example\"\n }\n ],\n \"collection\": {\n \"collector\": {\n \"reference\": \"Practitioner/example\"\n },\n \"collectedDateTime\": \"2011-05-30T06:15:00Z\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0488\",\n \"code\": \"LNV\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"49852007\",\n \"display\": \"Structure of median cubital vein (body structure)\"\n }\n ],\n \"text\": \"Right median cubital vein\"\n }\n },\n \"container\": [\n {\n \"identifier\": [\n {\n \"value\": \"48736-15394-75465\"\n }\n ],\n \"description\": \"Green Gel tube\",\n \"type\": {\n \"text\": \"Vacutainer\"\n },\n \"capacity\": {\n \"value\": 10,\n \"unit\": \"mL\"\n },\n \"specimenQuantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"additiveReference\": {\n \"reference\": \"#hep\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Specimen is grossly lipemic\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Specimen", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Specimen" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Specimen_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Specimen?collector=&parent=&patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&accession=&bodysite=&collected=&container=&container-id=&identifier=&status=&type=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Specimen" - ], - "query": [ - { - "key": "collector", - "value": "", - "description": "Who collected the specimen" - }, - { - "key": "parent", - "value": "", - "description": "The parent of the specimen" - }, - { - "key": "patient", - "value": "", - "description": "The patient the specimen comes from" - }, - { - "key": "subject", - "value": "", - "description": "The subject of the specimen" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "accession", - "value": "", - "description": "The accession number associated with the specimen" - }, - { - "key": "bodysite", - "value": "", - "description": "The code for the body site from where the specimen originated" - }, - { - "key": "collected", - "value": "", - "description": "The date the specimen was collected" - }, - { - "key": "container", - "value": "", - "description": "The kind of specimen container" - }, - { - "key": "container-id", - "value": "", - "description": "The unique identifier associated with the specimen container" - }, - { - "key": "identifier", - "value": "", - "description": "The unique identifier associated with the specimen" - }, - { - "key": "status", - "value": "", - "description": "available | unavailable | unsatisfactory | entered-in-error" - }, - { - "key": "type", - "value": "", - "description": "The specimen type" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SpecimenHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Specimen/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Specimen", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Structure Definition", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "StructureDefinitionHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/StructureDefinition/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureDefinition", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "StructureDefinitionHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/StructureDefinition/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureDefinition", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "StructureDefinitionById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/StructureDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "StructureDefinitionById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"StructureDefinition\",\n \"id\": \"example-composition\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example-composition\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/StructureDefinition/example-composition\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: DocumentStructure\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etitle\\u003c/b\\u003e: Document Structure (For testing section templates)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 05/11/2018 5:47:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ekind\\u003c/b\\u003e: complex-type\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eabstract\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: \\u003ca\\u003eComposition\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebaseDefinition\\u003c/b\\u003e: \\u003ca\\u003ehttp://hl7.org/fhir/StructureDefinition/Composition\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ederivation\\u003c/b\\u003e: constraint\\u003c/p\\u003e\\u003ch3\\u003eDifferentials\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eElement\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etodo-bundle\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/StructureDefinition/example-composition\",\n \"name\": \"DocumentStructure\",\n \"title\": \"Document Structure (For testing section templates)\",\n \"status\": \"active\",\n \"experimental\": false,\n \"date\": \"2018-11-05T17:47:00+11:00\",\n \"kind\": \"complex-type\",\n \"abstract\": false,\n \"type\": \"Composition\",\n \"baseDefinition\": \"http://hl7.org/fhir/StructureDefinition/Composition\",\n \"derivation\": \"constraint\",\n \"differential\": {\n \"element\": [\n {\n \"id\": \"Composition\",\n \"path\": \"Composition\"\n },\n {\n \"id\": \"Composition.section\",\n \"path\": \"Composition.section\",\n \"slicing\": {\n \"discriminator\": [\n {\n \"type\": \"pattern\",\n \"path\": \"code\"\n }\n ],\n \"description\": \"Slice by .section.code\",\n \"ordered\": true,\n \"rules\": \"closed\"\n }\n },\n {\n \"id\": \"Composition.section:procedure\",\n \"path\": \"Composition.section\",\n \"sliceName\": \"procedure\",\n \"min\": 1,\n \"type\": [\n {\n \"code\": \"BackboneElement\",\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/document-section-library\"\n ],\n \"_profile\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/elementdefinition-profile-element\",\n \"valueString\": \"Composition.section:procedure\"\n }\n ]\n }\n ]\n }\n ]\n },\n {\n \"id\": \"Composition.section:medications\",\n \"path\": \"Composition.section\",\n \"sliceName\": \"medications\",\n \"min\": 1,\n \"type\": [\n {\n \"code\": \"BackboneElement\",\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/document-section-library\"\n ],\n \"_profile\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/elementdefinition-profile-element\",\n \"valueString\": \"Composition.section:medications\"\n }\n ]\n }\n ]\n }\n ]\n },\n {\n \"id\": \"Composition.section:plan\",\n \"path\": \"Composition.section\",\n \"sliceName\": \"plan\",\n \"min\": 0,\n \"type\": [\n {\n \"code\": \"BackboneElement\",\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/document-section-library\"\n ],\n \"_profile\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/elementdefinition-profile-element\",\n \"valueString\": \"Composition.section:plan\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/StructureDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "StructureDefinitionById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/StructureDefinition/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureDefinition", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "StructureDefinition_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"StructureDefinition\",\n \"id\": \"example-composition\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example-composition\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/StructureDefinition/example-composition\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: DocumentStructure\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etitle\\u003c/b\\u003e: Document Structure (For testing section templates)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 05/11/2018 5:47:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ekind\\u003c/b\\u003e: complex-type\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eabstract\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: \\u003ca\\u003eComposition\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebaseDefinition\\u003c/b\\u003e: \\u003ca\\u003ehttp://hl7.org/fhir/StructureDefinition/Composition\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ederivation\\u003c/b\\u003e: constraint\\u003c/p\\u003e\\u003ch3\\u003eDifferentials\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eElement\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etodo-bundle\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/StructureDefinition/example-composition\",\n \"name\": \"DocumentStructure\",\n \"title\": \"Document Structure (For testing section templates)\",\n \"status\": \"active\",\n \"experimental\": false,\n \"date\": \"2018-11-05T17:47:00+11:00\",\n \"kind\": \"complex-type\",\n \"abstract\": false,\n \"type\": \"Composition\",\n \"baseDefinition\": \"http://hl7.org/fhir/StructureDefinition/Composition\",\n \"derivation\": \"constraint\",\n \"differential\": {\n \"element\": [\n {\n \"id\": \"Composition\",\n \"path\": \"Composition\"\n },\n {\n \"id\": \"Composition.section\",\n \"path\": \"Composition.section\",\n \"slicing\": {\n \"discriminator\": [\n {\n \"type\": \"pattern\",\n \"path\": \"code\"\n }\n ],\n \"description\": \"Slice by .section.code\",\n \"ordered\": true,\n \"rules\": \"closed\"\n }\n },\n {\n \"id\": \"Composition.section:procedure\",\n \"path\": \"Composition.section\",\n \"sliceName\": \"procedure\",\n \"min\": 1,\n \"type\": [\n {\n \"code\": \"BackboneElement\",\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/document-section-library\"\n ],\n \"_profile\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/elementdefinition-profile-element\",\n \"valueString\": \"Composition.section:procedure\"\n }\n ]\n }\n ]\n }\n ]\n },\n {\n \"id\": \"Composition.section:medications\",\n \"path\": \"Composition.section\",\n \"sliceName\": \"medications\",\n \"min\": 1,\n \"type\": [\n {\n \"code\": \"BackboneElement\",\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/document-section-library\"\n ],\n \"_profile\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/elementdefinition-profile-element\",\n \"valueString\": \"Composition.section:medications\"\n }\n ]\n }\n ]\n }\n ]\n },\n {\n \"id\": \"Composition.section:plan\",\n \"path\": \"Composition.section\",\n \"sliceName\": \"plan\",\n \"min\": 0,\n \"type\": [\n {\n \"code\": \"BackboneElement\",\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/document-section-library\"\n ],\n \"_profile\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/elementdefinition-profile-element\",\n \"valueString\": \"Composition.section:plan\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/StructureDefinition", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureDefinition" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "StructureDefinition_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/StructureDefinition?valueset=&_id=&_lastUpdated=&_profile=&_security=&_tag=&abstract=&base=&base-path=&context-type=&date=&derivation=&description=&experimental=&ext-context=&identifier=&jurisdiction=&keyword=&kind=&name=&path=&publisher=&status=&title=&type=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureDefinition" - ], - "query": [ - { - "key": "valueset", - "value": "", - "description": "A vocabulary binding reference" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "abstract", - "value": "", - "description": "Whether the structure is abstract" - }, - { - "key": "base", - "value": "", - "description": "Definition that this type is constrained/specialized from" - }, - { - "key": "base-path", - "value": "", - "description": "Path that identifies the base element" - }, - { - "key": "context-type", - "value": "", - "description": "resource | datatype | extension" - }, - { - "key": "date", - "value": "", - "description": "The structure definition publication date" - }, - { - "key": "derivation", - "value": "", - "description": "specialization | constraint - How relates to base definition" - }, - { - "key": "description", - "value": "", - "description": "The description of the structure definition" - }, - { - "key": "experimental", - "value": "", - "description": "For testing purposes, not real usage" - }, - { - "key": "ext-context", - "value": "", - "description": "Where the extension can be used in instances" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the structure definition" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the structure definition" - }, - { - "key": "keyword", - "value": "", - "description": "A code for the profile" - }, - { - "key": "kind", - "value": "", - "description": "primitive-type | complex-type | resource | logical" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the structure definition" - }, - { - "key": "path", - "value": "", - "description": "A path that is constrained in the profile" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the structure definition" - }, - { - "key": "status", - "value": "", - "description": "The current status of the structure definition" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the structure definition" - }, - { - "key": "type", - "value": "", - "description": "Type defined or constrained by this structure" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the structure definition" - }, - { - "key": "version", - "value": "", - "description": "The business version of the structure definition" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "StructureDefinitionHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/StructureDefinition/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureDefinition", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Structure Map", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "StructureMapHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/StructureMap/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureMap", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "StructureMapHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/StructureMap/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureMap", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "StructureMapById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/StructureMap/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureMap", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "StructureMapById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"StructureMap\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/StructureMap/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:37843577-95fb-4adb-84c0-8837188a7bf3\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 0.1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: ExampleMap\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etitle\\u003c/b\\u003e: Example Map\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 09/03/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: HL7 FHIR Standard\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Example Structure Map\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: Oceania \\u003cspan\\u003e(Details : {http://unstats.un.org/unsd/methods/m49/m49.htm code \\u0027009\\u0027 \\u003d \\u0027Oceania\\u0027, given as \\u0027Oceania\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003egroup\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Examples\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etypeMode\\u003c/b\\u003e: none\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: test -\\u0026gt; testValue\\u003c/p\\u003e\\u003ch3\\u003eInputs\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMode\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etest\\u003c/td\\u003e\\u003ctd\\u003esource\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003erule\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: rule1\\u003c/p\\u003e\\u003ch3\\u003eSources\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContext\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eElement\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eVariable\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eSource\\u003c/td\\u003e\\u003ctd\\u003eSourceClassA\\u003c/td\\u003e\\u003ctd\\u003etest\\u003c/td\\u003e\\u003ctd\\u003et\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eTargets\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContext\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContextType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eElement\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTransform\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eDestination\\u003c/td\\u003e\\u003ctd\\u003evariable\\u003c/td\\u003e\\u003ctd\\u003etestValue\\u003c/td\\u003e\\u003ctd\\u003ecopy\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/StructureMap/example\",\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:37843577-95fb-4adb-84c0-8837188a7bf3\"\n }\n ],\n \"version\": \"0.1\",\n \"name\": \"ExampleMap\",\n \"title\": \"Example Map\",\n \"status\": \"draft\",\n \"date\": \"2017-03-09\",\n \"publisher\": \"HL7 FHIR Standard\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"Example Structure Map\",\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"http://unstats.un.org/unsd/methods/m49/m49.htm\",\n \"code\": \"009\",\n \"display\": \"Oceania\"\n }\n ]\n }\n ],\n \"group\": [\n {\n \"name\": \"Examples\",\n \"typeMode\": \"none\",\n \"documentation\": \"test -\\u003e testValue\",\n \"input\": [\n {\n \"name\": \"test\",\n \"mode\": \"source\"\n }\n ],\n \"rule\": [\n {\n \"name\": \"rule1\",\n \"source\": [\n {\n \"context\": \"Source\",\n \"type\": \"SourceClassA\",\n \"element\": \"test\",\n \"variable\": \"t\"\n }\n ],\n \"target\": [\n {\n \"context\": \"Destination\",\n \"contextType\": \"variable\",\n \"element\": \"testValue\",\n \"transform\": \"copy\"\n }\n ]\n }\n ]\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/StructureMap/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureMap", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "StructureMapById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/StructureMap/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureMap", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "StructureMap_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"StructureMap\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/StructureMap/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:37843577-95fb-4adb-84c0-8837188a7bf3\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 0.1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: ExampleMap\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etitle\\u003c/b\\u003e: Example Map\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 09/03/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: HL7 FHIR Standard\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Example Structure Map\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: Oceania \\u003cspan\\u003e(Details : {http://unstats.un.org/unsd/methods/m49/m49.htm code \\u0027009\\u0027 \\u003d \\u0027Oceania\\u0027, given as \\u0027Oceania\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003egroup\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Examples\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etypeMode\\u003c/b\\u003e: none\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: test -\\u0026gt; testValue\\u003c/p\\u003e\\u003ch3\\u003eInputs\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMode\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etest\\u003c/td\\u003e\\u003ctd\\u003esource\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003erule\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: rule1\\u003c/p\\u003e\\u003ch3\\u003eSources\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContext\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eElement\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eVariable\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eSource\\u003c/td\\u003e\\u003ctd\\u003eSourceClassA\\u003c/td\\u003e\\u003ctd\\u003etest\\u003c/td\\u003e\\u003ctd\\u003et\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eTargets\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContext\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContextType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eElement\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTransform\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eDestination\\u003c/td\\u003e\\u003ctd\\u003evariable\\u003c/td\\u003e\\u003ctd\\u003etestValue\\u003c/td\\u003e\\u003ctd\\u003ecopy\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/StructureMap/example\",\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:37843577-95fb-4adb-84c0-8837188a7bf3\"\n }\n ],\n \"version\": \"0.1\",\n \"name\": \"ExampleMap\",\n \"title\": \"Example Map\",\n \"status\": \"draft\",\n \"date\": \"2017-03-09\",\n \"publisher\": \"HL7 FHIR Standard\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"Example Structure Map\",\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"http://unstats.un.org/unsd/methods/m49/m49.htm\",\n \"code\": \"009\",\n \"display\": \"Oceania\"\n }\n ]\n }\n ],\n \"group\": [\n {\n \"name\": \"Examples\",\n \"typeMode\": \"none\",\n \"documentation\": \"test -\\u003e testValue\",\n \"input\": [\n {\n \"name\": \"test\",\n \"mode\": \"source\"\n }\n ],\n \"rule\": [\n {\n \"name\": \"rule1\",\n \"source\": [\n {\n \"context\": \"Source\",\n \"type\": \"SourceClassA\",\n \"element\": \"test\",\n \"variable\": \"t\"\n }\n ],\n \"target\": [\n {\n \"context\": \"Destination\",\n \"contextType\": \"variable\",\n \"element\": \"testValue\",\n \"transform\": \"copy\"\n }\n ]\n }\n ]\n }\n ]\n}" - }, - "url": { - "raw": "{{API_URL}}/StructureMap", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureMap" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "StructureMap_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/StructureMap?_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&identifier=&jurisdiction=&name=&publisher=&status=&title=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureMap" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "The structure map publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the structure map" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the structure map" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the structure map" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the structure map" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the structure map" - }, - { - "key": "status", - "value": "", - "description": "The current status of the structure map" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the structure map" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the structure map" - }, - { - "key": "version", - "value": "", - "description": "The business version of the structure map" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "StructureMapHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/StructureMap/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "StructureMap", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Subscription", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "SubscriptionHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Subscription/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Subscription", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SubscriptionHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Subscription/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Subscription", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "SubscriptionById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Subscription/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Subscription", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SubscriptionById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Subscription\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e[Put rendering here]\\u003c/div\\u003e\"\n },\n \"status\": \"requested\",\n \"contact\": [\n {\n \"system\": \"phone\",\n \"value\": \"ext 4123\"\n }\n ],\n \"end\": \"2021-01-01T00:00:00Z\",\n \"reason\": \"Monitor new neonatal function\",\n \"criteria\": \"Observation?code\\u003dhttp://loinc.org|1975-2\",\n \"channel\": {\n \"type\": \"rest-hook\",\n \"endpoint\": \"https://biliwatch.com/customers/mount-auburn-miu/on-result\",\n \"payload\": \"application/fhir+json\",\n \"header\": [\n \"Authorization: Bearer secret-token-abc-123\"\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Subscription/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Subscription", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SubscriptionById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Subscription/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Subscription", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Subscription_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Subscription\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e[Put rendering here]\\u003c/div\\u003e\"\n },\n \"status\": \"requested\",\n \"contact\": [\n {\n \"system\": \"phone\",\n \"value\": \"ext 4123\"\n }\n ],\n \"end\": \"2021-01-01T00:00:00Z\",\n \"reason\": \"Monitor new neonatal function\",\n \"criteria\": \"Observation?code\\u003dhttp://loinc.org|1975-2\",\n \"channel\": {\n \"type\": \"rest-hook\",\n \"endpoint\": \"https://biliwatch.com/customers/mount-auburn-miu/on-result\",\n \"payload\": \"application/fhir+json\",\n \"header\": [\n \"Authorization: Bearer secret-token-abc-123\"\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Subscription", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Subscription" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Subscription_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Subscription?_id=&_lastUpdated=&_profile=&_security=&_tag=&add-tag=&contact=&criteria=&payload=&status=&type=&url=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Subscription" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "add-tag", - "value": "", - "description": "A tag to be added to the resource matching the criteria" - }, - { - "key": "contact", - "value": "", - "description": "Contact details for the subscription" - }, - { - "key": "criteria", - "value": "", - "description": "The search rules used to determine when to send a notification" - }, - { - "key": "payload", - "value": "", - "description": "The mime-type of the notification payload" - }, - { - "key": "status", - "value": "", - "description": "The current state of the subscription" - }, - { - "key": "type", - "value": "", - "description": "The type of channel for the sent notifications" - }, - { - "key": "url", - "value": "", - "description": "The uri that will receive the notifications" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SubscriptionHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Subscription/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Subscription", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Substance", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "SubstanceHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Substance/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Substance", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SubstanceHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Substance/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Substance", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "SubstanceById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Substance/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Substance", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SubstanceById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Substance\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 1463\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Allergen \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/substance-category code \\u0027allergen\\u0027 \\u003d \\u0027Allergen\\u0027, given as \\u0027Allergen\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: apitoxin (Honey Bee Venom) \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://acme.org/identifiers/substances\",\n \"value\": \"1463\"\n }\n ],\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/substance-category\",\n \"code\": \"allergen\",\n \"display\": \"Allergen\"\n }\n ]\n }\n ],\n \"code\": {\n \"text\": \"apitoxin (Honey Bee Venom)\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Substance/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Substance", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SubstanceById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Substance/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Substance", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Substance_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Substance\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 1463\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Allergen \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/substance-category code \\u0027allergen\\u0027 \\u003d \\u0027Allergen\\u0027, given as \\u0027Allergen\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: apitoxin (Honey Bee Venom) \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://acme.org/identifiers/substances\",\n \"value\": \"1463\"\n }\n ],\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/substance-category\",\n \"code\": \"allergen\",\n \"display\": \"Allergen\"\n }\n ]\n }\n ],\n \"code\": {\n \"text\": \"apitoxin (Honey Bee Venom)\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Substance", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Substance" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Substance_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Substance?substance-reference=&_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&code=&container-identifier=&expiry=&identifier=&quantity=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Substance" - ], - "query": [ - { - "key": "substance-reference", - "value": "", - "description": "A component of the substance" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "category", - "value": "", - "description": "The category of the substance" - }, - { - "key": "code", - "value": "", - "description": "The code of the substance or ingredient" - }, - { - "key": "container-identifier", - "value": "", - "description": "Identifier of the package/container" - }, - { - "key": "expiry", - "value": "", - "description": "Expiry date of package or container of substance" - }, - { - "key": "identifier", - "value": "", - "description": "Unique identifier for the substance" - }, - { - "key": "quantity", - "value": "", - "description": "Amount of substance in the package" - }, - { - "key": "status", - "value": "", - "description": "active | inactive | entered-in-error" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SubstanceHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Substance/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Substance", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Supply Delivery", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "SupplyDeliveryHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SupplyDelivery/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyDelivery", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SupplyDeliveryHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SupplyDelivery/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyDelivery", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "SupplyDeliveryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SupplyDelivery/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyDelivery", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SupplyDeliveryById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"SupplyDelivery\",\n \"id\": \"simpledelivery\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: simpledelivery\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: Order10284\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebasedOn\\u003c/b\\u003e: \\u003ca\\u003eSupplyRequest/simpleorder\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epartOf\\u003c/b\\u003e: Central Supply Restock\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Blood collect tubes blue cap \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/supply-item-type code \\u0027device\\u0027 \\u003d \\u0027Device)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eSuppliedItems\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eItem[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e10\\u003c/td\\u003e\\u003ctd\\u003eBlood collect tubes blue cap \\u003cspan\\u003e(Details : {[not stated] code \\u0027BlueTubes\\u0027 \\u003d \\u0027BlueTubes\\u0027, given as \\u0027Blood collect tubes blue cap\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrence\\u003c/b\\u003e: 31/12/2016\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esupplier\\u003c/b\\u003e: Vendor1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edestination\\u003c/b\\u003e: Location 1\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"Order10284\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"SupplyRequest/simpleorder\"\n }\n ],\n \"partOf\": [\n {\n \"display\": \"Central Supply Restock\"\n }\n ],\n \"status\": \"completed\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/supply-item-type\",\n \"code\": \"device\"\n }\n ],\n \"text\": \"Blood collect tubes blue cap\"\n },\n \"suppliedItem\": {\n \"quantity\": {\n \"value\": 10\n },\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"BlueTubes\",\n \"display\": \"Blood collect tubes blue cap\"\n }\n ]\n }\n },\n \"occurrenceDateTime\": \"2016-12-31\",\n \"supplier\": {\n \"display\": \"Vendor1\"\n },\n \"destination\": {\n \"display\": \"Location 1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/SupplyDelivery/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyDelivery", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SupplyDeliveryById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SupplyDelivery/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyDelivery", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "SupplyDelivery_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"SupplyDelivery\",\n \"id\": \"simpledelivery\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: simpledelivery\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: Order10284\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebasedOn\\u003c/b\\u003e: \\u003ca\\u003eSupplyRequest/simpleorder\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epartOf\\u003c/b\\u003e: Central Supply Restock\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Blood collect tubes blue cap \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/supply-item-type code \\u0027device\\u0027 \\u003d \\u0027Device)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eSuppliedItems\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eItem[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e10\\u003c/td\\u003e\\u003ctd\\u003eBlood collect tubes blue cap \\u003cspan\\u003e(Details : {[not stated] code \\u0027BlueTubes\\u0027 \\u003d \\u0027BlueTubes\\u0027, given as \\u0027Blood collect tubes blue cap\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrence\\u003c/b\\u003e: 31/12/2016\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esupplier\\u003c/b\\u003e: Vendor1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edestination\\u003c/b\\u003e: Location 1\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"Order10284\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"SupplyRequest/simpleorder\"\n }\n ],\n \"partOf\": [\n {\n \"display\": \"Central Supply Restock\"\n }\n ],\n \"status\": \"completed\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/supply-item-type\",\n \"code\": \"device\"\n }\n ],\n \"text\": \"Blood collect tubes blue cap\"\n },\n \"suppliedItem\": {\n \"quantity\": {\n \"value\": 10\n },\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"BlueTubes\",\n \"display\": \"Blood collect tubes blue cap\"\n }\n ]\n }\n },\n \"occurrenceDateTime\": \"2016-12-31\",\n \"supplier\": {\n \"display\": \"Vendor1\"\n },\n \"destination\": {\n \"display\": \"Location 1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/SupplyDelivery", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyDelivery" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SupplyDelivery_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SupplyDelivery?patient=&receiver=&supplier=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyDelivery" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "receiver", - "value": "", - "description": "Who collected the Supply" - }, - { - "key": "supplier", - "value": "", - "description": "Dispenser" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "status", - "value": "", - "description": "in-progress | completed | abandoned | entered-in-error" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SupplyDeliveryHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SupplyDelivery/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyDelivery", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Supply Request", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "SupplyRequestHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SupplyRequest/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyRequest", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SupplyRequestHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SupplyRequest/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyRequest", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "SupplyRequestById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SupplyRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SupplyRequestById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"SupplyRequest\",\n \"id\": \"simpleorder\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: simpleorder\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: Order10284\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Central Stock Resupply \\u003cspan\\u003e(Details : {[not stated] code \\u0027central\\u0027 \\u003d \\u0027central\\u0027, given as \\u0027Central Stock Resupply\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epriority\\u003c/b\\u003e: asap\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eitem\\u003c/b\\u003e: Blood collect tubes blue cap \\u003cspan\\u003e(Details : {[not stated] code \\u0027BlueTubes\\u0027 \\u003d \\u0027BlueTubes\\u0027, given as \\u0027Blood collect tubes blue cap\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003equantity\\u003c/b\\u003e: 10\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrence\\u003c/b\\u003e: 31/12/2016\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eauthoredOn\\u003c/b\\u003e: 31/12/2016\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequester\\u003c/b\\u003e: Henry Seven\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esupplier\\u003c/b\\u003e: Vendor1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Refill due to low stock \\u003cspan\\u003e(Details : {[not stated] code \\u0027stock_low\\u0027 \\u003d \\u0027stock_low\\u0027, given as \\u0027Refill due to low stock\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edeliverFrom\\u003c/b\\u003e: Location 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edeliverTo\\u003c/b\\u003e: GoodHealth Clinic Receiving\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"Order10284\"\n }\n ],\n \"status\": \"active\",\n \"category\": {\n \"coding\": [\n {\n \"code\": \"central\",\n \"display\": \"Central Stock Resupply\"\n }\n ]\n },\n \"priority\": \"asap\",\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"BlueTubes\",\n \"display\": \"Blood collect tubes blue cap\"\n }\n ]\n },\n \"quantity\": {\n \"value\": 10\n },\n \"occurrenceDateTime\": \"2016-12-31\",\n \"authoredOn\": \"2016-12-31\",\n \"requester\": {\n \"display\": \"Henry Seven\"\n },\n \"supplier\": [\n {\n \"display\": \"Vendor1\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"stock_low\",\n \"display\": \"Refill due to low stock\"\n }\n ]\n }\n ],\n \"deliverFrom\": {\n \"display\": \"Location 1\"\n },\n \"deliverTo\": {\n \"display\": \"GoodHealth Clinic Receiving\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/SupplyRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SupplyRequestById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SupplyRequest/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyRequest", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "SupplyRequest_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"SupplyRequest\",\n \"id\": \"simpleorder\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: simpleorder\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: Order10284\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Central Stock Resupply \\u003cspan\\u003e(Details : {[not stated] code \\u0027central\\u0027 \\u003d \\u0027central\\u0027, given as \\u0027Central Stock Resupply\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epriority\\u003c/b\\u003e: asap\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eitem\\u003c/b\\u003e: Blood collect tubes blue cap \\u003cspan\\u003e(Details : {[not stated] code \\u0027BlueTubes\\u0027 \\u003d \\u0027BlueTubes\\u0027, given as \\u0027Blood collect tubes blue cap\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003equantity\\u003c/b\\u003e: 10\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrence\\u003c/b\\u003e: 31/12/2016\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eauthoredOn\\u003c/b\\u003e: 31/12/2016\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequester\\u003c/b\\u003e: Henry Seven\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esupplier\\u003c/b\\u003e: Vendor1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Refill due to low stock \\u003cspan\\u003e(Details : {[not stated] code \\u0027stock_low\\u0027 \\u003d \\u0027stock_low\\u0027, given as \\u0027Refill due to low stock\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edeliverFrom\\u003c/b\\u003e: Location 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edeliverTo\\u003c/b\\u003e: GoodHealth Clinic Receiving\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"Order10284\"\n }\n ],\n \"status\": \"active\",\n \"category\": {\n \"coding\": [\n {\n \"code\": \"central\",\n \"display\": \"Central Stock Resupply\"\n }\n ]\n },\n \"priority\": \"asap\",\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"BlueTubes\",\n \"display\": \"Blood collect tubes blue cap\"\n }\n ]\n },\n \"quantity\": {\n \"value\": 10\n },\n \"occurrenceDateTime\": \"2016-12-31\",\n \"authoredOn\": \"2016-12-31\",\n \"requester\": {\n \"display\": \"Henry Seven\"\n },\n \"supplier\": [\n {\n \"display\": \"Vendor1\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"stock_low\",\n \"display\": \"Refill due to low stock\"\n }\n ]\n }\n ],\n \"deliverFrom\": {\n \"display\": \"Location 1\"\n },\n \"deliverTo\": {\n \"display\": \"GoodHealth Clinic Receiving\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/SupplyRequest", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyRequest" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SupplyRequest_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SupplyRequest?requester=&supplier=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&category=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyRequest" - ], - "query": [ - { - "key": "requester", - "value": "", - "description": "Individual making the request" - }, - { - "key": "supplier", - "value": "", - "description": "Who is intended to fulfill the request" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "category", - "value": "", - "description": "The kind of supply (central, non-stock, etc.)" - }, - { - "key": "status", - "value": "", - "description": "draft | active | suspended +" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "SupplyRequestHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/SupplyRequest/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "SupplyRequest", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Task", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "TaskHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Task/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Task", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TaskHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Task/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Task", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "TaskById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Task/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Task", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TaskById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Task\",\n \"id\": \"example1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 20170201-001 (OFFICIAL)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebasedOn\\u003c/b\\u003e: General Wellness Careplan\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003egroupIdentifier\\u003c/b\\u003e: G20170201-001 (OFFICIAL)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: in-progress\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebusinessStatus\\u003c/b\\u003e: waiting for specimen \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eintent\\u003c/b\\u003e: order\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epriority\\u003c/b\\u003e: routine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Lipid Panel \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Create order for getting specimen, Set up inhouse testing, generate order for any sendouts and submit with specimen\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efocus\\u003c/b\\u003e: \\u003ca\\u003eLipid Panel Request\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efor\\u003c/b\\u003e: \\u003ca\\u003ePeter James Chalmers\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eExample In-Patient Encounter\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexecutionPeriod\\u003c/b\\u003e: 31/10/2016 8:25:05 AM --\\u0026gt; (ongoing)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eauthoredOn\\u003c/b\\u003e: 31/10/2016 8:25:05 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elastModified\\u003c/b\\u003e: 31/10/2016 9:45:05 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequester\\u003c/b\\u003e: \\u003ca\\u003eDr Adam Careful\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformerType\\u003c/b\\u003e: Performer \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/task-performer-type code \\u0027performer\\u0027 \\u003d \\u0027performer\\u0027, given as \\u0027Performer\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eowner\\u003c/b\\u003e: \\u003ca\\u003eClinical Laboratory @ Acme Hospital\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: The Task.reason should only be included if there is no Task.focus or if it differs from the reason indicated on the focus \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: This is an example to demonstrate using task for actioning a servicerequest and to illustrate how to populate many of the task elements - this is the parent task that will be broken into subtask to grab the specimen and a sendout lab test \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erelevantHistory\\u003c/b\\u003e: Author\\u0027s Signature. Generated Summary: id: signature; recorded: 31/10/2016 8:25:05 AM; \\u003c/p\\u003e\\u003ch3\\u003eRestrictions\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRepetitions\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePeriod\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e1\\u003c/td\\u003e\\u003ctd\\u003e?? --\\u0026gt; 02/11/2016 9:45:05 AM\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Provenance\",\n \"id\": \"signature\",\n \"target\": [\n {\n \"reference\": \"ServiceRequest/physiotherapy/_history/1\"\n }\n ],\n \"recorded\": \"2016-10-31T08:25:05+10:00\",\n \"agent\": [\n {\n \"role\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"AUT\"\n }\n ]\n }\n ],\n \"who\": {\n \"reference\": \"Practitioner/f202\",\n \"display\": \"Luigi Maas\"\n }\n }\n ],\n \"signature\": [\n {\n \"type\": [\n {\n \"system\": \"urn:iso-astm:E1762-95:2013\",\n \"code\": \"1.2.840.10065.1.12.1.1\",\n \"display\": \"Author\\u0027s Signature\"\n }\n ],\n \"when\": \"2016-10-31T08:25:05+10:00\",\n \"who\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"targetFormat\": \"application/fhir+xml\",\n \"sigFormat\": \"application/signature+xml\",\n \"data\": \"dGhpcyBibG9iIGlzIHNuaXBwZWQ\\u003d\"\n }\n ]\n }\n ],\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http:/goodhealth.org/identifiers\",\n \"value\": \"20170201-001\"\n }\n ],\n \"basedOn\": [\n {\n \"display\": \"General Wellness Careplan\"\n }\n ],\n \"groupIdentifier\": {\n \"use\": \"official\",\n \"system\": \"http:/goodhealth.org/accession/identifiers\",\n \"value\": \"G20170201-001\"\n },\n \"status\": \"in-progress\",\n \"businessStatus\": {\n \"text\": \"waiting for specimen\"\n },\n \"intent\": \"order\",\n \"priority\": \"routine\",\n \"code\": {\n \"text\": \"Lipid Panel\"\n },\n \"description\": \"Create order for getting specimen, Set up inhouse testing, generate order for any sendouts and submit with specimen\",\n \"focus\": {\n \"reference\": \"ServiceRequest/lipid\",\n \"display\": \"Lipid Panel Request\"\n },\n \"for\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\",\n \"display\": \"Example In-Patient Encounter\"\n },\n \"executionPeriod\": {\n \"start\": \"2016-10-31T08:25:05+10:00\"\n },\n \"authoredOn\": \"2016-10-31T08:25:05+10:00\",\n \"lastModified\": \"2016-10-31T09:45:05+10:00\",\n \"requester\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"performerType\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/task-performer-type\",\n \"code\": \"performer\",\n \"display\": \"Performer\"\n }\n ],\n \"text\": \"Performer\"\n }\n ],\n \"owner\": {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Clinical Laboratory @ Acme Hospital\"\n },\n \"reasonCode\": {\n \"text\": \"The Task.reason should only be included if there is no Task.focus or if it differs from the reason indicated on the focus\"\n },\n \"note\": [\n {\n \"text\": \"This is an example to demonstrate using task for actioning a servicerequest and to illustrate how to populate many of the task elements - this is the parent task that will be broken into subtask to grab the specimen and a sendout lab test \"\n }\n ],\n \"relevantHistory\": [\n {\n \"reference\": \"#signature\",\n \"display\": \"Author\\u0027s Signature\"\n }\n ],\n \"restriction\": {\n \"repetitions\": 1,\n \"period\": {\n \"end\": \"2016-11-02T09:45:05+10:00\"\n }\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Task/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Task", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TaskById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Task/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Task", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Task_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"Task\",\n \"id\": \"example1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 20170201-001 (OFFICIAL)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebasedOn\\u003c/b\\u003e: General Wellness Careplan\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003egroupIdentifier\\u003c/b\\u003e: G20170201-001 (OFFICIAL)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: in-progress\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebusinessStatus\\u003c/b\\u003e: waiting for specimen \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eintent\\u003c/b\\u003e: order\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epriority\\u003c/b\\u003e: routine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Lipid Panel \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Create order for getting specimen, Set up inhouse testing, generate order for any sendouts and submit with specimen\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efocus\\u003c/b\\u003e: \\u003ca\\u003eLipid Panel Request\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efor\\u003c/b\\u003e: \\u003ca\\u003ePeter James Chalmers\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eExample In-Patient Encounter\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexecutionPeriod\\u003c/b\\u003e: 31/10/2016 8:25:05 AM --\\u0026gt; (ongoing)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eauthoredOn\\u003c/b\\u003e: 31/10/2016 8:25:05 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elastModified\\u003c/b\\u003e: 31/10/2016 9:45:05 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequester\\u003c/b\\u003e: \\u003ca\\u003eDr Adam Careful\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformerType\\u003c/b\\u003e: Performer \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/task-performer-type code \\u0027performer\\u0027 \\u003d \\u0027performer\\u0027, given as \\u0027Performer\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eowner\\u003c/b\\u003e: \\u003ca\\u003eClinical Laboratory @ Acme Hospital\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: The Task.reason should only be included if there is no Task.focus or if it differs from the reason indicated on the focus \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: This is an example to demonstrate using task for actioning a servicerequest and to illustrate how to populate many of the task elements - this is the parent task that will be broken into subtask to grab the specimen and a sendout lab test \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erelevantHistory\\u003c/b\\u003e: Author\\u0027s Signature. Generated Summary: id: signature; recorded: 31/10/2016 8:25:05 AM; \\u003c/p\\u003e\\u003ch3\\u003eRestrictions\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRepetitions\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePeriod\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e1\\u003c/td\\u003e\\u003ctd\\u003e?? --\\u0026gt; 02/11/2016 9:45:05 AM\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Provenance\",\n \"id\": \"signature\",\n \"target\": [\n {\n \"reference\": \"ServiceRequest/physiotherapy/_history/1\"\n }\n ],\n \"recorded\": \"2016-10-31T08:25:05+10:00\",\n \"agent\": [\n {\n \"role\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"AUT\"\n }\n ]\n }\n ],\n \"who\": {\n \"reference\": \"Practitioner/f202\",\n \"display\": \"Luigi Maas\"\n }\n }\n ],\n \"signature\": [\n {\n \"type\": [\n {\n \"system\": \"urn:iso-astm:E1762-95:2013\",\n \"code\": \"1.2.840.10065.1.12.1.1\",\n \"display\": \"Author\\u0027s Signature\"\n }\n ],\n \"when\": \"2016-10-31T08:25:05+10:00\",\n \"who\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"targetFormat\": \"application/fhir+xml\",\n \"sigFormat\": \"application/signature+xml\",\n \"data\": \"dGhpcyBibG9iIGlzIHNuaXBwZWQ\\u003d\"\n }\n ]\n }\n ],\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http:/goodhealth.org/identifiers\",\n \"value\": \"20170201-001\"\n }\n ],\n \"basedOn\": [\n {\n \"display\": \"General Wellness Careplan\"\n }\n ],\n \"groupIdentifier\": {\n \"use\": \"official\",\n \"system\": \"http:/goodhealth.org/accession/identifiers\",\n \"value\": \"G20170201-001\"\n },\n \"status\": \"in-progress\",\n \"businessStatus\": {\n \"text\": \"waiting for specimen\"\n },\n \"intent\": \"order\",\n \"priority\": \"routine\",\n \"code\": {\n \"text\": \"Lipid Panel\"\n },\n \"description\": \"Create order for getting specimen, Set up inhouse testing, generate order for any sendouts and submit with specimen\",\n \"focus\": {\n \"reference\": \"ServiceRequest/lipid\",\n \"display\": \"Lipid Panel Request\"\n },\n \"for\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\",\n \"display\": \"Example In-Patient Encounter\"\n },\n \"executionPeriod\": {\n \"start\": \"2016-10-31T08:25:05+10:00\"\n },\n \"authoredOn\": \"2016-10-31T08:25:05+10:00\",\n \"lastModified\": \"2016-10-31T09:45:05+10:00\",\n \"requester\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"performerType\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/task-performer-type\",\n \"code\": \"performer\",\n \"display\": \"Performer\"\n }\n ],\n \"text\": \"Performer\"\n }\n ],\n \"owner\": {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Clinical Laboratory @ Acme Hospital\"\n },\n \"reasonCode\": {\n \"text\": \"The Task.reason should only be included if there is no Task.focus or if it differs from the reason indicated on the focus\"\n },\n \"note\": [\n {\n \"text\": \"This is an example to demonstrate using task for actioning a servicerequest and to illustrate how to populate many of the task elements - this is the parent task that will be broken into subtask to grab the specimen and a sendout lab test \"\n }\n ],\n \"relevantHistory\": [\n {\n \"reference\": \"#signature\",\n \"display\": \"Author\\u0027s Signature\"\n }\n ],\n \"restriction\": {\n \"repetitions\": 1,\n \"period\": {\n \"end\": \"2016-11-02T09:45:05+10:00\"\n }\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/Task", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Task" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "Task_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Task?based-on=&context=&focus=&organization=&owner=&part-of=&patient=&requester=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&authored-on=&business-status=&code=&group-identifier=&identifier=&intent=&modified=&performer=&period=&priority=&status=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Task" - ], - "query": [ - { - "key": "based-on", - "value": "", - "description": "Search by requests this task is based on" - }, - { - "key": "context", - "value": "", - "description": "Search by encounter or episode" - }, - { - "key": "focus", - "value": "", - "description": "Search by task focus" - }, - { - "key": "organization", - "value": "", - "description": "Search by responsible organization" - }, - { - "key": "owner", - "value": "", - "description": "Search by task owner" - }, - { - "key": "part-of", - "value": "", - "description": "Search by task this task is part of" - }, - { - "key": "patient", - "value": "", - "description": "Search by patient" - }, - { - "key": "requester", - "value": "", - "description": "Search by task requester" - }, - { - "key": "subject", - "value": "", - "description": "Search by subject" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "authored-on", - "value": "", - "description": "Search by creation date" - }, - { - "key": "business-status", - "value": "", - "description": "Search by business status" - }, - { - "key": "code", - "value": "", - "description": "Search by task code" - }, - { - "key": "group-identifier", - "value": "", - "description": "Search by group identifier" - }, - { - "key": "identifier", - "value": "", - "description": "Search for a task instance by its business identifier" - }, - { - "key": "intent", - "value": "", - "description": "Search by task intent" - }, - { - "key": "modified", - "value": "", - "description": "Search by last modification date" - }, - { - "key": "performer", - "value": "", - "description": "Search by recommended type of performer (e.g., Requester, Performer, Scheduler)." - }, - { - "key": "period", - "value": "", - "description": "Search by period Task is/was underway" - }, - { - "key": "priority", - "value": "", - "description": "Search by task priority" - }, - { - "key": "status", - "value": "", - "description": "Search by task status" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TaskHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/Task/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "Task", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Test Report", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "TestReportHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/TestReport/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestReport", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TestReportHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/TestReport/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestReport", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "TestReportById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/TestReport/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestReport", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TestReportById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"TestReport\",\n \"id\": \"testreport-example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: testreport-example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.9878\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: TestReport Example for TestScript Example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etestScript\\u003c/b\\u003e: \\u003ca\\u003eTestScript/testscript-example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresult\\u003c/b\\u003e: pass\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003escore\\u003c/b\\u003e: 100.0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etester\\u003c/b\\u003e: HL7 Execution Engine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eissued\\u003c/b\\u003e: 07/10/2016 8:25:34 AM\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparticipant\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: test-engine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euri\\u003c/b\\u003e: \\u003ca\\u003ehttp://projectcrucible.org\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edisplay\\u003c/b\\u003e: Crucible\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparticipant\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: server\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euri\\u003c/b\\u003e: \\u003ca\\u003ehttp://fhir3.healthintersections.com.au/open\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edisplay\\u003c/b\\u003e: HealthIntersections STU3\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003esetup\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003eDELETE Patient\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://projectcrucible.org/permalink/1\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003eHTTP 204\\u003c/td\\u003e\\u003ctd\\u003ehttp://projectcrucible.org/permalink/1\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003ePOST Patient/fixture-patient-create\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://projectcrucible.org/permalink/1\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003eHTTP 201\\u003c/td\\u003e\\u003ctd\\u003ehttp://projectcrucible.org/permalink/1\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003etest\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Read Patient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Read a Patient and validate response.\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eteardown\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.9878\"\n },\n \"name\": \"TestReport Example for TestScript Example\",\n \"status\": \"completed\",\n \"testScript\": {\n \"reference\": \"TestScript/testscript-example\"\n },\n \"result\": \"pass\",\n \"score\": 100.0,\n \"tester\": \"HL7 Execution Engine\",\n \"issued\": \"2016-10-07T08:25:34-05:00\",\n \"participant\": [\n {\n \"type\": \"test-engine\",\n \"uri\": \"http://projectcrucible.org\",\n \"display\": \"Crucible\"\n },\n {\n \"type\": \"server\",\n \"uri\": \"http://fhir3.healthintersections.com.au/open\",\n \"display\": \"HealthIntersections STU3\"\n }\n ],\n \"setup\": {\n \"action\": [\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"DELETE Patient\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"HTTP 204\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n },\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"POST Patient/fixture-patient-create\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"HTTP 201\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n }\n ]\n },\n \"test\": [\n {\n \"id\": \"01-ReadPatient\",\n \"name\": \"Read Patient\",\n \"description\": \"Read a Patient and validate response.\",\n \"action\": [\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"GET Patient/fixture-patient-create\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"HTTP 200\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Last-Modified Present\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Response is Patient\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Response validates\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.family \\u0027Chalmers\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.given \\u0027Peter\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.family \\u0027Chalmers\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.family \\u0027Chalmers\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient expected values.\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n }\n ]\n }\n ],\n \"teardown\": {\n \"action\": [\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"DELETE Patient/fixture-patient-create.\",\n \"detail\": \"http://projectcrucible.org/permalink/3\"\n }\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/TestReport/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestReport", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TestReportById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/TestReport/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestReport", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "TestReport_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "text/plain" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"TestReport\",\n \"id\": \"testreport-example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: testreport-example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.9878\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: TestReport Example for TestScript Example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etestScript\\u003c/b\\u003e: \\u003ca\\u003eTestScript/testscript-example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresult\\u003c/b\\u003e: pass\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003escore\\u003c/b\\u003e: 100.0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etester\\u003c/b\\u003e: HL7 Execution Engine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eissued\\u003c/b\\u003e: 07/10/2016 8:25:34 AM\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparticipant\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: test-engine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euri\\u003c/b\\u003e: \\u003ca\\u003ehttp://projectcrucible.org\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edisplay\\u003c/b\\u003e: Crucible\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparticipant\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: server\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euri\\u003c/b\\u003e: \\u003ca\\u003ehttp://fhir3.healthintersections.com.au/open\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edisplay\\u003c/b\\u003e: HealthIntersections STU3\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003esetup\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003eDELETE Patient\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://projectcrucible.org/permalink/1\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003eHTTP 204\\u003c/td\\u003e\\u003ctd\\u003ehttp://projectcrucible.org/permalink/1\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003ePOST Patient/fixture-patient-create\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://projectcrucible.org/permalink/1\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003eHTTP 201\\u003c/td\\u003e\\u003ctd\\u003ehttp://projectcrucible.org/permalink/1\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003etest\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Read Patient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Read a Patient and validate response.\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eteardown\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.9878\"\n },\n \"name\": \"TestReport Example for TestScript Example\",\n \"status\": \"completed\",\n \"testScript\": {\n \"reference\": \"TestScript/testscript-example\"\n },\n \"result\": \"pass\",\n \"score\": 100.0,\n \"tester\": \"HL7 Execution Engine\",\n \"issued\": \"2016-10-07T08:25:34-05:00\",\n \"participant\": [\n {\n \"type\": \"test-engine\",\n \"uri\": \"http://projectcrucible.org\",\n \"display\": \"Crucible\"\n },\n {\n \"type\": \"server\",\n \"uri\": \"http://fhir3.healthintersections.com.au/open\",\n \"display\": \"HealthIntersections STU3\"\n }\n ],\n \"setup\": {\n \"action\": [\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"DELETE Patient\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"HTTP 204\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n },\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"POST Patient/fixture-patient-create\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"HTTP 201\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n }\n ]\n },\n \"test\": [\n {\n \"id\": \"01-ReadPatient\",\n \"name\": \"Read Patient\",\n \"description\": \"Read a Patient and validate response.\",\n \"action\": [\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"GET Patient/fixture-patient-create\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"HTTP 200\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Last-Modified Present\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Response is Patient\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Response validates\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.family \\u0027Chalmers\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.given \\u0027Peter\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.family \\u0027Chalmers\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.family \\u0027Chalmers\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient expected values.\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n }\n ]\n }\n ],\n \"teardown\": {\n \"action\": [\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"DELETE Patient/fixture-patient-create.\",\n \"detail\": \"http://projectcrucible.org/permalink/3\"\n }\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/TestReport", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestReport" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TestReport_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/TestReport?testscript=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&issued=&participant=&result=&tester=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestReport" - ], - "query": [ - { - "key": "testscript", - "value": "", - "description": "The test script executed to produce this report" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "An external identifier for the test report" - }, - { - "key": "issued", - "value": "", - "description": "The test report generation date" - }, - { - "key": "participant", - "value": "", - "description": "The reference to a participant in the test execution" - }, - { - "key": "result", - "value": "", - "description": "The result disposition of the test execution" - }, - { - "key": "tester", - "value": "", - "description": "The name of the testing organization" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TestReportHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/TestReport/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestReport", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Test Script", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "TestScriptHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/TestScript/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestScript", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TestScriptHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/TestScript/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestScript", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "TestScriptById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/TestScript/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestScript", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TestScriptById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"TestScript\",\n \"id\": \"testscript-example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: testscript-example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/TestScript/testscript-example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.9876\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 1.0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: TestScript Example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 18/01/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: HL7\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: TestScript example resource with setup to delete if present and create a new instance of a Patient; and single test definition to read the created Patient with various asserts.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United States of America (the) \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027US\\u0027 \\u003d \\u0027United States of America\\u0027, given as \\u0027United States of America (the)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epurpose\\u003c/b\\u003e: Patient Conditional Create (Update), Read and Delete Operations\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecopyright\\u003c/b\\u003e: © HL7.org 2011+\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003emetadata\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eLinks\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/patient.html\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eDemographics and other administrative information about an individual or animal receiving care or other health-related services.\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eCapabilities\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRequired\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eValidated\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLink\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCapabilities\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003ctd\\u003ePatient Update, Read and Delete Operations\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/http.html#delete\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eCapabilityStatement/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003efixture\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautocreate\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautodelete\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e: \\u003ca\\u003ePeter Chalmers\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003efixture\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautocreate\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautodelete\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e: \\u003ca\\u003ePeter Chalmers (minimum)\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eprofile\\u003c/b\\u003e: \\u003ca\\u003eGenerated Summary: url: http://hl7.org/fhir/StructureDefinition/Patient; version: 4.0.1; name: Patient; ACTIVE; date: 01/11/2019 9:29:23 AM; publisher: Health Level Seven International (Patient Administration); description: Demographics and other administrative information about an individual or animal receiving care or other health-related services.; purpose: Tracking patient is the center of the healthcare process.; 4.0.1; RESOURCE; type: Patient; baseDefinition: http://hl7.org/fhir/StructureDefinition/DomainResource; SPECIALIZATION\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eVariables\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePath\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSourceId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003ecreateResourceId\\u003c/td\\u003e\\u003ctd\\u003ePatient/id\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003esetup\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResource\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLabel\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAccept\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncodeRequestUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eParams\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eDelete (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code delete \\u003d \\u0027Delete\\u0027, stated as \\u0027null\\u0027)\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eSetupDeletePatient\\u003c/td\\u003e\\u003ctd\\u003eExecute a delete operation to insure the patient does not exist on the server.\\u003c/td\\u003e\\u003ctd\\u003ejson\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003e/${createResourceId}\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDirection\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eOperator\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResponseCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned HTTP status is 200(OK) or 204(No Content).\\u003c/td\\u003e\\u003ctd\\u003eresponse\\u003c/td\\u003e\\u003ctd\\u003ein\\u003c/td\\u003e\\u003ctd\\u003e200,204\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResource\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLabel\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAccept\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContentType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncodeRequestUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eParams\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSourceId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eUpdate (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code update \\u003d \\u0027Update\\u0027, stated as \\u0027null\\u0027)\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eSetupCreatePatient\\u003c/td\\u003e\\u003ctd\\u003eCreate patient resource on test server using the contents of fixture-patient-create\\u003c/td\\u003e\\u003ctd\\u003ejson\\u003c/td\\u003e\\u003ctd\\u003ejson\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003e/${createResourceId}\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDirection\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResponseCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned HTTP status is 201(Created).\\u003c/td\\u003e\\u003ctd\\u003eresponse\\u003c/td\\u003e\\u003ctd\\u003e201\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResource\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncodeRequestUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTargetId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eRead (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code read \\u003d \\u0027Read\\u0027, stated as \\u0027null\\u0027)\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eRead the created patient resource on the test server using the id from fixture-patient-create. Verify contents.\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDirection\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResponse\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned HTTP status is 200(OK).\\u003c/td\\u003e\\u003ctd\\u003eresponse\\u003c/td\\u003e\\u003ctd\\u003eokay\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCompareToSourceId\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCompareToSourceExpression\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eOperator\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient.\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003ctd\\u003ePatient.name.first().family\\u003c/td\\u003e\\u003ctd\\u003eequals\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003etest\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Read Patient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Read a Patient and validate response.\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eteardown\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/TestScript/testscript-example\",\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.9876\"\n },\n \"version\": \"1.0\",\n \"name\": \"TestScript Example\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2017-01-18\",\n \"publisher\": \"HL7\",\n \"contact\": [\n {\n \"name\": \"Support\",\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"support@HL7.org\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"description\": \"TestScript example resource with setup to delete if present and create a new instance of a Patient; and single test definition to read the created Patient with various asserts.\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/variant-state\",\n \"code\": \"positive\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\",\n \"display\": \"United States of America (the)\"\n }\n ]\n }\n ],\n \"purpose\": \"Patient Conditional Create (Update), Read and Delete Operations\",\n \"copyright\": \"© HL7.org 2011+\",\n \"metadata\": {\n \"link\": [\n {\n \"url\": \"http://hl7.org/fhir/patient.html\",\n \"description\": \"Demographics and other administrative information about an individual or animal receiving care or other health-related services.\"\n }\n ],\n \"capability\": [\n {\n \"required\": true,\n \"validated\": false,\n \"description\": \"Patient Update, Read and Delete Operations\",\n \"link\": [\n \"http://hl7.org/fhir/http.html#delete\",\n \"http://hl7.org/fhir/http.html#read\",\n \"http://hl7.org/fhir/http.html#update\"\n ],\n \"capabilities\": \"CapabilityStatement/example\"\n }\n ]\n },\n \"fixture\": [\n {\n \"id\": \"fixture-patient-create\",\n \"autocreate\": false,\n \"autodelete\": false,\n \"resource\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers\"\n }\n },\n {\n \"id\": \"fixture-patient-minimum\",\n \"autocreate\": false,\n \"autodelete\": false,\n \"resource\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers (minimum)\"\n }\n }\n ],\n \"profile\": [\n {\n \"id\": \"patient-profile\",\n \"reference\": \"http://hl7.org/fhir/StructureDefinition/Patient\"\n }\n ],\n \"variable\": [\n {\n \"name\": \"createResourceId\",\n \"path\": \"Patient/id\",\n \"sourceId\": \"fixture-patient-create\"\n }\n ],\n \"setup\": {\n \"action\": [\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"delete\"\n },\n \"resource\": \"Patient\",\n \"label\": \"SetupDeletePatient\",\n \"description\": \"Execute a delete operation to insure the patient does not exist on the server.\",\n \"accept\": \"json\",\n \"encodeRequestUrl\": true,\n \"params\": \"/${createResourceId}\"\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP status is 200(OK) or 204(No Content).\",\n \"direction\": \"response\",\n \"operator\": \"in\",\n \"responseCode\": \"200,204\",\n \"warningOnly\": false\n }\n },\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"update\"\n },\n \"resource\": \"Patient\",\n \"label\": \"SetupCreatePatient\",\n \"description\": \"Create patient resource on test server using the contents of fixture-patient-create\",\n \"accept\": \"json\",\n \"contentType\": \"json\",\n \"encodeRequestUrl\": true,\n \"params\": \"/${createResourceId}\",\n \"sourceId\": \"fixture-patient-create\"\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP status is 201(Created).\",\n \"direction\": \"response\",\n \"responseCode\": \"201\",\n \"warningOnly\": false\n }\n },\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"read\"\n },\n \"resource\": \"Patient\",\n \"description\": \"Read the created patient resource on the test server using the id from fixture-patient-create. Verify contents.\",\n \"encodeRequestUrl\": true,\n \"targetId\": \"fixture-patient-create\"\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP status is 200(OK).\",\n \"direction\": \"response\",\n \"response\": \"okay\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient.\",\n \"compareToSourceId\": \"fixture-patient-create\",\n \"compareToSourceExpression\": \"Patient.name.first().family\",\n \"operator\": \"equals\",\n \"warningOnly\": false\n }\n }\n ]\n },\n \"test\": [\n {\n \"id\": \"01-ReadPatient\",\n \"name\": \"Read Patient\",\n \"description\": \"Read a Patient and validate response.\",\n \"action\": [\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"read\"\n },\n \"resource\": \"Patient\",\n \"description\": \"Read the patient resource on the test server using the id from fixture-patient-create. Prevent URL encoding of the request.\",\n \"encodeRequestUrl\": false,\n \"responseId\": \"fixture-patient-read\",\n \"targetId\": \"fixture-patient-create\"\n }\n },\n {\n \"assert\": {\n \"label\": \"01-ReadPatientOK\",\n \"description\": \"Confirm that the returned HTTP status is 200(OK).\",\n \"direction\": \"response\",\n \"response\": \"okay\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP Header Last-Modified is present. Warning only as the server might not support versioning.\",\n \"direction\": \"response\",\n \"headerField\": \"Last-Modified\",\n \"operator\": \"notEmpty\",\n \"warningOnly\": true\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned resource type is Patient.\",\n \"resource\": \"Patient\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient conforms to the base FHIR specification.\",\n \"validateProfileId\": \"patient-profile\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit sourceId reference to read responseId fixture.\",\n \"operator\": \"equals\",\n \"path\": \"fhir:Patient/fhir:name/fhir:family/@value\",\n \"sourceId\": \"fixture-patient-read\",\n \"value\": \"Chalmers\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected given name \\u0027Peter\\u0027. Uses explicit sourceId reference to read responseId fixture.\",\n \"operator\": \"equals\",\n \"path\": \"fhir:Patient/fhir:name/fhir:given/@value\",\n \"sourceId\": \"fixture-patient-read\",\n \"value\": \"Peter\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient and implicit reference to read response payload.\",\n \"compareToSourceId\": \"fixture-patient-create\",\n \"compareToSourcePath\": \"fhir:Patient/fhir:name/fhir:family/@value\",\n \"operator\": \"equals\",\n \"path\": \"fhir:Patient/fhir:name/fhir:family/@value\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient and explicit reference to read response payload and default operator of \\u0027equals\\u0027.\",\n \"compareToSourceId\": \"fixture-patient-create\",\n \"compareToSourcePath\": \"fhir:Patient/fhir:name/fhir:given/@value\",\n \"path\": \"fhir:Patient/fhir:name/fhir:given/@value\",\n \"sourceId\": \"fixture-patient-read\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned resource contains the expected retained elements and values. Warning only to provide users with reviewable results.\",\n \"minimumId\": \"fixture-patient-minimum\",\n \"warningOnly\": true\n }\n }\n ]\n }\n ],\n \"teardown\": {\n \"action\": [\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"delete\"\n },\n \"resource\": \"Patient\",\n \"description\": \"Delete the patient resource on the test server using the id from fixture-patient-create.\",\n \"encodeRequestUrl\": true,\n \"targetId\": \"fixture-patient-create\"\n }\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/TestScript/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestScript", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TestScriptById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/TestScript/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestScript", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "TestScript_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"TestScript\",\n \"id\": \"testscript-example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: testscript-example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/TestScript/testscript-example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.9876\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 1.0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: TestScript Example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 18/01/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: HL7\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: TestScript example resource with setup to delete if present and create a new instance of a Patient; and single test definition to read the created Patient with various asserts.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United States of America (the) \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027US\\u0027 \\u003d \\u0027United States of America\\u0027, given as \\u0027United States of America (the)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epurpose\\u003c/b\\u003e: Patient Conditional Create (Update), Read and Delete Operations\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecopyright\\u003c/b\\u003e: © HL7.org 2011+\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003emetadata\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eLinks\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/patient.html\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eDemographics and other administrative information about an individual or animal receiving care or other health-related services.\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eCapabilities\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRequired\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eValidated\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLink\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCapabilities\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003ctd\\u003ePatient Update, Read and Delete Operations\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/http.html#delete\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eCapabilityStatement/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003efixture\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautocreate\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautodelete\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e: \\u003ca\\u003ePeter Chalmers\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003efixture\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautocreate\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautodelete\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e: \\u003ca\\u003ePeter Chalmers (minimum)\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eprofile\\u003c/b\\u003e: \\u003ca\\u003eGenerated Summary: url: http://hl7.org/fhir/StructureDefinition/Patient; version: 4.0.1; name: Patient; ACTIVE; date: 01/11/2019 9:29:23 AM; publisher: Health Level Seven International (Patient Administration); description: Demographics and other administrative information about an individual or animal receiving care or other health-related services.; purpose: Tracking patient is the center of the healthcare process.; 4.0.1; RESOURCE; type: Patient; baseDefinition: http://hl7.org/fhir/StructureDefinition/DomainResource; SPECIALIZATION\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eVariables\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePath\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSourceId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003ecreateResourceId\\u003c/td\\u003e\\u003ctd\\u003ePatient/id\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003esetup\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResource\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLabel\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAccept\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncodeRequestUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eParams\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eDelete (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code delete \\u003d \\u0027Delete\\u0027, stated as \\u0027null\\u0027)\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eSetupDeletePatient\\u003c/td\\u003e\\u003ctd\\u003eExecute a delete operation to insure the patient does not exist on the server.\\u003c/td\\u003e\\u003ctd\\u003ejson\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003e/${createResourceId}\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDirection\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eOperator\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResponseCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned HTTP status is 200(OK) or 204(No Content).\\u003c/td\\u003e\\u003ctd\\u003eresponse\\u003c/td\\u003e\\u003ctd\\u003ein\\u003c/td\\u003e\\u003ctd\\u003e200,204\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResource\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLabel\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAccept\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContentType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncodeRequestUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eParams\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSourceId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eUpdate (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code update \\u003d \\u0027Update\\u0027, stated as \\u0027null\\u0027)\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eSetupCreatePatient\\u003c/td\\u003e\\u003ctd\\u003eCreate patient resource on test server using the contents of fixture-patient-create\\u003c/td\\u003e\\u003ctd\\u003ejson\\u003c/td\\u003e\\u003ctd\\u003ejson\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003e/${createResourceId}\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDirection\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResponseCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned HTTP status is 201(Created).\\u003c/td\\u003e\\u003ctd\\u003eresponse\\u003c/td\\u003e\\u003ctd\\u003e201\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResource\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncodeRequestUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTargetId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eRead (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code read \\u003d \\u0027Read\\u0027, stated as \\u0027null\\u0027)\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eRead the created patient resource on the test server using the id from fixture-patient-create. Verify contents.\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDirection\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResponse\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned HTTP status is 200(OK).\\u003c/td\\u003e\\u003ctd\\u003eresponse\\u003c/td\\u003e\\u003ctd\\u003eokay\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCompareToSourceId\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCompareToSourceExpression\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eOperator\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient.\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003ctd\\u003ePatient.name.first().family\\u003c/td\\u003e\\u003ctd\\u003eequals\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003etest\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Read Patient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Read a Patient and validate response.\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eteardown\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/TestScript/testscript-example\",\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.9876\"\n },\n \"version\": \"1.0\",\n \"name\": \"TestScript Example\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2017-01-18\",\n \"publisher\": \"HL7\",\n \"contact\": [\n {\n \"name\": \"Support\",\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"support@HL7.org\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"description\": \"TestScript example resource with setup to delete if present and create a new instance of a Patient; and single test definition to read the created Patient with various asserts.\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/variant-state\",\n \"code\": \"positive\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\",\n \"display\": \"United States of America (the)\"\n }\n ]\n }\n ],\n \"purpose\": \"Patient Conditional Create (Update), Read and Delete Operations\",\n \"copyright\": \"© HL7.org 2011+\",\n \"metadata\": {\n \"link\": [\n {\n \"url\": \"http://hl7.org/fhir/patient.html\",\n \"description\": \"Demographics and other administrative information about an individual or animal receiving care or other health-related services.\"\n }\n ],\n \"capability\": [\n {\n \"required\": true,\n \"validated\": false,\n \"description\": \"Patient Update, Read and Delete Operations\",\n \"link\": [\n \"http://hl7.org/fhir/http.html#delete\",\n \"http://hl7.org/fhir/http.html#read\",\n \"http://hl7.org/fhir/http.html#update\"\n ],\n \"capabilities\": \"CapabilityStatement/example\"\n }\n ]\n },\n \"fixture\": [\n {\n \"id\": \"fixture-patient-create\",\n \"autocreate\": false,\n \"autodelete\": false,\n \"resource\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers\"\n }\n },\n {\n \"id\": \"fixture-patient-minimum\",\n \"autocreate\": false,\n \"autodelete\": false,\n \"resource\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers (minimum)\"\n }\n }\n ],\n \"profile\": [\n {\n \"id\": \"patient-profile\",\n \"reference\": \"http://hl7.org/fhir/StructureDefinition/Patient\"\n }\n ],\n \"variable\": [\n {\n \"name\": \"createResourceId\",\n \"path\": \"Patient/id\",\n \"sourceId\": \"fixture-patient-create\"\n }\n ],\n \"setup\": {\n \"action\": [\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"delete\"\n },\n \"resource\": \"Patient\",\n \"label\": \"SetupDeletePatient\",\n \"description\": \"Execute a delete operation to insure the patient does not exist on the server.\",\n \"accept\": \"json\",\n \"encodeRequestUrl\": true,\n \"params\": \"/${createResourceId}\"\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP status is 200(OK) or 204(No Content).\",\n \"direction\": \"response\",\n \"operator\": \"in\",\n \"responseCode\": \"200,204\",\n \"warningOnly\": false\n }\n },\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"update\"\n },\n \"resource\": \"Patient\",\n \"label\": \"SetupCreatePatient\",\n \"description\": \"Create patient resource on test server using the contents of fixture-patient-create\",\n \"accept\": \"json\",\n \"contentType\": \"json\",\n \"encodeRequestUrl\": true,\n \"params\": \"/${createResourceId}\",\n \"sourceId\": \"fixture-patient-create\"\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP status is 201(Created).\",\n \"direction\": \"response\",\n \"responseCode\": \"201\",\n \"warningOnly\": false\n }\n },\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"read\"\n },\n \"resource\": \"Patient\",\n \"description\": \"Read the created patient resource on the test server using the id from fixture-patient-create. Verify contents.\",\n \"encodeRequestUrl\": true,\n \"targetId\": \"fixture-patient-create\"\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP status is 200(OK).\",\n \"direction\": \"response\",\n \"response\": \"okay\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient.\",\n \"compareToSourceId\": \"fixture-patient-create\",\n \"compareToSourceExpression\": \"Patient.name.first().family\",\n \"operator\": \"equals\",\n \"warningOnly\": false\n }\n }\n ]\n },\n \"test\": [\n {\n \"id\": \"01-ReadPatient\",\n \"name\": \"Read Patient\",\n \"description\": \"Read a Patient and validate response.\",\n \"action\": [\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"read\"\n },\n \"resource\": \"Patient\",\n \"description\": \"Read the patient resource on the test server using the id from fixture-patient-create. Prevent URL encoding of the request.\",\n \"encodeRequestUrl\": false,\n \"responseId\": \"fixture-patient-read\",\n \"targetId\": \"fixture-patient-create\"\n }\n },\n {\n \"assert\": {\n \"label\": \"01-ReadPatientOK\",\n \"description\": \"Confirm that the returned HTTP status is 200(OK).\",\n \"direction\": \"response\",\n \"response\": \"okay\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP Header Last-Modified is present. Warning only as the server might not support versioning.\",\n \"direction\": \"response\",\n \"headerField\": \"Last-Modified\",\n \"operator\": \"notEmpty\",\n \"warningOnly\": true\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned resource type is Patient.\",\n \"resource\": \"Patient\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient conforms to the base FHIR specification.\",\n \"validateProfileId\": \"patient-profile\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit sourceId reference to read responseId fixture.\",\n \"operator\": \"equals\",\n \"path\": \"fhir:Patient/fhir:name/fhir:family/@value\",\n \"sourceId\": \"fixture-patient-read\",\n \"value\": \"Chalmers\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected given name \\u0027Peter\\u0027. Uses explicit sourceId reference to read responseId fixture.\",\n \"operator\": \"equals\",\n \"path\": \"fhir:Patient/fhir:name/fhir:given/@value\",\n \"sourceId\": \"fixture-patient-read\",\n \"value\": \"Peter\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient and implicit reference to read response payload.\",\n \"compareToSourceId\": \"fixture-patient-create\",\n \"compareToSourcePath\": \"fhir:Patient/fhir:name/fhir:family/@value\",\n \"operator\": \"equals\",\n \"path\": \"fhir:Patient/fhir:name/fhir:family/@value\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient and explicit reference to read response payload and default operator of \\u0027equals\\u0027.\",\n \"compareToSourceId\": \"fixture-patient-create\",\n \"compareToSourcePath\": \"fhir:Patient/fhir:name/fhir:given/@value\",\n \"path\": \"fhir:Patient/fhir:name/fhir:given/@value\",\n \"sourceId\": \"fixture-patient-read\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned resource contains the expected retained elements and values. Warning only to provide users with reviewable results.\",\n \"minimumId\": \"fixture-patient-minimum\",\n \"warningOnly\": true\n }\n }\n ]\n }\n ],\n \"teardown\": {\n \"action\": [\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"delete\"\n },\n \"resource\": \"Patient\",\n \"description\": \"Delete the patient resource on the test server using the id from fixture-patient-create.\",\n \"encodeRequestUrl\": true,\n \"targetId\": \"fixture-patient-create\"\n }\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/TestScript", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestScript" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TestScript_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/TestScript?_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&identifier=&jurisdiction=&name=&publisher=&status=&testscript-capability=&title=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestScript" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "The test script publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the test script" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the test script" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the test script" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the test script" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the test script" - }, - { - "key": "status", - "value": "", - "description": "The current status of the test script" - }, - { - "key": "testscript-capability", - "value": "", - "description": "TestScript required and validated capability" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the test script" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the test script" - }, - { - "key": "version", - "value": "", - "description": "The business version of the test script" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "TestScriptHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/TestScript/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "TestScript", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Value Set", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "ValueSetHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ValueSet/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ValueSet", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ValueSetHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ValueSet/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ValueSet", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ValueSetById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ValueSet/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ValueSet", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ValueSetById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ValueSet\",\n \"id\": \"example-extensional\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/shareablevalueset\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eValue set \\u0026quot;LOINC Codes for Cholesterol\\u0026quot;: This is an example value set that includes \\n all the codes for serum cholesterol from LOINC v2.36.\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eDeveloped by: FHIR project team (example)\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003ePublished for testing on 13-June 2012\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eThis value set includes the following LOINC codes:\\u003c/p\\u003e\\n\\t\\t\\t\\u003cul\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e14647-2: Cholesterol [Moles/Volume]\\u003c/li\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e2093-3: Cholesterol [Mass/Volume]\\u003c/li\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e35200-5: Cholesterol [Mass Or Moles/Volume] \\u003c/li\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e9342-7: Cholesterol [Percentile]\\u003c/li\\u003e\\n\\t\\t\\t\\u003c/ul\\u003e\\n\\t\\t\\t\\u003cp\\u003eThis content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use.\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/ValueSet/example-extensional\",\n \"identifier\": [\n {\n \"system\": \"http://acme.com/identifiers/valuesets\",\n \"value\": \"loinc-cholesterol-int\"\n }\n ],\n \"version\": \"20150622\",\n \"name\": \"LOINC Codes for Cholesterol in Serum/Plasma\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2015-06-22\",\n \"publisher\": \"HL7 International\",\n \"contact\": [\n {\n \"name\": \"FHIR project team\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"This is an example value set that includes all the LOINC codes for serum/plasma cholesterol from v2.36.\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueQuantity\": {\n \"value\": 18,\n \"comparator\": \"\\u003e\",\n \"unit\": \"yrs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"This value set was published by ACME Inc in order to make clear which codes are used for Cholesterol by AcmeClinicals (Adult Ambulatory care support in USA)\",\n \"copyright\": \"This content from LOINC ® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use.\",\n \"compose\": {\n \"lockedDate\": \"2012-06-13\",\n \"inactive\": true,\n \"include\": [\n {\n \"system\": \"http://loinc.org\",\n \"version\": \"2.36\",\n \"concept\": [\n {\n \"code\": \"14647-2\",\n \"display\": \"Cholesterol [Moles/Volume]\"\n },\n {\n \"code\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/Volume]\"\n },\n {\n \"code\": \"35200-5\",\n \"display\": \"Cholesterol [Mass Or Moles/Volume]\"\n },\n {\n \"code\": \"9342-7\",\n \"display\": \"Cholesterol [Percentile]\"\n }\n ]\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ValueSet/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ValueSet", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ValueSetById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ValueSet/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ValueSet", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "ValueSet_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"ValueSet\",\n \"id\": \"example-extensional\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/shareablevalueset\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eValue set \\u0026quot;LOINC Codes for Cholesterol\\u0026quot;: This is an example value set that includes \\n all the codes for serum cholesterol from LOINC v2.36.\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eDeveloped by: FHIR project team (example)\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003ePublished for testing on 13-June 2012\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eThis value set includes the following LOINC codes:\\u003c/p\\u003e\\n\\t\\t\\t\\u003cul\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e14647-2: Cholesterol [Moles/Volume]\\u003c/li\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e2093-3: Cholesterol [Mass/Volume]\\u003c/li\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e35200-5: Cholesterol [Mass Or Moles/Volume] \\u003c/li\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e9342-7: Cholesterol [Percentile]\\u003c/li\\u003e\\n\\t\\t\\t\\u003c/ul\\u003e\\n\\t\\t\\t\\u003cp\\u003eThis content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use.\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/ValueSet/example-extensional\",\n \"identifier\": [\n {\n \"system\": \"http://acme.com/identifiers/valuesets\",\n \"value\": \"loinc-cholesterol-int\"\n }\n ],\n \"version\": \"20150622\",\n \"name\": \"LOINC Codes for Cholesterol in Serum/Plasma\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2015-06-22\",\n \"publisher\": \"HL7 International\",\n \"contact\": [\n {\n \"name\": \"FHIR project team\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"This is an example value set that includes all the LOINC codes for serum/plasma cholesterol from v2.36.\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueQuantity\": {\n \"value\": 18,\n \"comparator\": \"\\u003e\",\n \"unit\": \"yrs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"This value set was published by ACME Inc in order to make clear which codes are used for Cholesterol by AcmeClinicals (Adult Ambulatory care support in USA)\",\n \"copyright\": \"This content from LOINC ® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use.\",\n \"compose\": {\n \"lockedDate\": \"2012-06-13\",\n \"inactive\": true,\n \"include\": [\n {\n \"system\": \"http://loinc.org\",\n \"version\": \"2.36\",\n \"concept\": [\n {\n \"code\": \"14647-2\",\n \"display\": \"Cholesterol [Moles/Volume]\"\n },\n {\n \"code\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/Volume]\"\n },\n {\n \"code\": \"35200-5\",\n \"display\": \"Cholesterol [Mass Or Moles/Volume]\"\n },\n {\n \"code\": \"9342-7\",\n \"display\": \"Cholesterol [Percentile]\"\n }\n ]\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/ValueSet", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ValueSet" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ValueSet_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ValueSet?_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&expansion=&identifier=&jurisdiction=&name=&publisher=&reference=&status=&title=&url=&version=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ValueSet" - ], - "query": [ - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "date", - "value": "", - "description": "The value set publication date" - }, - { - "key": "description", - "value": "", - "description": "The description of the value set" - }, - { - "key": "expansion", - "value": "", - "description": "Uniquely identifies this expansion" - }, - { - "key": "identifier", - "value": "", - "description": "External identifier for the value set" - }, - { - "key": "jurisdiction", - "value": "", - "description": "Intended jurisdiction for the value set" - }, - { - "key": "name", - "value": "", - "description": "Computationally friendly name of the value set" - }, - { - "key": "publisher", - "value": "", - "description": "Name of the publisher of the value set" - }, - { - "key": "reference", - "value": "", - "description": "A code system included or excluded in the value set or an imported value set" - }, - { - "key": "status", - "value": "", - "description": "The current status of the value set" - }, - { - "key": "title", - "value": "", - "description": "The human-friendly name of the value set" - }, - { - "key": "url", - "value": "", - "description": "The uri that identifies the value set" - }, - { - "key": "version", - "value": "", - "description": "The business version of the value set" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "ValueSetHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/ValueSet/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "ValueSet", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "Vision Prescription", - "item": [ - { - "name": "{id}", - "item": [ - { - "name": " history", - "item": [ - { - "name": "VisionPrescriptionHistoryById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/VisionPrescription/:id/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "VisionPrescription", - ":id", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "VisionPrescriptionHistoryByIdAndVid_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/VisionPrescription/:id/_history/:vid", - "host": [ - "{{API_URL}}" - ], - "path": [ - "VisionPrescription", - ":id", - "_history", - ":vid" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - }, - { - "key": "vid", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "VisionPrescriptionById_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/VisionPrescription/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "VisionPrescription", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "VisionPrescriptionById_PUT", - "request": { - "method": "PUT", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"VisionPrescription\",\n \"id\": \"33123\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eOD -2.00 SPH +2.00 add 0.5 p.d. BD\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eOS -1.00 -0.50 x 180 +2.00 add 0.5 p.d. BU\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.happysight.com/prescription\",\n \"value\": \"15013\"\n }\n ],\n \"status\": \"active\",\n \"created\": \"2014-06-15\",\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"dateWritten\": \"2014-06-15\",\n \"prescriber\": {\n \"reference\": \"Practitioner/example\"\n },\n \"lensSpecification\": [\n {\n \"product\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct\",\n \"code\": \"lens\"\n }\n ]\n },\n \"eye\": \"right\",\n \"sphere\": -2.00,\n \"prism\": [\n {\n \"amount\": 0.5,\n \"base\": \"down\"\n }\n ],\n \"add\": 2.00\n },\n {\n \"product\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct\",\n \"code\": \"lens\"\n }\n ]\n },\n \"eye\": \"left\",\n \"sphere\": -1.00,\n \"cylinder\": -0.50,\n \"axis\": 180,\n \"prism\": [\n {\n \"amount\": 0.5,\n \"base\": \"up\"\n }\n ],\n \"add\": 2.00\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/VisionPrescription/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "VisionPrescription", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "VisionPrescriptionById_DELETE", - "request": { - "method": "DELETE", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/VisionPrescription/:id", - "host": [ - "{{API_URL}}" - ], - "path": [ - "VisionPrescription", - ":id" - ], - "variable": [ - { - "key": "id", - "value": "", - "type": "string", - "description": "(Required) " - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - }, - { - "name": "VisionPrescription_POST", - "request": { - "method": "POST", - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "body": { - "mode": "raw", - "raw": "{\n \"resourceType\": \"VisionPrescription\",\n \"id\": \"33123\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eOD -2.00 SPH +2.00 add 0.5 p.d. BD\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eOS -1.00 -0.50 x 180 +2.00 add 0.5 p.d. BU\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.happysight.com/prescription\",\n \"value\": \"15013\"\n }\n ],\n \"status\": \"active\",\n \"created\": \"2014-06-15\",\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"dateWritten\": \"2014-06-15\",\n \"prescriber\": {\n \"reference\": \"Practitioner/example\"\n },\n \"lensSpecification\": [\n {\n \"product\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct\",\n \"code\": \"lens\"\n }\n ]\n },\n \"eye\": \"right\",\n \"sphere\": -2.00,\n \"prism\": [\n {\n \"amount\": 0.5,\n \"base\": \"down\"\n }\n ],\n \"add\": 2.00\n },\n {\n \"product\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct\",\n \"code\": \"lens\"\n }\n ]\n },\n \"eye\": \"left\",\n \"sphere\": -1.00,\n \"cylinder\": -0.50,\n \"axis\": 180,\n \"prism\": [\n {\n \"amount\": 0.5,\n \"base\": \"up\"\n }\n ],\n \"add\": 2.00\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" - }, - "url": { - "raw": "{{API_URL}}/VisionPrescription", - "host": [ - "{{API_URL}}" - ], - "path": [ - "VisionPrescription" - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "VisionPrescription_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/VisionPrescription?patient=&encounter=&prescriber=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&datewritten=&_format=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "VisionPrescription" - ], - "query": [ - { - "key": "patient", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" - }, - { - "key": "encounter", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" - }, - { - "key": "prescriber", - "value": "", - "description": "Who authorizes the vision product" - }, - { - "key": "_id", - "value": "", - "description": "Logical id of this artifact" - }, - { - "key": "_lastUpdated", - "value": "", - "description": "When the resource version last changed" - }, - { - "key": "_profile", - "value": "", - "description": "Profiles this resource claims to conform to" - }, - { - "key": "_security", - "value": "", - "description": "Security Labels applied to this resource" - }, - { - "key": "_tag", - "value": "", - "description": "Tags applied to this resource" - }, - { - "key": "identifier", - "value": "", - "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" - }, - { - "key": "datewritten", - "value": "", - "description": "Return prescriptions written on this date" - }, - { - "key": "_format", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - }, - { - "name": "VisionPrescriptionHistory_GET", - "request": { - "method": "GET", - "header": [ - { - "key": "x-api-key", - "value": "{{API_KEY}}", - "type": "text" - } - ], - "url": { - "raw": "{{API_URL}}/VisionPrescription/_history?_count=&_since=", - "host": [ - "{{API_URL}}" - ], - "path": [ - "VisionPrescription", - "_history" - ], - "query": [ - { - "key": "_count", - "value": "" - }, - { - "key": "_since", - "value": "" - } - ] - }, - "auth": { - "type": "oauth2", - "oauth2": [ - { - "key": "state", - "value": "abc", - "type": "string" - }, - { - "key": "scope", - "value": "profile openid", - "type": "string" - }, - { - "key": "clientId", - "value": "{{CLIENT_ID}}", - "type": "string" - }, - { - "key": "authUrl", - "value": "{{AUTH_URL}}", - "type": "string" - }, - { - "key": "redirect_uri", - "value": "http://localhost", - "type": "string" - }, - { - "key": "grant_type", - "value": "implicit", - "type": "string" - }, - { - "key": "accessToken", - "value": "", - "type": "string" - }, - { - "key": "tokenType", - "value": "Bearer", - "type": "string" - }, - { - "key": "addTokenTo", - "value": "header", - "type": "string" - } - ] - } - } - } - ] - } - ] -} \ No newline at end of file + "info": { + "_postman_id": "e44b896c-7f31-410c-858f-0be75eb3d526", + "name": "FHIR Examples", + "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" + }, + "item": [ + { + "name": "Bundle", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "POST", + "header": [ + { + "key": "x-api-key", + "type": "text", + "value": "{{API_KEY}}" + }, + { + "key": "Content-Type", + "type": "text", + "value": "application/json" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:8cafa46d-08b4-4ee4-b51b-803e20ae8126\",\n \"resource\": {\n \"resourceType\": \"Patient\",\n \"name\": [\n {\n \"family\": \"Jameson\",\n \"given\": [\n \"Matt\"\n ]\n }\n ],\n \"gender\": \"male\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Patient\"\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"Patient\",\n \"name\": [\n {\n \"family\": \"Smith\",\n \"given\": [\n \"John\"\n ]\n }\n ],\n \"gender\": \"male\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Patient\"\n }\n }\n ]\n}\n", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{API_URL}}", + "host": [ + "{{API_URL}}" + ] + } + }, + "response": [] + }, + { + "name": "GET Metadata", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Content-Type", + "name": "Content-Type", + "type": "text", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/metadata", + "host": [ + "{{API_URL}}" + ], + "path": [ + "metadata" + ] + } + }, + "response": [] + }, + { + "name": "Account", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "AccountHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Account/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Account", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AccountHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Account/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Account", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "AccountById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Account/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Account", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AccountById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Account\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eHACC Funded Billing for Peter James Chalmers\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:oid:0.1.2.3.4.5.6.7\",\n \"value\": \"654321\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"PBILLACCT\",\n \"display\": \"patient billing account\"\n }\n ],\n \"text\": \"patient\"\n },\n \"name\": \"HACC Funded Billing for Peter James Chalmers\",\n \"subject\": [\n {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n ],\n \"servicePeriod\": {\n \"start\": \"2016-01-01\",\n \"end\": \"2016-06-30\"\n },\n \"coverage\": [\n {\n \"coverage\": {\n \"reference\": \"Coverage/7546D\"\n },\n \"priority\": 1\n }\n ],\n \"owner\": {\n \"reference\": \"Organization/hl7\"\n },\n \"description\": \"Hospital charges\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Account/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Account", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AccountById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Account/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Account", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Account_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Account\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eHACC Funded Billing for Peter James Chalmers\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:oid:0.1.2.3.4.5.6.7\",\n \"value\": \"654321\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"PBILLACCT\",\n \"display\": \"patient billing account\"\n }\n ],\n \"text\": \"patient\"\n },\n \"name\": \"HACC Funded Billing for Peter James Chalmers\",\n \"subject\": [\n {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n ],\n \"servicePeriod\": {\n \"start\": \"2016-01-01\",\n \"end\": \"2016-06-30\"\n },\n \"coverage\": [\n {\n \"coverage\": {\n \"reference\": \"Coverage/7546D\"\n },\n \"priority\": 1\n }\n ],\n \"owner\": {\n \"reference\": \"Organization/hl7\"\n },\n \"description\": \"Hospital charges\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Account", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Account" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Account_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Account?owner=&patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&balance=&identifier=&name=&period=&status=&type=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Account" + ], + "query": [ + { + "key": "owner", + "value": "", + "description": "Who is responsible?" + }, + { + "key": "patient", + "value": "", + "description": "What is account tied to?" + }, + { + "key": "subject", + "value": "", + "description": "What is account tied to?" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "balance", + "value": "", + "description": "How much is in account?" + }, + { + "key": "identifier", + "value": "", + "description": "Account number" + }, + { + "key": "name", + "value": "", + "description": "Human-readable label" + }, + { + "key": "period", + "value": "", + "description": "Transaction window" + }, + { + "key": "status", + "value": "", + "description": "active | inactive | entered-in-error" + }, + { + "key": "type", + "value": "", + "description": "E.g. patient, expense, depreciation" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AccountHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Account/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Account", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Activity Definition", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ActivityDefinitionHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ActivityDefinition/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ActivityDefinition", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ActivityDefinitionHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ActivityDefinition/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ActivityDefinition", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ActivityDefinitionById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ActivityDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ActivityDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ActivityDefinitionById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ActivityDefinition\",\n \"id\": \"referralPrimaryCareMentalHealth\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eActivityDefinition/referralPrimaryCareMentalHealth\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003edraft\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDescription: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003erefer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eCategory: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003ereferral\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eCode: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eReferral to service (procedure)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e306206005\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eParticipant: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003epractitioner\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://motivemi.com/artifacts/ActivityDefinition/referralPrimaryCareMentalHealth\",\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://motivemi.com/artifacts\",\n \"value\": \"referralPrimaryCareMentalHealth\"\n }\n ],\n \"version\": \"1.1.0\",\n \"name\": \"ReferralPrimaryCareMentalHealth\",\n \"title\": \"Referral to Primary Care Mental Health\",\n \"status\": \"active\",\n \"experimental\": true,\n \"date\": \"2017-03-03T14:06:00Z\",\n \"publisher\": \"Motive Medical Intelligence\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"description\": \"refer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"https://meshb.nlm.nih.gov\",\n \"code\": \"D000328\",\n \"display\": \"Adult\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"87512008\",\n \"display\": \"Mild major depression\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40379007\",\n \"display\": \"Major depression, recurrent, mild\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"225444004\",\n \"display\": \"At risk for suicide (finding)\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"306206005\",\n \"display\": \"Referral to service (procedure)\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"user\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"309343006\",\n \"display\": \"Physician\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"venue\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"440655000\",\n \"display\": \"Outpatient environment\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"Defines a referral to a mental-health integrated care program for use in suicide risk order sets. The definition is independent of the order set in which it appears to allow reuse of the general definition of the referrral.\",\n \"usage\": \"This activity definition is used as the definition of a referral request within various suicide risk order sets. Elements that apply universally are defined here, while elements that apply to the specific setting of a referral within a particular order set are defined in the order set.\",\n \"copyright\": \"© Copyright 2016 Motive Medical Intelligence. All rights reserved.\",\n \"approvalDate\": \"2017-03-01\",\n \"lastReviewDate\": \"2017-03-01\",\n \"effectivePeriod\": {\n \"start\": \"2017-03-01\",\n \"end\": \"2017-12-31\"\n },\n \"topic\": [\n {\n \"text\": \"Mental Health Referral\"\n }\n ],\n \"author\": [\n {\n \"name\": \"Motive Medical Intelligence\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"citation\",\n \"display\": \"Practice Guideline for the Treatment of Patients with Major Depressive Disorder\",\n \"url\": \"http://psychiatryonline.org/pb/assets/raw/sitewide/practice_guidelines/guidelines/mdd.pdf\"\n },\n {\n \"type\": \"predecessor\",\n \"resource\": \"ActivityDefinition/referralPrimaryCareMentalHealth-initial\"\n }\n ],\n \"kind\": \"ServiceRequest\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"306206005\"\n }\n ],\n \"text\": \"Referral to service (procedure)\"\n },\n \"timingTiming\": {\n \"_event\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/cqf-expression\",\n \"valueExpression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Now()\"\n }\n }\n ]\n }\n ]\n },\n \"participant\": [\n {\n \"type\": \"practitioner\"\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/ActivityDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ActivityDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ActivityDefinitionById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ActivityDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ActivityDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ActivityDefinition_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ActivityDefinition\",\n \"id\": \"referralPrimaryCareMentalHealth\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eActivityDefinition/referralPrimaryCareMentalHealth\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003edraft\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDescription: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003erefer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eCategory: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003ereferral\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eCode: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eReferral to service (procedure)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e306206005\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eParticipant: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003epractitioner\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://motivemi.com/artifacts/ActivityDefinition/referralPrimaryCareMentalHealth\",\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://motivemi.com/artifacts\",\n \"value\": \"referralPrimaryCareMentalHealth\"\n }\n ],\n \"version\": \"1.1.0\",\n \"name\": \"ReferralPrimaryCareMentalHealth\",\n \"title\": \"Referral to Primary Care Mental Health\",\n \"status\": \"active\",\n \"experimental\": true,\n \"date\": \"2017-03-03T14:06:00Z\",\n \"publisher\": \"Motive Medical Intelligence\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"description\": \"refer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"https://meshb.nlm.nih.gov\",\n \"code\": \"D000328\",\n \"display\": \"Adult\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"87512008\",\n \"display\": \"Mild major depression\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40379007\",\n \"display\": \"Major depression, recurrent, mild\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"225444004\",\n \"display\": \"At risk for suicide (finding)\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"306206005\",\n \"display\": \"Referral to service (procedure)\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"user\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"309343006\",\n \"display\": \"Physician\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"venue\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"440655000\",\n \"display\": \"Outpatient environment\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"Defines a referral to a mental-health integrated care program for use in suicide risk order sets. The definition is independent of the order set in which it appears to allow reuse of the general definition of the referrral.\",\n \"usage\": \"This activity definition is used as the definition of a referral request within various suicide risk order sets. Elements that apply universally are defined here, while elements that apply to the specific setting of a referral within a particular order set are defined in the order set.\",\n \"copyright\": \"© Copyright 2016 Motive Medical Intelligence. All rights reserved.\",\n \"approvalDate\": \"2017-03-01\",\n \"lastReviewDate\": \"2017-03-01\",\n \"effectivePeriod\": {\n \"start\": \"2017-03-01\",\n \"end\": \"2017-12-31\"\n },\n \"topic\": [\n {\n \"text\": \"Mental Health Referral\"\n }\n ],\n \"author\": [\n {\n \"name\": \"Motive Medical Intelligence\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"citation\",\n \"display\": \"Practice Guideline for the Treatment of Patients with Major Depressive Disorder\",\n \"url\": \"http://psychiatryonline.org/pb/assets/raw/sitewide/practice_guidelines/guidelines/mdd.pdf\"\n },\n {\n \"type\": \"predecessor\",\n \"resource\": \"ActivityDefinition/referralPrimaryCareMentalHealth-initial\"\n }\n ],\n \"kind\": \"ServiceRequest\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"306206005\"\n }\n ],\n \"text\": \"Referral to service (procedure)\"\n },\n \"timingTiming\": {\n \"_event\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/cqf-expression\",\n \"valueExpression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Now()\"\n }\n }\n ]\n }\n ]\n },\n \"participant\": [\n {\n \"type\": \"practitioner\"\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/ActivityDefinition", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ActivityDefinition" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ActivityDefinition_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ActivityDefinition?composed-of=&depends-on=&derived-from=&predecessor=&successor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&effective=&identifier=&jurisdiction=&name=&publisher=&status=&title=&topic=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ActivityDefinition" + ], + "query": [ + { + "key": "composed-of", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "depends-on", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "derived-from", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "predecessor", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "successor", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "The activity definition publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the activity definition" + }, + { + "key": "effective", + "value": "", + "description": "The time during which the activity definition is intended to be in use" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the activity definition" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the activity definition" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the activity definition" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the activity definition" + }, + { + "key": "status", + "value": "", + "description": "The current status of the activity definition" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the activity definition" + }, + { + "key": "topic", + "value": "", + "description": "Topics associated with the module" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the activity definition" + }, + { + "key": "version", + "value": "", + "description": "The business version of the activity definition" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ActivityDefinitionHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ActivityDefinition/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ActivityDefinition", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Adverse Event", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "AdverseEventHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AdverseEvent/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AdverseEvent", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AdverseEventHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AdverseEvent/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AdverseEvent", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "AdverseEventById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AdverseEvent/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AdverseEvent", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AdverseEventById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"AdverseEvent\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 49476534\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eactuality\\u003c/b\\u003e: actual\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Product Use Error \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/adverse-event-category code \\u0027product-use-error\\u0027 \\u003d \\u0027Product Use Error\\u0027, given as \\u0027Product Use Error\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eevent\\u003c/b\\u003e: This was a mild rash on the left forearm \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027304386008\\u0027 \\u003d \\u0027O/E - itchy rash\\u0027, given as \\u0027O/E - itchy rash\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 29/01/2017 12:34:56 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseriousness\\u003c/b\\u003e: Non-serious \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/adverse-event-seriousness code \\u0027Non-serious\\u0027 \\u003d \\u0027Non-serious\\u0027, given as \\u0027Non-serious\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseverity\\u003c/b\\u003e: Mild \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/adverse-event-severity code \\u0027mild\\u0027 \\u003d \\u0027Mild\\u0027, given as \\u0027Mild\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erecorder\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eSuspectEntities\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eInstance\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eMedication/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": {\n \"system\": \"http://acme.com/ids/patients/risks\",\n \"value\": \"49476534\"\n },\n \"actuality\": \"actual\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adverse-event-category\",\n \"code\": \"product-use-error\",\n \"display\": \"Product Use Error\"\n }\n ]\n }\n ],\n \"event\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"304386008\",\n \"display\": \"O/E - itchy rash\"\n }\n ],\n \"text\": \"This was a mild rash on the left forearm\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"date\": \"2017-01-29T12:34:56+00:00\",\n \"seriousness\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adverse-event-seriousness\",\n \"code\": \"Non-serious\",\n \"display\": \"Non-serious\"\n }\n ]\n },\n \"severity\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adverse-event-severity\",\n \"code\": \"mild\",\n \"display\": \"Mild\"\n }\n ]\n },\n \"recorder\": {\n \"reference\": \"Practitioner/example\"\n },\n \"suspectEntity\": [\n {\n \"instance\": {\n \"reference\": \"Medication/example\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/AdverseEvent/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AdverseEvent", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AdverseEventById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AdverseEvent/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AdverseEvent", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "AdverseEvent_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"AdverseEvent\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 49476534\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eactuality\\u003c/b\\u003e: actual\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Product Use Error \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/adverse-event-category code \\u0027product-use-error\\u0027 \\u003d \\u0027Product Use Error\\u0027, given as \\u0027Product Use Error\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eevent\\u003c/b\\u003e: This was a mild rash on the left forearm \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027304386008\\u0027 \\u003d \\u0027O/E - itchy rash\\u0027, given as \\u0027O/E - itchy rash\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 29/01/2017 12:34:56 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseriousness\\u003c/b\\u003e: Non-serious \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/adverse-event-seriousness code \\u0027Non-serious\\u0027 \\u003d \\u0027Non-serious\\u0027, given as \\u0027Non-serious\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseverity\\u003c/b\\u003e: Mild \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/adverse-event-severity code \\u0027mild\\u0027 \\u003d \\u0027Mild\\u0027, given as \\u0027Mild\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erecorder\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eSuspectEntities\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eInstance\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eMedication/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": {\n \"system\": \"http://acme.com/ids/patients/risks\",\n \"value\": \"49476534\"\n },\n \"actuality\": \"actual\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adverse-event-category\",\n \"code\": \"product-use-error\",\n \"display\": \"Product Use Error\"\n }\n ]\n }\n ],\n \"event\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"304386008\",\n \"display\": \"O/E - itchy rash\"\n }\n ],\n \"text\": \"This was a mild rash on the left forearm\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"date\": \"2017-01-29T12:34:56+00:00\",\n \"seriousness\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adverse-event-seriousness\",\n \"code\": \"Non-serious\",\n \"display\": \"Non-serious\"\n }\n ]\n },\n \"severity\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adverse-event-severity\",\n \"code\": \"mild\",\n \"display\": \"Mild\"\n }\n ]\n },\n \"recorder\": {\n \"reference\": \"Practitioner/example\"\n },\n \"suspectEntity\": [\n {\n \"instance\": {\n \"reference\": \"Medication/example\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/AdverseEvent", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AdverseEvent" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AdverseEvent_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AdverseEvent?location=&reaction=&recorder=&study=&subject=&substance=&_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&date=&seriousness=&type=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AdverseEvent" + ], + "query": [ + { + "key": "location", + "value": "", + "description": "Location where adverse event occurred" + }, + { + "key": "reaction", + "value": "", + "description": "Adverse Reaction Events linked to exposure to substance" + }, + { + "key": "recorder", + "value": "", + "description": "Who recorded the adverse event" + }, + { + "key": "study", + "value": "", + "description": "AdverseEvent.study" + }, + { + "key": "subject", + "value": "", + "description": "Subject or group impacted by event" + }, + { + "key": "substance", + "value": "", + "description": "Refers to the specific entity that caused the adverse event" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "category", + "value": "", + "description": "AE | PAE \rAn adverse event is an event that caused harm to a patient, an adverse reaction is a something that is a subject-specific event that is a result of an exposure to a medication, food, device or environmental substance, a potential adverse event is something that occurred and that could have caused harm to a patient but did not" + }, + { + "key": "date", + "value": "", + "description": "When the event occurred" + }, + { + "key": "seriousness", + "value": "", + "description": "Mild | Moderate | Severe" + }, + { + "key": "type", + "value": "", + "description": "actual | potential" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AdverseEventHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AdverseEvent/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AdverseEvent", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Allergy Intolerance", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "AllergyIntoleranceHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AllergyIntolerance/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AllergyIntolerance", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AllergyIntoleranceHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AllergyIntolerance/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AllergyIntolerance", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "AllergyIntoleranceById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AllergyIntolerance/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AllergyIntolerance", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AllergyIntoleranceById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 49476534\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eclinicalStatus\\u003c/b\\u003e: Active \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical code \\u0027active\\u0027 \\u003d \\u0027Active\\u0027, given as \\u0027Active\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003everificationStatus\\u003c/b\\u003e: Confirmed \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/allergyintolerance-verification code \\u0027confirmed\\u0027 \\u003d \\u0027Confirmed\\u0027, given as \\u0027Confirmed\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: allergy\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: food\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecriticality\\u003c/b\\u003e: high\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Cashew nuts \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027227493005\\u0027 \\u003d \\u0027Cashew nuts\\u0027, given as \\u0027Cashew nuts\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epatient\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eonset\\u003c/b\\u003e: 01/01/2004\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erecordedDate\\u003c/b\\u003e: 09/10/2014 2:58:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erecorder\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003easserter\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elastOccurrence\\u003c/b\\u003e: 01/06/2012\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: The criticality is high becasue of the observed anaphylactic reaction when challenged with cashew extract.\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003ereaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubstance\\u003c/b\\u003e: cashew nut allergenic extract Injectable Product \\u003cspan\\u003e(Details : {RxNorm code \\u00271160593\\u0027 \\u003d \\u0027cashew nut allergenic extract Injectable Product\\u0027, given as \\u0027cashew nut allergenic extract Injectable Product\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emanifestation\\u003c/b\\u003e: Anaphylactic reaction \\u003cspan\\u003e(Details : {SNOMED CT code \\u002739579001\\u0027 \\u003d \\u0027Anaphylaxis\\u0027, given as \\u0027Anaphylactic reaction\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Challenge Protocol. Severe reaction to subcutaneous cashew extract. Epinephrine administered\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eonset\\u003c/b\\u003e: 12/06/2012\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseverity\\u003c/b\\u003e: severe\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexposureRoute\\u003c/b\\u003e: Subcutaneous route \\u003cspan\\u003e(Details : {SNOMED CT code \\u002734206005\\u0027 \\u003d \\u0027Subcutaneous route\\u0027, given as \\u0027Subcutaneous route\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003ereaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emanifestation\\u003c/b\\u003e: Urticaria \\u003cspan\\u003e(Details : {SNOMED CT code \\u002764305001\\u0027 \\u003d \\u0027Urticaria\\u0027, given as \\u0027Urticaria\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eonset\\u003c/b\\u003e: 01/01/2004\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseverity\\u003c/b\\u003e: moderate\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: The patient reports that the onset of urticaria was within 15 minutes of eating cashews.\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://acme.com/ids/patients/risks\",\n \"value\": \"49476534\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"type\": \"allergy\",\n \"category\": [\n \"food\"\n ],\n \"criticality\": \"high\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"227493005\",\n \"display\": \"Cashew nuts\"\n }\n ]\n },\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"onsetDateTime\": \"2004\",\n \"recordedDate\": \"2014-10-09T14:58:00+11:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/example\"\n },\n \"asserter\": {\n \"reference\": \"Patient/example\"\n },\n \"lastOccurrence\": \"2012-06\",\n \"note\": [\n {\n \"text\": \"The criticality is high becasue of the observed anaphylactic reaction when challenged with cashew extract.\"\n }\n ],\n \"reaction\": [\n {\n \"substance\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"1160593\",\n \"display\": \"cashew nut allergenic extract Injectable Product\"\n }\n ]\n },\n \"manifestation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"39579001\",\n \"display\": \"Anaphylactic reaction\"\n }\n ]\n }\n ],\n \"description\": \"Challenge Protocol. Severe reaction to subcutaneous cashew extract. Epinephrine administered\",\n \"onset\": \"2012-06-12\",\n \"severity\": \"severe\",\n \"exposureRoute\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"34206005\",\n \"display\": \"Subcutaneous route\"\n }\n ]\n }\n },\n {\n \"manifestation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"64305001\",\n \"display\": \"Urticaria\"\n }\n ]\n }\n ],\n \"onset\": \"2004\",\n \"severity\": \"moderate\",\n \"note\": [\n {\n \"text\": \"The patient reports that the onset of urticaria was within 15 minutes of eating cashews.\"\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/AllergyIntolerance/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AllergyIntolerance", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AllergyIntoleranceById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AllergyIntolerance/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AllergyIntolerance", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "AllergyIntolerance_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 49476534\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eclinicalStatus\\u003c/b\\u003e: Active \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical code \\u0027active\\u0027 \\u003d \\u0027Active\\u0027, given as \\u0027Active\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003everificationStatus\\u003c/b\\u003e: Confirmed \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/allergyintolerance-verification code \\u0027confirmed\\u0027 \\u003d \\u0027Confirmed\\u0027, given as \\u0027Confirmed\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: allergy\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: food\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecriticality\\u003c/b\\u003e: high\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Cashew nuts \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027227493005\\u0027 \\u003d \\u0027Cashew nuts\\u0027, given as \\u0027Cashew nuts\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epatient\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eonset\\u003c/b\\u003e: 01/01/2004\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erecordedDate\\u003c/b\\u003e: 09/10/2014 2:58:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erecorder\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003easserter\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elastOccurrence\\u003c/b\\u003e: 01/06/2012\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: The criticality is high becasue of the observed anaphylactic reaction when challenged with cashew extract.\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003ereaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubstance\\u003c/b\\u003e: cashew nut allergenic extract Injectable Product \\u003cspan\\u003e(Details : {RxNorm code \\u00271160593\\u0027 \\u003d \\u0027cashew nut allergenic extract Injectable Product\\u0027, given as \\u0027cashew nut allergenic extract Injectable Product\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emanifestation\\u003c/b\\u003e: Anaphylactic reaction \\u003cspan\\u003e(Details : {SNOMED CT code \\u002739579001\\u0027 \\u003d \\u0027Anaphylaxis\\u0027, given as \\u0027Anaphylactic reaction\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Challenge Protocol. Severe reaction to subcutaneous cashew extract. Epinephrine administered\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eonset\\u003c/b\\u003e: 12/06/2012\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseverity\\u003c/b\\u003e: severe\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexposureRoute\\u003c/b\\u003e: Subcutaneous route \\u003cspan\\u003e(Details : {SNOMED CT code \\u002734206005\\u0027 \\u003d \\u0027Subcutaneous route\\u0027, given as \\u0027Subcutaneous route\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003ereaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emanifestation\\u003c/b\\u003e: Urticaria \\u003cspan\\u003e(Details : {SNOMED CT code \\u002764305001\\u0027 \\u003d \\u0027Urticaria\\u0027, given as \\u0027Urticaria\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eonset\\u003c/b\\u003e: 01/01/2004\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eseverity\\u003c/b\\u003e: moderate\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: The patient reports that the onset of urticaria was within 15 minutes of eating cashews.\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://acme.com/ids/patients/risks\",\n \"value\": \"49476534\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"type\": \"allergy\",\n \"category\": [\n \"food\"\n ],\n \"criticality\": \"high\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"227493005\",\n \"display\": \"Cashew nuts\"\n }\n ]\n },\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"onsetDateTime\": \"2004\",\n \"recordedDate\": \"2014-10-09T14:58:00+11:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/example\"\n },\n \"asserter\": {\n \"reference\": \"Patient/example\"\n },\n \"lastOccurrence\": \"2012-06\",\n \"note\": [\n {\n \"text\": \"The criticality is high becasue of the observed anaphylactic reaction when challenged with cashew extract.\"\n }\n ],\n \"reaction\": [\n {\n \"substance\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"1160593\",\n \"display\": \"cashew nut allergenic extract Injectable Product\"\n }\n ]\n },\n \"manifestation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"39579001\",\n \"display\": \"Anaphylactic reaction\"\n }\n ]\n }\n ],\n \"description\": \"Challenge Protocol. Severe reaction to subcutaneous cashew extract. Epinephrine administered\",\n \"onset\": \"2012-06-12\",\n \"severity\": \"severe\",\n \"exposureRoute\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"34206005\",\n \"display\": \"Subcutaneous route\"\n }\n ]\n }\n },\n {\n \"manifestation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"64305001\",\n \"display\": \"Urticaria\"\n }\n ]\n }\n ],\n \"onset\": \"2004\",\n \"severity\": \"moderate\",\n \"note\": [\n {\n \"text\": \"The patient reports that the onset of urticaria was within 15 minutes of eating cashews.\"\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/AllergyIntolerance", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AllergyIntolerance" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AllergyIntolerance_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AllergyIntolerance?asserter=&patient=&recorder=&_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&clinical-status=&code=&criticality=&date=&identifier=&last-date=&manifestation=&onset=&route=&severity=&type=&verification-status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AllergyIntolerance" + ], + "query": [ + { + "key": "asserter", + "value": "", + "description": "Source of the information about the allergy" + }, + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "recorder", + "value": "", + "description": "Who recorded the sensitivity" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "category", + "value": "", + "description": "food | medication | environment | biologic" + }, + { + "key": "clinical-status", + "value": "", + "description": "active | inactive | resolved" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" + }, + { + "key": "criticality", + "value": "", + "description": "low | high | unable-to-assess" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "last-date", + "value": "", + "description": "Date(/time) of last known occurrence of a reaction" + }, + { + "key": "manifestation", + "value": "", + "description": "Clinical symptoms/signs associated with the Event" + }, + { + "key": "onset", + "value": "", + "description": "Date(/time) when manifestations showed" + }, + { + "key": "route", + "value": "", + "description": "How the subject was exposed to the substance" + }, + { + "key": "severity", + "value": "", + "description": "mild | moderate | severe (of event as a whole)" + }, + { + "key": "type", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" + }, + { + "key": "verification-status", + "value": "", + "description": "unconfirmed | confirmed | refuted | entered-in-error" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AllergyIntoleranceHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AllergyIntolerance/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AllergyIntolerance", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Appointment", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "AppointmentHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Appointment/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Appointment", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AppointmentHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Appointment/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Appointment", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "AppointmentById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Appointment/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Appointment", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AppointmentById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Appointment\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eBrian MRI results discussion\\u003c/div\\u003e\"\n },\n \"status\": \"booked\",\n \"serviceCategory\": [\n {\n \"coding\": [\n {\n \"system\": \"http://example.org/service-category\",\n \"code\": \"gp\",\n \"display\": \"General Practice\"\n }\n ]\n }\n ],\n \"serviceType\": [\n {\n \"coding\": [\n {\n \"code\": \"52\",\n \"display\": \"General Discussion\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394814009\",\n \"display\": \"General practice\"\n }\n ]\n }\n ],\n \"appointmentType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0276\",\n \"code\": \"FOLLOWUP\",\n \"display\": \"A follow up visit from a previous appointment\"\n }\n ]\n },\n \"reasonReference\": [\n {\n \"reference\": \"Condition/example\",\n \"display\": \"Severe burn of left ear\"\n }\n ],\n \"priority\": 5,\n \"description\": \"Discussion on the results of your recent MRI\",\n \"start\": \"2013-12-10T09:00:00Z\",\n \"end\": \"2013-12-10T11:00:00Z\",\n \"created\": \"2013-10-10\",\n \"comment\": \"Further expand on the results of the MRI and determine the next actions that may be appropriate.\",\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/myringotomy\"\n }\n ],\n \"participant\": [\n {\n \"actor\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"required\": \"required\",\n \"status\": \"accepted\"\n },\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\"\n }\n ]\n }\n ],\n \"actor\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"required\": \"required\",\n \"status\": \"accepted\"\n },\n {\n \"actor\": {\n \"reference\": \"Location/1\",\n \"display\": \"South Wing, second floor\"\n },\n \"required\": \"required\",\n \"status\": \"accepted\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Appointment/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Appointment", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AppointmentById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Appointment/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Appointment", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Appointment_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Appointment\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eBrian MRI results discussion\\u003c/div\\u003e\"\n },\n \"status\": \"booked\",\n \"serviceCategory\": [\n {\n \"coding\": [\n {\n \"system\": \"http://example.org/service-category\",\n \"code\": \"gp\",\n \"display\": \"General Practice\"\n }\n ]\n }\n ],\n \"serviceType\": [\n {\n \"coding\": [\n {\n \"code\": \"52\",\n \"display\": \"General Discussion\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394814009\",\n \"display\": \"General practice\"\n }\n ]\n }\n ],\n \"appointmentType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0276\",\n \"code\": \"FOLLOWUP\",\n \"display\": \"A follow up visit from a previous appointment\"\n }\n ]\n },\n \"reasonReference\": [\n {\n \"reference\": \"Condition/example\",\n \"display\": \"Severe burn of left ear\"\n }\n ],\n \"priority\": 5,\n \"description\": \"Discussion on the results of your recent MRI\",\n \"start\": \"2013-12-10T09:00:00Z\",\n \"end\": \"2013-12-10T11:00:00Z\",\n \"created\": \"2013-10-10\",\n \"comment\": \"Further expand on the results of the MRI and determine the next actions that may be appropriate.\",\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/myringotomy\"\n }\n ],\n \"participant\": [\n {\n \"actor\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"required\": \"required\",\n \"status\": \"accepted\"\n },\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\"\n }\n ]\n }\n ],\n \"actor\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"required\": \"required\",\n \"status\": \"accepted\"\n },\n {\n \"actor\": {\n \"reference\": \"Location/1\",\n \"display\": \"South Wing, second floor\"\n },\n \"required\": \"required\",\n \"status\": \"accepted\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Appointment", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Appointment" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Appointment_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Appointment?actor=&incomingreferral=&location=&patient=&practitioner=&_id=&_lastUpdated=&_profile=&_security=&_tag=&appointment-type=&date=&identifier=&part-status=&service-type=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Appointment" + ], + "query": [ + { + "key": "actor", + "value": "", + "description": "Any one of the individuals participating in the appointment" + }, + { + "key": "incomingreferral", + "value": "", + "description": "The ReferralRequest provided as information to allocate to the Encounter" + }, + { + "key": "location", + "value": "", + "description": "This location is listed in the participants of the appointment" + }, + { + "key": "patient", + "value": "", + "description": "One of the individuals of the appointment is this patient" + }, + { + "key": "practitioner", + "value": "", + "description": "One of the individuals of the appointment is this practitioner" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "appointment-type", + "value": "", + "description": "The style of appointment or patient that has been booked in the slot (not service type)" + }, + { + "key": "date", + "value": "", + "description": "Appointment date/time." + }, + { + "key": "identifier", + "value": "", + "description": "An Identifier of the Appointment" + }, + { + "key": "part-status", + "value": "", + "description": "The Participation status of the subject, or other participant on the appointment. Can be used to locate participants that have not responded to meeting requests." + }, + { + "key": "service-type", + "value": "", + "description": "The specific service that is to be performed during this appointment" + }, + { + "key": "status", + "value": "", + "description": "The overall status of the appointment" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AppointmentHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Appointment/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Appointment", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Appointment Response", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "AppointmentResponseHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AppointmentResponse/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AppointmentResponse", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AppointmentResponseHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AppointmentResponse/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AppointmentResponse", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "AppointmentResponseById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AppointmentResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AppointmentResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AppointmentResponseById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"AppointmentResponse\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eAccept Brian MRI results discussion\\u003c/div\\u003e\"\n },\n \"appointment\": {\n \"reference\": \"Appointment/example\",\n \"display\": \"Brian MRI results discussion\"\n },\n \"actor\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"participantStatus\": \"accepted\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/AppointmentResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AppointmentResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AppointmentResponseById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AppointmentResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AppointmentResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "AppointmentResponse_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"AppointmentResponse\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eAccept Brian MRI results discussion\\u003c/div\\u003e\"\n },\n \"appointment\": {\n \"reference\": \"Appointment/example\",\n \"display\": \"Brian MRI results discussion\"\n },\n \"actor\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"participantStatus\": \"accepted\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/AppointmentResponse", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AppointmentResponse" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AppointmentResponse_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AppointmentResponse?actor=&appointment=&location=&patient=&practitioner=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&part-status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AppointmentResponse" + ], + "query": [ + { + "key": "actor", + "value": "", + "description": "The Person, Location/HealthcareService or Device that this appointment response replies for" + }, + { + "key": "appointment", + "value": "", + "description": "The appointment that the response is attached to" + }, + { + "key": "location", + "value": "", + "description": "This Response is for this Location" + }, + { + "key": "patient", + "value": "", + "description": "This Response is for this Patient" + }, + { + "key": "practitioner", + "value": "", + "description": "This Response is for this Practitioner" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "An Identifier in this appointment response" + }, + { + "key": "part-status", + "value": "", + "description": "The participants acceptance status for this appointment" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AppointmentResponseHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AppointmentResponse/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AppointmentResponse", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Audit Event", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "AuditEventHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AuditEvent/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AuditEvent", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AuditEventHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AuditEvent/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AuditEvent", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "AuditEventById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AuditEvent/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AuditEvent", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AuditEventById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"AuditEvent\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eApplication Start for under service login \\u0026quot;Grahame\\u0026quot; (id: Grahame\\u0027s Test HL7Connect)\\u003c/div\\u003e\"\n },\n \"type\": {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110100\",\n \"display\": \"Application Activity\"\n },\n \"subtype\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110120\",\n \"display\": \"Application Start\"\n }\n ],\n \"action\": \"E\",\n \"recorded\": \"2012-10-25T22:04:27+11:00\",\n \"outcome\": \"0\",\n \"agent\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/extra-security-role-type\",\n \"code\": \"humanuser\",\n \"display\": \"human user\"\n }\n ]\n },\n \"role\": [\n {\n \"text\": \"Service User (Logon)\"\n }\n ],\n \"who\": {\n \"identifier\": {\n \"value\": \"Grahame\"\n }\n },\n \"requestor\": false,\n \"network\": {\n \"address\": \"127.0.0.1\",\n \"type\": \"2\"\n }\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110153\",\n \"display\": \"Source Role ID\"\n }\n ]\n },\n \"who\": {\n \"identifier\": {\n \"system\": \"urn:oid:2.16.840.1.113883.4.2\",\n \"value\": \"2.16.840.1.113883.4.2\"\n }\n },\n \"altId\": \"6580\",\n \"requestor\": false,\n \"network\": {\n \"address\": \"Workstation1.ehr.familyclinic.com\",\n \"type\": \"1\"\n }\n }\n ],\n \"source\": {\n \"site\": \"Development\",\n \"observer\": {\n \"display\": \"Grahame\\u0027s Laptop\"\n },\n \"type\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110122\",\n \"display\": \"Login\"\n }\n ]\n },\n \"entity\": [\n {\n \"what\": {\n \"identifier\": {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"SNO\"\n }\n ],\n \"text\": \"Dell Serial Number\"\n },\n \"value\": \"ABCDEF\"\n }\n },\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/audit-entity-type\",\n \"code\": \"4\",\n \"display\": \"Other\"\n },\n \"role\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/object-role\",\n \"code\": \"4\",\n \"display\": \"Domain Resource\"\n },\n \"lifecycle\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dicom-audit-lifecycle\",\n \"code\": \"6\",\n \"display\": \"Access / Use\"\n },\n \"name\": \"Grahame\\u0027s Laptop\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/AuditEvent/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AuditEvent", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AuditEventById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AuditEvent/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AuditEvent", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "AuditEvent_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"AuditEvent\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eApplication Start for under service login \\u0026quot;Grahame\\u0026quot; (id: Grahame\\u0027s Test HL7Connect)\\u003c/div\\u003e\"\n },\n \"type\": {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110100\",\n \"display\": \"Application Activity\"\n },\n \"subtype\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110120\",\n \"display\": \"Application Start\"\n }\n ],\n \"action\": \"E\",\n \"recorded\": \"2012-10-25T22:04:27+11:00\",\n \"outcome\": \"0\",\n \"agent\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/extra-security-role-type\",\n \"code\": \"humanuser\",\n \"display\": \"human user\"\n }\n ]\n },\n \"role\": [\n {\n \"text\": \"Service User (Logon)\"\n }\n ],\n \"who\": {\n \"identifier\": {\n \"value\": \"Grahame\"\n }\n },\n \"requestor\": false,\n \"network\": {\n \"address\": \"127.0.0.1\",\n \"type\": \"2\"\n }\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110153\",\n \"display\": \"Source Role ID\"\n }\n ]\n },\n \"who\": {\n \"identifier\": {\n \"system\": \"urn:oid:2.16.840.1.113883.4.2\",\n \"value\": \"2.16.840.1.113883.4.2\"\n }\n },\n \"altId\": \"6580\",\n \"requestor\": false,\n \"network\": {\n \"address\": \"Workstation1.ehr.familyclinic.com\",\n \"type\": \"1\"\n }\n }\n ],\n \"source\": {\n \"site\": \"Development\",\n \"observer\": {\n \"display\": \"Grahame\\u0027s Laptop\"\n },\n \"type\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"110122\",\n \"display\": \"Login\"\n }\n ]\n },\n \"entity\": [\n {\n \"what\": {\n \"identifier\": {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"SNO\"\n }\n ],\n \"text\": \"Dell Serial Number\"\n },\n \"value\": \"ABCDEF\"\n }\n },\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/audit-entity-type\",\n \"code\": \"4\",\n \"display\": \"Other\"\n },\n \"role\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/object-role\",\n \"code\": \"4\",\n \"display\": \"Domain Resource\"\n },\n \"lifecycle\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dicom-audit-lifecycle\",\n \"code\": \"6\",\n \"display\": \"Access / Use\"\n },\n \"name\": \"Grahame\\u0027s Laptop\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/AuditEvent", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AuditEvent" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AuditEvent_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AuditEvent?agent=&entity=&patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&action=&address=&agent-name=&agent-role=&altid=&date=&entity-id=&entity-name=&entity-role=&entity-type=&outcome=&policy=&site=&source=&subtype=&type=&user=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AuditEvent" + ], + "query": [ + { + "key": "agent", + "value": "", + "description": "Direct reference to resource" + }, + { + "key": "entity", + "value": "", + "description": "Specific instance of resource" + }, + { + "key": "patient", + "value": "", + "description": "Direct reference to resource" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "action", + "value": "", + "description": "Type of action performed during the event" + }, + { + "key": "address", + "value": "", + "description": "Identifier for the network access point of the user device" + }, + { + "key": "agent-name", + "value": "", + "description": "Human-meaningful name for the agent" + }, + { + "key": "agent-role", + "value": "", + "description": "Agent role in the event" + }, + { + "key": "altid", + "value": "", + "description": "Alternative User id e.g. authentication" + }, + { + "key": "date", + "value": "", + "description": "Time when the event occurred on source" + }, + { + "key": "entity-id", + "value": "", + "description": "Specific instance of object" + }, + { + "key": "entity-name", + "value": "", + "description": "Descriptor for entity" + }, + { + "key": "entity-role", + "value": "", + "description": "What role the entity played" + }, + { + "key": "entity-type", + "value": "", + "description": "Type of entity involved" + }, + { + "key": "outcome", + "value": "", + "description": "Whether the event succeeded or failed" + }, + { + "key": "policy", + "value": "", + "description": "Policy that authorized event" + }, + { + "key": "site", + "value": "", + "description": "Logical source location within the enterprise" + }, + { + "key": "source", + "value": "", + "description": "The identity of source detecting the event" + }, + { + "key": "subtype", + "value": "", + "description": "More specific type/id for the event" + }, + { + "key": "type", + "value": "", + "description": "Type/identifier of event" + }, + { + "key": "user", + "value": "", + "description": "Unique identifier for the user" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "AuditEventHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/AuditEvent/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "AuditEvent", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Basic", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "BasicHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Basic/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Basic", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "BasicHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Basic/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Basic", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "BasicById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Basic/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Basic", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "BasicById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Basic\",\n \"id\": \"referral\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e\\u003cb\\u003ePatient:\\u003c/b\\u003eRoel\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eRequestor:\\u003c/b\\u003eDokter Bronsig\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eType:\\u003c/b\\u003eConsultation\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eTarget Date:\\u003c/b\\u003eApril 1 - April 31\\u003c/p\\u003e\\n \\u003cp\\u003eCOMPLETED\\u003c/p\\u003e\\n \\u003cb\\u003eThe patient had fever peaks over the last couple of days. He is worried about these peaks.\\u003c/b\\u003e\\n \\u003c/div\\u003e\"\n },\n \"extension\": [\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#requestingPractitioner\",\n \"valueReference\": {\n \"reference\": \"Practitioner/f201\",\n \"display\": \"Dokter Bronsig\"\n }\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#notes\",\n \"valueString\": \"The patient had fever peaks over the last couple of days. He is worried about these peaks.\"\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#fulfillingEncounter\",\n \"valueReference\": {\n \"reference\": \"Encounter/f201\"\n }\n }\n ],\n \"modifierExtension\": [\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#referredForService\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"11429006\",\n \"display\": \"Consultation\"\n }\n ]\n }\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#targetDate\",\n \"valuePeriod\": {\n \"start\": \"2013-04-01\",\n \"end\": \"2013-04-15\"\n }\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#status\",\n \"valueCode\": \"complete\"\n }\n ],\n \"identifier\": [\n {\n \"system\": \"http://goodhealth.org/basic/identifiers\",\n \"value\": \"19283746\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/basic-resource-type\",\n \"code\": \"referral\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/f201\",\n \"display\": \"Roel\"\n },\n \"created\": \"2013-05-14\",\n \"author\": {\n \"reference\": \"Practitioner/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Basic/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Basic", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "BasicById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Basic/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Basic", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Basic_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Basic\",\n \"id\": \"referral\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e\\u003cb\\u003ePatient:\\u003c/b\\u003eRoel\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eRequestor:\\u003c/b\\u003eDokter Bronsig\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eType:\\u003c/b\\u003eConsultation\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eTarget Date:\\u003c/b\\u003eApril 1 - April 31\\u003c/p\\u003e\\n \\u003cp\\u003eCOMPLETED\\u003c/p\\u003e\\n \\u003cb\\u003eThe patient had fever peaks over the last couple of days. He is worried about these peaks.\\u003c/b\\u003e\\n \\u003c/div\\u003e\"\n },\n \"extension\": [\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#requestingPractitioner\",\n \"valueReference\": {\n \"reference\": \"Practitioner/f201\",\n \"display\": \"Dokter Bronsig\"\n }\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#notes\",\n \"valueString\": \"The patient had fever peaks over the last couple of days. He is worried about these peaks.\"\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#fulfillingEncounter\",\n \"valueReference\": {\n \"reference\": \"Encounter/f201\"\n }\n }\n ],\n \"modifierExtension\": [\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#referredForService\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"11429006\",\n \"display\": \"Consultation\"\n }\n ]\n }\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#targetDate\",\n \"valuePeriod\": {\n \"start\": \"2013-04-01\",\n \"end\": \"2013-04-15\"\n }\n },\n {\n \"url\": \"http://example.org/do-not-use/fhir-extensions/referral#status\",\n \"valueCode\": \"complete\"\n }\n ],\n \"identifier\": [\n {\n \"system\": \"http://goodhealth.org/basic/identifiers\",\n \"value\": \"19283746\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/basic-resource-type\",\n \"code\": \"referral\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/f201\",\n \"display\": \"Roel\"\n },\n \"created\": \"2013-05-14\",\n \"author\": {\n \"reference\": \"Practitioner/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Basic", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Basic" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Basic_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Basic?author=&patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&created=&identifier=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Basic" + ], + "query": [ + { + "key": "author", + "value": "", + "description": "Who created" + }, + { + "key": "patient", + "value": "", + "description": "Identifies the focus of this resource" + }, + { + "key": "subject", + "value": "", + "description": "Identifies the focus of this resource" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Kind of Resource" + }, + { + "key": "created", + "value": "", + "description": "When created" + }, + { + "key": "identifier", + "value": "", + "description": "Business identifier" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "BasicHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Basic/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Basic", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Binary", + "item": [ + { + "name": "POST Binary JPEG", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json", + "type": "text" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Binary\",\n \"contentType\": \"image/jpeg\"\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{API_URL}}/Binary", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Binary" + ], + "query": [ + { + "key": "data", + "value": "", + "disabled": true + } + ] + } + }, + "response": [] + }, + { + "name": "GET Binary", + "protocolProfileBehavior": { + "disableBodyPruning": true + }, + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Content-Type", + "name": "Content-Type", + "type": "text", + "value": "application/json" + }, + { + "key": "x-api-key", + "type": "text", + "value": "{{API_KEY}}" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{API_URL}}/Binary/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Binary", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "e599f8ed-fd5a-4abb-9fc0-430ce89d3f66" + } + ] + } + }, + "response": [] + }, + { + "name": "PUT Binary PDF", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json", + "type": "text" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Binary\",\n \"id\": \"e599f8ed-fd5a-4abb-9fc0-430ce89d3f66\",\n \"contentType\": \"application/pdf\"\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{API_URL}}/Binary/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Binary", + ":id" + ], + "query": [ + { + "key": "data", + "value": "", + "disabled": true + } + ], + "variable": [ + { + "key": "id", + "value": "e599f8ed-fd5a-4abb-9fc0-430ce89d3f66" + } + ] + } + }, + "response": [] + }, + { + "name": "DELETE Binary", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "DELETE", + "header": [ + { + "key": "Content-Type", + "name": "Content-Type", + "type": "text", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{API_URL}}/Binary/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Binary", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "e599f8ed-fd5a-4abb-9fc0-430ce89d3f66" + } + ] + } + }, + "response": [] + }, + { + "name": "GET Binary History Version", + "protocolProfileBehavior": { + "disableBodyPruning": true + }, + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Content-Type", + "name": "Content-Type", + "value": "application/json", + "type": "text" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{API_URL}}/Binary/:id/_history/:versionId", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Binary", + ":id", + "_history", + ":versionId" + ], + "variable": [ + { + "key": "id", + "value": "e599f8ed-fd5a-4abb-9fc0-430ce89d3f66" + }, + { + "key": "versionId", + "value": "1" + } + ] + } + }, + "response": [] + } + ], + "protocolProfileBehavior": {} + }, + { + "name": "Body Site", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "BodySiteHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/BodySite/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "BodySite", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "BodySiteHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/BodySite/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "BodySite", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "BodySiteById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/BodySite/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "BodySite", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "BodySiteById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"status\": \"\",\n \"div\": \"\"\n },\n \"patient\": {\n \"reference\": \"\"\n },\n \"identifier\": [\n {\n \"use\": \"\",\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ],\n \"text\": \"\"\n },\n \"modifier\": [\n {\n \"text\": \"\",\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"description\": \"\",\n \"image\": [\n {\n \"contentType\": \"\",\n \"data\": \"\",\n \"title\": \"\"\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/BodySite/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "BodySite", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "BodySiteById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/BodySite/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "BodySite", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "BodySite_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"status\": \"\",\n \"div\": \"\"\n },\n \"patient\": {\n \"reference\": \"\"\n },\n \"identifier\": [\n {\n \"use\": \"\",\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ],\n \"text\": \"\"\n },\n \"modifier\": [\n {\n \"text\": \"\",\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"description\": \"\",\n \"image\": [\n {\n \"contentType\": \"\",\n \"data\": \"\",\n \"title\": \"\"\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/BodySite", + "host": [ + "{{API_URL}}" + ], + "path": [ + "BodySite" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "BodySite_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/BodySite?patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "BodySite" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Patient to whom bodysite belongs" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Named anatomical location" + }, + { + "key": "identifier", + "value": "", + "description": "Identifier for this instance of the anatomical location" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "BodySiteHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/BodySite/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "BodySite", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Capability Statement", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "CapabilityStatementHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CapabilityStatement/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CapabilityStatement", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CapabilityStatementHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CapabilityStatement/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CapabilityStatement", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CapabilityStatementById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CapabilityStatement/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CapabilityStatement", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CapabilityStatementById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"CapabilityStatement\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eThe EHR Server supports the following transactions for the resource Person: read, vread, \\n update, history, search(name,gender), create and updates.\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eThe EHR System supports the following message: admin-notify::Person.\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eThe EHR Application has a \\n \\u003ca href\\u003d\\\"http://fhir.hl7.org/base/Profilebc054d23-75e1-4dc6-aca5-838b6b1ac81d/_history/b5fdd9fc-b021-4ea1-911a-721a60663796\\\"\\u003egeneral document profile\\u003c/a\\u003e.\\n \\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"url\": \"urn:uuid:68D043B5-9ECF-4559-A57A-396E0D452311\",\n \"version\": \"20130510\",\n \"name\": \"ACME-EHR\",\n \"title\": \"ACME EHR capability statement\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2012-01-04\",\n \"publisher\": \"ACME Corporation\",\n \"contact\": [\n {\n \"name\": \"System Administrator\",\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"wile@acme.org\"\n }\n ]\n }\n ],\n \"description\": \"This is the FHIR capability statement for the main EHR at ACME for the private interface - it does not describe the public interface\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/variant-state\",\n \"code\": \"positive\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\",\n \"display\": \"United States of America (the)\"\n }\n ]\n }\n ],\n \"purpose\": \"Main EHR capability statement, published for contracting and operational support\",\n \"copyright\": \"Copyright © Acme Healthcare and GoodCorp EHR Systems\",\n \"kind\": \"instance\",\n \"instantiates\": [\n \"http://ihe.org/fhir/CapabilityStatement/pixm-client\"\n ],\n \"software\": {\n \"name\": \"EHR\",\n \"version\": \"0.00.020.2134\",\n \"releaseDate\": \"2012-01-04\"\n },\n \"implementation\": {\n \"description\": \"main EHR at ACME\",\n \"url\": \"http://10.2.3.4/fhir\"\n },\n \"fhirVersion\": \"4.0.1\",\n \"format\": [\n \"xml\",\n \"json\"\n ],\n \"patchFormat\": [\n \"application/xml-patch+xml\",\n \"application/json-patch+json\"\n ],\n \"implementationGuide\": [\n \"http://hl7.org/fhir/us/lab\"\n ],\n \"rest\": [\n {\n \"mode\": \"server\",\n \"documentation\": \"Main FHIR endpoint for acem health\",\n \"security\": {\n \"cors\": true,\n \"service\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/restful-security-service\",\n \"code\": \"SMART-on-FHIR\"\n }\n ]\n }\n ],\n \"description\": \"See Smart on FHIR documentation\"\n },\n \"resource\": [\n {\n \"type\": \"Patient\",\n \"profile\": \"http://registry.fhir.org/r4/StructureDefinition/7896271d-57f6-4231-89dc-dcc91eab2416\",\n \"supportedProfile\": [\n \"http://registry.fhir.org/r4/StructureDefinition/00ab9e7a-06c7-4f77-9234-4154ca1e3347\"\n ],\n \"documentation\": \"This server does not let the clients create identities.\",\n \"interaction\": [\n {\n \"code\": \"read\"\n },\n {\n \"code\": \"vread\",\n \"documentation\": \"Only supported for patient records since 12-Dec 2012\"\n },\n {\n \"code\": \"update\"\n },\n {\n \"code\": \"history-instance\"\n },\n {\n \"code\": \"create\"\n },\n {\n \"code\": \"history-type\"\n }\n ],\n \"versioning\": \"versioned-update\",\n \"readHistory\": true,\n \"updateCreate\": false,\n \"conditionalCreate\": true,\n \"conditionalRead\": \"full-support\",\n \"conditionalUpdate\": false,\n \"conditionalDelete\": \"not-supported\",\n \"searchInclude\": [\n \"Organization\"\n ],\n \"searchRevInclude\": [\n \"Person\"\n ],\n \"searchParam\": [\n {\n \"name\": \"identifier\",\n \"definition\": \"http://hl7.org/fhir/SearchParameter/Patient-identifier\",\n \"type\": \"token\",\n \"documentation\": \"Only supports search by institution MRN\"\n },\n {\n \"name\": \"general-practitioner\",\n \"definition\": \"http://hl7.org/fhir/SearchParameter/Patient-general-practitioner\",\n \"type\": \"reference\"\n }\n ]\n }\n ],\n \"interaction\": [\n {\n \"code\": \"transaction\"\n },\n {\n \"code\": \"history-system\"\n }\n ],\n \"compartment\": [\n \"http://hl7.org/fhir/CompartmentDefinition/patient\"\n ]\n }\n ],\n \"messaging\": [\n {\n \"endpoint\": [\n {\n \"protocol\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/message-transport\",\n \"code\": \"mllp\"\n },\n \"address\": \"mllp:10.1.1.10:9234\"\n }\n ],\n \"reliableCache\": 30,\n \"documentation\": \"ADT A08 equivalent for external system notifications\",\n \"supportedMessage\": [\n {\n \"mode\": \"receiver\",\n \"definition\": \"MessageDefinition/example\"\n }\n ]\n }\n ],\n \"document\": [\n {\n \"mode\": \"consumer\",\n \"documentation\": \"Basic rules for all documents in the EHR system\",\n \"profile\": \"http://fhir.hl7.org/base/Profilebc054d23-75e1-4dc6-aca5-838b6b1ac81d/_history/b5fdd9fc-b021-4ea1-911a-721a60663796\"\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/CapabilityStatement/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CapabilityStatement", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CapabilityStatementById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CapabilityStatement/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CapabilityStatement", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CapabilityStatement_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"CapabilityStatement\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eThe EHR Server supports the following transactions for the resource Person: read, vread, \\n update, history, search(name,gender), create and updates.\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eThe EHR System supports the following message: admin-notify::Person.\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eThe EHR Application has a \\n \\u003ca href\\u003d\\\"http://fhir.hl7.org/base/Profilebc054d23-75e1-4dc6-aca5-838b6b1ac81d/_history/b5fdd9fc-b021-4ea1-911a-721a60663796\\\"\\u003egeneral document profile\\u003c/a\\u003e.\\n \\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"url\": \"urn:uuid:68D043B5-9ECF-4559-A57A-396E0D452311\",\n \"version\": \"20130510\",\n \"name\": \"ACME-EHR\",\n \"title\": \"ACME EHR capability statement\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2012-01-04\",\n \"publisher\": \"ACME Corporation\",\n \"contact\": [\n {\n \"name\": \"System Administrator\",\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"wile@acme.org\"\n }\n ]\n }\n ],\n \"description\": \"This is the FHIR capability statement for the main EHR at ACME for the private interface - it does not describe the public interface\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/variant-state\",\n \"code\": \"positive\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\",\n \"display\": \"United States of America (the)\"\n }\n ]\n }\n ],\n \"purpose\": \"Main EHR capability statement, published for contracting and operational support\",\n \"copyright\": \"Copyright © Acme Healthcare and GoodCorp EHR Systems\",\n \"kind\": \"instance\",\n \"instantiates\": [\n \"http://ihe.org/fhir/CapabilityStatement/pixm-client\"\n ],\n \"software\": {\n \"name\": \"EHR\",\n \"version\": \"0.00.020.2134\",\n \"releaseDate\": \"2012-01-04\"\n },\n \"implementation\": {\n \"description\": \"main EHR at ACME\",\n \"url\": \"http://10.2.3.4/fhir\"\n },\n \"fhirVersion\": \"4.0.1\",\n \"format\": [\n \"xml\",\n \"json\"\n ],\n \"patchFormat\": [\n \"application/xml-patch+xml\",\n \"application/json-patch+json\"\n ],\n \"implementationGuide\": [\n \"http://hl7.org/fhir/us/lab\"\n ],\n \"rest\": [\n {\n \"mode\": \"server\",\n \"documentation\": \"Main FHIR endpoint for acem health\",\n \"security\": {\n \"cors\": true,\n \"service\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/restful-security-service\",\n \"code\": \"SMART-on-FHIR\"\n }\n ]\n }\n ],\n \"description\": \"See Smart on FHIR documentation\"\n },\n \"resource\": [\n {\n \"type\": \"Patient\",\n \"profile\": \"http://registry.fhir.org/r4/StructureDefinition/7896271d-57f6-4231-89dc-dcc91eab2416\",\n \"supportedProfile\": [\n \"http://registry.fhir.org/r4/StructureDefinition/00ab9e7a-06c7-4f77-9234-4154ca1e3347\"\n ],\n \"documentation\": \"This server does not let the clients create identities.\",\n \"interaction\": [\n {\n \"code\": \"read\"\n },\n {\n \"code\": \"vread\",\n \"documentation\": \"Only supported for patient records since 12-Dec 2012\"\n },\n {\n \"code\": \"update\"\n },\n {\n \"code\": \"history-instance\"\n },\n {\n \"code\": \"create\"\n },\n {\n \"code\": \"history-type\"\n }\n ],\n \"versioning\": \"versioned-update\",\n \"readHistory\": true,\n \"updateCreate\": false,\n \"conditionalCreate\": true,\n \"conditionalRead\": \"full-support\",\n \"conditionalUpdate\": false,\n \"conditionalDelete\": \"not-supported\",\n \"searchInclude\": [\n \"Organization\"\n ],\n \"searchRevInclude\": [\n \"Person\"\n ],\n \"searchParam\": [\n {\n \"name\": \"identifier\",\n \"definition\": \"http://hl7.org/fhir/SearchParameter/Patient-identifier\",\n \"type\": \"token\",\n \"documentation\": \"Only supports search by institution MRN\"\n },\n {\n \"name\": \"general-practitioner\",\n \"definition\": \"http://hl7.org/fhir/SearchParameter/Patient-general-practitioner\",\n \"type\": \"reference\"\n }\n ]\n }\n ],\n \"interaction\": [\n {\n \"code\": \"transaction\"\n },\n {\n \"code\": \"history-system\"\n }\n ],\n \"compartment\": [\n \"http://hl7.org/fhir/CompartmentDefinition/patient\"\n ]\n }\n ],\n \"messaging\": [\n {\n \"endpoint\": [\n {\n \"protocol\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/message-transport\",\n \"code\": \"mllp\"\n },\n \"address\": \"mllp:10.1.1.10:9234\"\n }\n ],\n \"reliableCache\": 30,\n \"documentation\": \"ADT A08 equivalent for external system notifications\",\n \"supportedMessage\": [\n {\n \"mode\": \"receiver\",\n \"definition\": \"MessageDefinition/example\"\n }\n ]\n }\n ],\n \"document\": [\n {\n \"mode\": \"consumer\",\n \"documentation\": \"Basic rules for all documents in the EHR system\",\n \"profile\": \"http://fhir.hl7.org/base/Profilebc054d23-75e1-4dc6-aca5-838b6b1ac81d/_history/b5fdd9fc-b021-4ea1-911a-721a60663796\"\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/CapabilityStatement", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CapabilityStatement" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CapabilityStatement_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CapabilityStatement?resource-profile=&supported-profile=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&event=&fhirversion=&format=&guide=&jurisdiction=&mode=&name=&publisher=&resource=&security-service=&software=&status=&title=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CapabilityStatement" + ], + "query": [ + { + "key": "resource-profile", + "value": "", + "description": "A profile id invoked in a capability statement" + }, + { + "key": "supported-profile", + "value": "", + "description": "Profiles for use cases supported" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "The capability statement publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the capability statement" + }, + { + "key": "event", + "value": "", + "description": "Event code in a capability statement" + }, + { + "key": "fhirversion", + "value": "", + "description": "The version of FHIR" + }, + { + "key": "format", + "value": "", + "description": "formats supported (xml | json | ttl | mime type)" + }, + { + "key": "guide", + "value": "", + "description": "Implementation guides supported" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the capability statement" + }, + { + "key": "mode", + "value": "", + "description": "Mode - restful (server/client) or messaging (sender/receiver)" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the capability statement" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the capability statement" + }, + { + "key": "resource", + "value": "", + "description": "Name of a resource mentioned in a capability statement" + }, + { + "key": "security-service", + "value": "", + "description": "OAuth | SMART-on-FHIR | NTLM | Basic | Kerberos | Certificates" + }, + { + "key": "software", + "value": "", + "description": "Part of a the name of a software application" + }, + { + "key": "status", + "value": "", + "description": "The current status of the capability statement" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the capability statement" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the capability statement" + }, + { + "key": "version", + "value": "", + "description": "The business version of the capability statement" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CapabilityStatementHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CapabilityStatement/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CapabilityStatement", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Care Plan", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "CarePlanHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CarePlan/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CarePlan", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CarePlanHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CarePlan/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CarePlan", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CarePlanById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CarePlan/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CarePlan", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CarePlanById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"CarePlan\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e A simple care plan to indicate a patient taking their weight once a day because of obesity.\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Condition\",\n \"id\": \"p1\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n \"code\": \"confirmed\"\n }\n ]\n },\n \"code\": {\n \"text\": \"Obesity\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n }\n ],\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"instantiatesUri\": [\n \"http://example.org/protocol-for-obesity\"\n ],\n \"basedOn\": [\n {\n \"display\": \"Management of Type 2 Diabetes\"\n }\n ],\n \"replaces\": [\n {\n \"display\": \"Plan from urgent care clinic\"\n }\n ],\n \"partOf\": [\n {\n \"display\": \"Overall wellness plan\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"plan\",\n \"category\": [\n {\n \"text\": \"Weight management plan\"\n }\n ],\n \"description\": \"Manage obesity and weight loss\",\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/home\"\n },\n \"period\": {\n \"end\": \"2017-06-01\"\n },\n \"created\": \"2016-01-01\",\n \"author\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"careTeam\": [\n {\n \"reference\": \"CareTeam/example\"\n }\n ],\n \"addresses\": [\n {\n \"reference\": \"#p1\",\n \"display\": \"obesity\"\n }\n ],\n \"goal\": [\n {\n \"reference\": \"Goal/example\"\n }\n ],\n \"activity\": [\n {\n \"outcomeCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161832001\",\n \"display\": \"Progressive weight loss\"\n }\n ]\n }\n ],\n \"outcomeReference\": [\n {\n \"reference\": \"Observation/example\",\n \"display\": \"Weight Measured\"\n }\n ],\n \"detail\": {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"3141-9\",\n \"display\": \"Weight Measured\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"27113001\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"status\": \"completed\",\n \"statusReason\": {\n \"text\": \"Achieved weight loss to mitigate diabetes risk.\"\n },\n \"doNotPerform\": false,\n \"scheduledTiming\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"location\": {\n \"display\": \"Patient\\u0027s home\"\n },\n \"performer\": [\n {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/CarePlan/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CarePlan", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CarePlanById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CarePlan/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CarePlan", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CarePlan_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"CarePlan\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e A simple care plan to indicate a patient taking their weight once a day because of obesity.\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Condition\",\n \"id\": \"p1\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n \"code\": \"confirmed\"\n }\n ]\n },\n \"code\": {\n \"text\": \"Obesity\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n }\n ],\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"instantiatesUri\": [\n \"http://example.org/protocol-for-obesity\"\n ],\n \"basedOn\": [\n {\n \"display\": \"Management of Type 2 Diabetes\"\n }\n ],\n \"replaces\": [\n {\n \"display\": \"Plan from urgent care clinic\"\n }\n ],\n \"partOf\": [\n {\n \"display\": \"Overall wellness plan\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"plan\",\n \"category\": [\n {\n \"text\": \"Weight management plan\"\n }\n ],\n \"description\": \"Manage obesity and weight loss\",\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/home\"\n },\n \"period\": {\n \"end\": \"2017-06-01\"\n },\n \"created\": \"2016-01-01\",\n \"author\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"careTeam\": [\n {\n \"reference\": \"CareTeam/example\"\n }\n ],\n \"addresses\": [\n {\n \"reference\": \"#p1\",\n \"display\": \"obesity\"\n }\n ],\n \"goal\": [\n {\n \"reference\": \"Goal/example\"\n }\n ],\n \"activity\": [\n {\n \"outcomeCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161832001\",\n \"display\": \"Progressive weight loss\"\n }\n ]\n }\n ],\n \"outcomeReference\": [\n {\n \"reference\": \"Observation/example\",\n \"display\": \"Weight Measured\"\n }\n ],\n \"detail\": {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"3141-9\",\n \"display\": \"Weight Measured\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"27113001\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"status\": \"completed\",\n \"statusReason\": {\n \"text\": \"Achieved weight loss to mitigate diabetes risk.\"\n },\n \"doNotPerform\": false,\n \"scheduledTiming\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"location\": {\n \"display\": \"Patient\\u0027s home\"\n },\n \"performer\": [\n {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/CarePlan", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CarePlan" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CarePlan_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CarePlan?patient=&activity-reference=&based-on=&care-team=&condition=&context=&definition=&encounter=&goal=&part-of=&performer=&replaces=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&activity-code=&activity-date=&category=&intent=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CarePlan" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "activity-reference", + "value": "", + "description": "Activity details defined in specific resource" + }, + { + "key": "based-on", + "value": "", + "description": "Fulfills care plan" + }, + { + "key": "care-team", + "value": "", + "description": "Who's involved in plan?" + }, + { + "key": "condition", + "value": "", + "description": "Health issues this plan addresses" + }, + { + "key": "context", + "value": "", + "description": "Created in context of" + }, + { + "key": "definition", + "value": "", + "description": "Protocol or definition" + }, + { + "key": "encounter", + "value": "", + "description": "Created in context of" + }, + { + "key": "goal", + "value": "", + "description": "Desired outcome of plan" + }, + { + "key": "part-of", + "value": "", + "description": "Part of referenced CarePlan" + }, + { + "key": "performer", + "value": "", + "description": "Matches if the practitioner is listed as a performer in any of the \"simple\" activities. (For performers of the detailed activities, chain through the activitydetail search parameter.)" + }, + { + "key": "replaces", + "value": "", + "description": "CarePlan replaced by this CarePlan" + }, + { + "key": "subject", + "value": "", + "description": "Who care plan is for" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "activity-code", + "value": "", + "description": "Detail type of activity" + }, + { + "key": "activity-date", + "value": "", + "description": "Specified date occurs within period specified by CarePlan.activity.timingSchedule" + }, + { + "key": "category", + "value": "", + "description": "Type of plan" + }, + { + "key": "intent", + "value": "", + "description": "proposal | plan | order | option" + }, + { + "key": "status", + "value": "", + "description": "draft | active | suspended | completed | entered-in-error | cancelled | unknown" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CarePlanHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CarePlan/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CarePlan", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Care Team", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "CareTeamHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CareTeam/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CareTeam", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CareTeamHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CareTeam/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CareTeam", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CareTeamById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CareTeam/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CareTeam", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CareTeamById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"CareTeam\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eCare Team\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"pr1\",\n \"name\": [\n {\n \"family\": \"Dietician\",\n \"given\": [\n \"Dorothy\"\n ]\n }\n ]\n }\n ],\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA27976-2\",\n \"display\": \"Encounter-focused care team\"\n }\n ]\n }\n ],\n \"name\": \"Peter James Charlmers Care Plan for Inpatient Encounter\",\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"period\": {\n \"end\": \"2013-01-01\"\n },\n \"participant\": [\n {\n \"role\": [\n {\n \"text\": \"responsiblePerson\"\n }\n ],\n \"member\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n },\n {\n \"role\": [\n {\n \"text\": \"adviser\"\n }\n ],\n \"member\": {\n \"reference\": \"#pr1\",\n \"display\": \"Dorothy Dietition\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/f001\"\n },\n \"period\": {\n \"end\": \"2013-01-01\"\n }\n }\n ],\n \"managingOrganization\": [\n {\n \"reference\": \"Organization/f001\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/CareTeam/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CareTeam", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CareTeamById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CareTeam/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CareTeam", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CareTeam_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"CareTeam\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eCare Team\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"pr1\",\n \"name\": [\n {\n \"family\": \"Dietician\",\n \"given\": [\n \"Dorothy\"\n ]\n }\n ]\n }\n ],\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA27976-2\",\n \"display\": \"Encounter-focused care team\"\n }\n ]\n }\n ],\n \"name\": \"Peter James Charlmers Care Plan for Inpatient Encounter\",\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"period\": {\n \"end\": \"2013-01-01\"\n },\n \"participant\": [\n {\n \"role\": [\n {\n \"text\": \"responsiblePerson\"\n }\n ],\n \"member\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n }\n },\n {\n \"role\": [\n {\n \"text\": \"adviser\"\n }\n ],\n \"member\": {\n \"reference\": \"#pr1\",\n \"display\": \"Dorothy Dietition\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/f001\"\n },\n \"period\": {\n \"end\": \"2013-01-01\"\n }\n }\n ],\n \"managingOrganization\": [\n {\n \"reference\": \"Organization/f001\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/CareTeam", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CareTeam" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CareTeam_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CareTeam?patient=&context=&encounter=&participant=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&category=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CareTeam" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "context", + "value": "", + "description": "Encounter or episode associated with CareTeam" + }, + { + "key": "encounter", + "value": "", + "description": "Encounter or episode associated with CareTeam" + }, + { + "key": "participant", + "value": "", + "description": "Who is involved" + }, + { + "key": "subject", + "value": "", + "description": "Who care team is for" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "category", + "value": "", + "description": "Type of team" + }, + { + "key": "status", + "value": "", + "description": "proposed | active | suspended | inactive | entered-in-error" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CareTeamHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CareTeam/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CareTeam", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Charge Item", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ChargeItemHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ChargeItem/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ChargeItem", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ChargeItemHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ChargeItem/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ChargeItem", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ChargeItemById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ChargeItem/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ChargeItem", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ChargeItemById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ChargeItem\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eExample of ChargeItem Usage in Context of the German EBM Billing code system\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://myHospital.org/ChargeItems\",\n \"value\": \"654321\"\n }\n ],\n \"definitionUri\": [\n \"http://www.kbv.de/tools/ebm/html/01520_2904360860826220813632.html\"\n ],\n \"status\": \"billable\",\n \"code\": {\n \"coding\": [\n {\n \"code\": \"01510\",\n \"display\": \"Zusatzpauschale für Beobachtung nach diagnostischer Koronarangiografie\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"context\": {\n \"reference\": \"Encounter/example\"\n },\n \"occurrencePeriod\": {\n \"start\": \"2017-01-25T08:00:00+01:00\",\n \"end\": \"2017-01-25T12:35:00+01:00\"\n },\n \"performer\": [\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"17561000\",\n \"display\": \"Cardiologist\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n },\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"224542009\",\n \"display\": \"Coronary Care Nurse\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"performingOrganization\": {\n \"identifier\": {\n \"system\": \"http://myhospital/NamingSystem/departments\",\n \"value\": \"CARD_INTERMEDIATE_CARE\"\n }\n },\n \"requestingOrganization\": {\n \"identifier\": {\n \"system\": \"http://myhospital/NamingSystem/departments\",\n \"value\": \"CARD_U1\"\n }\n },\n \"quantity\": {\n \"value\": 1\n },\n \"factorOverride\": 0.8,\n \"priceOverride\": {\n \"value\": 40,\n \"currency\": \"EUR\"\n },\n \"overrideReason\": \"Patient is Cardiologist\\u0027s golf buddy, so he gets a 20% discount!\",\n \"enterer\": {\n \"reference\": \"Practitioner/example\"\n },\n \"enteredDate\": \"2017-01-25T23:55:04+01:00\",\n \"reason\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"123456\",\n \"display\": \"DIAG-1\"\n }\n ]\n }\n ],\n \"service\": [\n {\n \"reference\": \"Procedure/example\"\n }\n ],\n \"account\": [\n {\n \"reference\": \"Account/example\"\n }\n ],\n \"note\": [\n {\n \"authorReference\": {\n \"reference\": \"Practitioner/example\"\n },\n \"time\": \"2017-01-25T23:55:04+01:00\",\n \"text\": \"The code is only applicable for periods longer than 4h\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ChargeItem/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ChargeItem", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ChargeItemById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ChargeItem/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ChargeItem", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ChargeItem_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ChargeItem\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eExample of ChargeItem Usage in Context of the German EBM Billing code system\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://myHospital.org/ChargeItems\",\n \"value\": \"654321\"\n }\n ],\n \"definitionUri\": [\n \"http://www.kbv.de/tools/ebm/html/01520_2904360860826220813632.html\"\n ],\n \"status\": \"billable\",\n \"code\": {\n \"coding\": [\n {\n \"code\": \"01510\",\n \"display\": \"Zusatzpauschale für Beobachtung nach diagnostischer Koronarangiografie\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"context\": {\n \"reference\": \"Encounter/example\"\n },\n \"occurrencePeriod\": {\n \"start\": \"2017-01-25T08:00:00+01:00\",\n \"end\": \"2017-01-25T12:35:00+01:00\"\n },\n \"performer\": [\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"17561000\",\n \"display\": \"Cardiologist\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n },\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"224542009\",\n \"display\": \"Coronary Care Nurse\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"performingOrganization\": {\n \"identifier\": {\n \"system\": \"http://myhospital/NamingSystem/departments\",\n \"value\": \"CARD_INTERMEDIATE_CARE\"\n }\n },\n \"requestingOrganization\": {\n \"identifier\": {\n \"system\": \"http://myhospital/NamingSystem/departments\",\n \"value\": \"CARD_U1\"\n }\n },\n \"quantity\": {\n \"value\": 1\n },\n \"factorOverride\": 0.8,\n \"priceOverride\": {\n \"value\": 40,\n \"currency\": \"EUR\"\n },\n \"overrideReason\": \"Patient is Cardiologist\\u0027s golf buddy, so he gets a 20% discount!\",\n \"enterer\": {\n \"reference\": \"Practitioner/example\"\n },\n \"enteredDate\": \"2017-01-25T23:55:04+01:00\",\n \"reason\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"123456\",\n \"display\": \"DIAG-1\"\n }\n ]\n }\n ],\n \"service\": [\n {\n \"reference\": \"Procedure/example\"\n }\n ],\n \"account\": [\n {\n \"reference\": \"Account/example\"\n }\n ],\n \"note\": [\n {\n \"authorReference\": {\n \"reference\": \"Practitioner/example\"\n },\n \"time\": \"2017-01-25T23:55:04+01:00\",\n \"text\": \"The code is only applicable for periods longer than 4h\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ChargeItem", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ChargeItem" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ChargeItem_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ChargeItem?account=&context=&enterer=&participant-actor=&patient=&performing-organization=&requesting-organization=&service=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&entered-date=&factor-override=&identifier=&occurrence=&participant-role=&price-override=&quantity=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ChargeItem" + ], + "query": [ + { + "key": "account", + "value": "", + "description": "Account to place this charge" + }, + { + "key": "context", + "value": "", + "description": "Encounter / Episode associated with event" + }, + { + "key": "enterer", + "value": "", + "description": "Individual who was entering" + }, + { + "key": "participant-actor", + "value": "", + "description": "Individual who was performing" + }, + { + "key": "patient", + "value": "", + "description": "Individual service was done for/to" + }, + { + "key": "performing-organization", + "value": "", + "description": "Organization providing the charged sevice" + }, + { + "key": "requesting-organization", + "value": "", + "description": "Organization requesting the charged service" + }, + { + "key": "service", + "value": "", + "description": "Which rendered service is being charged?" + }, + { + "key": "subject", + "value": "", + "description": "Individual service was done for/to" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "A code that identifies the charge, like a billing code" + }, + { + "key": "entered-date", + "value": "", + "description": "Date the charge item was entered" + }, + { + "key": "factor-override", + "value": "", + "description": "Factor overriding the associated rules" + }, + { + "key": "identifier", + "value": "", + "description": "Business Identifier for item" + }, + { + "key": "occurrence", + "value": "", + "description": "When the charged service was applied" + }, + { + "key": "participant-role", + "value": "", + "description": "What type of performance was done" + }, + { + "key": "price-override", + "value": "", + "description": "Price overriding the associated rules" + }, + { + "key": "quantity", + "value": "", + "description": "Quantity of which the charge item has been serviced" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ChargeItemHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ChargeItem/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ChargeItem", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Claim", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ClaimHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Claim/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Claim", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClaimHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Claim/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Claim", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ClaimById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Claim/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Claim", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClaimById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Claim\",\n \"id\": \"100150\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the Oral Health Claim\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://happyvalley.com/claim\",\n \"value\": \"12345\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/claim-type\",\n \"code\": \"oral\"\n }\n ]\n },\n \"use\": \"claim\",\n \"patient\": {\n \"reference\": \"Patient/1\"\n },\n \"created\": \"2014-08-16\",\n \"insurer\": {\n \"reference\": \"Organization/2\"\n },\n \"provider\": {\n \"reference\": \"Organization/1\"\n },\n \"priority\": {\n \"coding\": [\n {\n \"code\": \"normal\"\n }\n ]\n },\n \"payee\": {\n \"type\": {\n \"coding\": [\n {\n \"code\": \"provider\"\n }\n ]\n }\n },\n \"careTeam\": [\n {\n \"sequence\": 1,\n \"provider\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"sequence\": 1,\n \"diagnosisCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"123456\"\n }\n ]\n }\n }\n ],\n \"insurance\": [\n {\n \"sequence\": 1,\n \"focal\": true,\n \"identifier\": {\n \"system\": \"http://happyvalley.com/claim\",\n \"value\": \"12345\"\n },\n \"coverage\": {\n \"reference\": \"Coverage/9876B1\"\n }\n }\n ],\n \"item\": [\n {\n \"sequence\": 1,\n \"careTeamSequence\": [\n 1\n ],\n \"productOrService\": {\n \"coding\": [\n {\n \"code\": \"1200\"\n }\n ]\n },\n \"servicedDate\": \"2014-08-16\",\n \"unitPrice\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n },\n \"net\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Claim/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Claim", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClaimById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Claim/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Claim", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Claim_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Claim\",\n \"id\": \"100150\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the Oral Health Claim\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://happyvalley.com/claim\",\n \"value\": \"12345\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/claim-type\",\n \"code\": \"oral\"\n }\n ]\n },\n \"use\": \"claim\",\n \"patient\": {\n \"reference\": \"Patient/1\"\n },\n \"created\": \"2014-08-16\",\n \"insurer\": {\n \"reference\": \"Organization/2\"\n },\n \"provider\": {\n \"reference\": \"Organization/1\"\n },\n \"priority\": {\n \"coding\": [\n {\n \"code\": \"normal\"\n }\n ]\n },\n \"payee\": {\n \"type\": {\n \"coding\": [\n {\n \"code\": \"provider\"\n }\n ]\n }\n },\n \"careTeam\": [\n {\n \"sequence\": 1,\n \"provider\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"sequence\": 1,\n \"diagnosisCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"123456\"\n }\n ]\n }\n }\n ],\n \"insurance\": [\n {\n \"sequence\": 1,\n \"focal\": true,\n \"identifier\": {\n \"system\": \"http://happyvalley.com/claim\",\n \"value\": \"12345\"\n },\n \"coverage\": {\n \"reference\": \"Coverage/9876B1\"\n }\n }\n ],\n \"item\": [\n {\n \"sequence\": 1,\n \"careTeamSequence\": [\n 1\n ],\n \"productOrService\": {\n \"coding\": [\n {\n \"code\": \"1200\"\n }\n ]\n },\n \"servicedDate\": \"2014-08-16\",\n \"unitPrice\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n },\n \"net\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Claim", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Claim" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Claim_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Claim?care-team=&encounter=&enterer=&facility=&insurer=&organization=&patient=&payee=&provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&identifier=&priority=&use=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Claim" + ], + "query": [ + { + "key": "care-team", + "value": "", + "description": "Member of the CareTeam" + }, + { + "key": "encounter", + "value": "", + "description": "Encounters associated with a billed line item" + }, + { + "key": "enterer", + "value": "", + "description": "The party responsible for the entry of the Claim" + }, + { + "key": "facility", + "value": "", + "description": "Facility responsible for the goods and services" + }, + { + "key": "insurer", + "value": "", + "description": "The target payor/insurer for the Claim" + }, + { + "key": "organization", + "value": "", + "description": "The reference to the providing organization" + }, + { + "key": "patient", + "value": "", + "description": "Patient receiving the services" + }, + { + "key": "payee", + "value": "", + "description": "The party receiving any payment for the Claim" + }, + { + "key": "provider", + "value": "", + "description": "Provider responsible for the Claim" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "created", + "value": "", + "description": "The creation date for the Claim" + }, + { + "key": "identifier", + "value": "", + "description": "The primary identifier of the financial resource" + }, + { + "key": "priority", + "value": "", + "description": "Processing priority requested" + }, + { + "key": "use", + "value": "", + "description": "The kind of financial resource" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClaimHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Claim/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Claim", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Claim Response", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ClaimResponseHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ClaimResponse/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClaimResponse", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClaimResponseHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ClaimResponse/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClaimResponse", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ClaimResponseById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ClaimResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClaimResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClaimResponseById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ClaimResponse\",\n \"id\": \"R3500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the ClaimResponse\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/remittance\",\n \"value\": \"R3500\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/claim-type\",\n \"code\": \"oral\"\n }\n ]\n },\n \"subType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-claimsubtype\",\n \"code\": \"emergency\"\n }\n ]\n },\n \"use\": \"claim\",\n \"patient\": {\n \"reference\": \"Patient/1\"\n },\n \"created\": \"2014-08-16\",\n \"insurer\": {\n \"identifier\": {\n \"system\": \"http://www.jurisdiction.org/insurers\",\n \"value\": \"555123\"\n }\n },\n \"requestor\": {\n \"reference\": \"Organization/1\"\n },\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/oralhealthclaim/15476332402\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"Claim settled as per contract.\",\n \"payeeType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payeetype\",\n \"code\": \"provider\"\n }\n ]\n },\n \"item\": [\n {\n \"itemSequence\": 1,\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligible\"\n }\n ]\n },\n \"amount\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"copay\"\n }\n ]\n },\n \"amount\": {\n \"value\": 10.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligpercent\"\n }\n ]\n },\n \"value\": 80.00\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"reason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adjudication-reason\",\n \"code\": \"ar002\",\n \"display\": \"Plan Limit Reached\"\n }\n ]\n },\n \"amount\": {\n \"value\": 90.47,\n \"currency\": \"USD\"\n }\n }\n ]\n }\n ],\n \"total\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"submitted\"\n }\n ]\n },\n \"amount\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 90.47,\n \"currency\": \"USD\"\n }\n }\n ],\n \"payment\": {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-paymenttype\",\n \"code\": \"complete\"\n }\n ]\n },\n \"date\": \"2014-08-31\",\n \"amount\": {\n \"value\": 100.47,\n \"currency\": \"USD\"\n },\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/fhir/paymentidentifier\",\n \"value\": \"201408-2-1569478\"\n }\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ClaimResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClaimResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClaimResponseById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ClaimResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClaimResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ClaimResponse_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ClaimResponse\",\n \"id\": \"R3500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the ClaimResponse\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/remittance\",\n \"value\": \"R3500\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/claim-type\",\n \"code\": \"oral\"\n }\n ]\n },\n \"subType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-claimsubtype\",\n \"code\": \"emergency\"\n }\n ]\n },\n \"use\": \"claim\",\n \"patient\": {\n \"reference\": \"Patient/1\"\n },\n \"created\": \"2014-08-16\",\n \"insurer\": {\n \"identifier\": {\n \"system\": \"http://www.jurisdiction.org/insurers\",\n \"value\": \"555123\"\n }\n },\n \"requestor\": {\n \"reference\": \"Organization/1\"\n },\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/oralhealthclaim/15476332402\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"Claim settled as per contract.\",\n \"payeeType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payeetype\",\n \"code\": \"provider\"\n }\n ]\n },\n \"item\": [\n {\n \"itemSequence\": 1,\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligible\"\n }\n ]\n },\n \"amount\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"copay\"\n }\n ]\n },\n \"amount\": {\n \"value\": 10.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligpercent\"\n }\n ]\n },\n \"value\": 80.00\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"reason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/adjudication-reason\",\n \"code\": \"ar002\",\n \"display\": \"Plan Limit Reached\"\n }\n ]\n },\n \"amount\": {\n \"value\": 90.47,\n \"currency\": \"USD\"\n }\n }\n ]\n }\n ],\n \"total\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"submitted\"\n }\n ]\n },\n \"amount\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 90.47,\n \"currency\": \"USD\"\n }\n }\n ],\n \"payment\": {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-paymenttype\",\n \"code\": \"complete\"\n }\n ]\n },\n \"date\": \"2014-08-31\",\n \"amount\": {\n \"value\": 100.47,\n \"currency\": \"USD\"\n },\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/fhir/paymentidentifier\",\n \"value\": \"201408-2-1569478\"\n }\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ClaimResponse", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClaimResponse" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClaimResponse_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ClaimResponse?insurer=&patient=&request=&request-provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&disposition=&identifier=&outcome=&payment-date=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClaimResponse" + ], + "query": [ + { + "key": "insurer", + "value": "", + "description": "The organization who generated this resource" + }, + { + "key": "patient", + "value": "", + "description": "The subject of care." + }, + { + "key": "request", + "value": "", + "description": "The claim reference" + }, + { + "key": "request-provider", + "value": "", + "description": "The Provider of the claim" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "created", + "value": "", + "description": "The creation date" + }, + { + "key": "disposition", + "value": "", + "description": "The contents of the disposition message" + }, + { + "key": "identifier", + "value": "", + "description": "The identity of the claimresponse" + }, + { + "key": "outcome", + "value": "", + "description": "The processing outcome" + }, + { + "key": "payment-date", + "value": "", + "description": "The expected paymentDate" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClaimResponseHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ClaimResponse/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClaimResponse", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Clinical Impression", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ClinicalImpressionHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ClinicalImpression/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClinicalImpression", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClinicalImpressionHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ClinicalImpression/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClinicalImpression", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ClinicalImpressionById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ClinicalImpression/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClinicalImpression", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClinicalImpressionById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ClinicalImpression\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 12345\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: This 26 yo male patient is brought into ER by ambulance after being involved in a motor vehicle accident\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eeffective\\u003c/b\\u003e: 06/12/2014 8:00:00 PM --\\u0026gt; 06/12/2014 10:33:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 06/12/2014 10:33:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eassessor\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eproblem\\u003c/b\\u003e: MVA\\u003c/p\\u003e\\u003ch3\\u003eInvestigations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eItem\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eInitial Examination \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003edeep laceration of the scalp (left temporo-occipital)\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003esummary\\u003c/b\\u003e: provisional diagnoses of laceration of head and traumatic brain injury (TBI)\\u003c/p\\u003e\\u003ch3\\u003eFindings\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eItemCodeableConcept\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e850.0 \\u003cspan\\u003e(Details : {ICD-9 code \\u0027850.0\\u0027 \\u003d \\u0027850.0)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"This 26 yo male patient is brought into ER by ambulance after being involved in a motor vehicle accident\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"effectivePeriod\": {\n \"start\": \"2014-12-06T20:00:00+11:00\",\n \"end\": \"2014-12-06T22:33:00+11:00\"\n },\n \"date\": \"2014-12-06T22:33:00+11:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/example\"\n },\n \"problem\": [\n {\n \"display\": \"MVA\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Initial Examination\"\n },\n \"item\": [\n {\n \"display\": \"deep laceration of the scalp (left temporo-occipital)\"\n },\n {\n \"display\": \"decreased level of consciousness\"\n },\n {\n \"display\": \"disoriented to time and place\"\n },\n {\n \"display\": \"restless\"\n }\n ]\n }\n ],\n \"summary\": \"provisional diagnoses of laceration of head and traumatic brain injury (TBI)\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9\",\n \"code\": \"850.0\"\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ClinicalImpression/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClinicalImpression", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClinicalImpressionById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ClinicalImpression/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClinicalImpression", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ClinicalImpression_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ClinicalImpression\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 12345\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: This 26 yo male patient is brought into ER by ambulance after being involved in a motor vehicle accident\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eeffective\\u003c/b\\u003e: 06/12/2014 8:00:00 PM --\\u0026gt; 06/12/2014 10:33:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 06/12/2014 10:33:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eassessor\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eproblem\\u003c/b\\u003e: MVA\\u003c/p\\u003e\\u003ch3\\u003eInvestigations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eItem\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eInitial Examination \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003edeep laceration of the scalp (left temporo-occipital)\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003esummary\\u003c/b\\u003e: provisional diagnoses of laceration of head and traumatic brain injury (TBI)\\u003c/p\\u003e\\u003ch3\\u003eFindings\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eItemCodeableConcept\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e850.0 \\u003cspan\\u003e(Details : {ICD-9 code \\u0027850.0\\u0027 \\u003d \\u0027850.0)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"This 26 yo male patient is brought into ER by ambulance after being involved in a motor vehicle accident\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"effectivePeriod\": {\n \"start\": \"2014-12-06T20:00:00+11:00\",\n \"end\": \"2014-12-06T22:33:00+11:00\"\n },\n \"date\": \"2014-12-06T22:33:00+11:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/example\"\n },\n \"problem\": [\n {\n \"display\": \"MVA\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Initial Examination\"\n },\n \"item\": [\n {\n \"display\": \"deep laceration of the scalp (left temporo-occipital)\"\n },\n {\n \"display\": \"decreased level of consciousness\"\n },\n {\n \"display\": \"disoriented to time and place\"\n },\n {\n \"display\": \"restless\"\n }\n ]\n }\n ],\n \"summary\": \"provisional diagnoses of laceration of head and traumatic brain injury (TBI)\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9\",\n \"code\": \"850.0\"\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ClinicalImpression", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClinicalImpression" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClinicalImpression_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ClinicalImpression?patient=&action=&assessor=&context=&finding-ref=&investigation=&previous=&problem=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&finding-code=&identifier=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClinicalImpression" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "action", + "value": "", + "description": "Action taken as part of assessment procedure" + }, + { + "key": "assessor", + "value": "", + "description": "The clinician performing the assessment" + }, + { + "key": "context", + "value": "", + "description": "Encounter or Episode created from" + }, + { + "key": "finding-ref", + "value": "", + "description": "What was found" + }, + { + "key": "investigation", + "value": "", + "description": "Record of a specific investigation" + }, + { + "key": "previous", + "value": "", + "description": "Reference to last assessment" + }, + { + "key": "problem", + "value": "", + "description": "Relevant impressions of patient state" + }, + { + "key": "subject", + "value": "", + "description": "Patient or group assessed" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "finding-code", + "value": "", + "description": "What was found" + }, + { + "key": "identifier", + "value": "", + "description": "Business identifier" + }, + { + "key": "status", + "value": "", + "description": "draft | completed | entered-in-error" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ClinicalImpressionHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ClinicalImpression/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ClinicalImpression", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Code System", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "CodeSystemHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CodeSystem/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CodeSystem", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CodeSystemHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CodeSystem/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CodeSystem", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CodeSystemById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CodeSystem/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CodeSystem", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CodeSystemById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"CodeSystem\",\n \"id\": \"example\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/shareablecodesystem\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eCodeSystem \\u0026quot;ACME Codes for Cholesterol\\u0026quot;: This is an example code system that includes \\n all the codes for serum cholesterol defined by ACME inc.\\u003c/p\\u003e\\n \\u003cp\\u003eDeveloped by: FHIR project team (example)\\u003c/p\\u003e\\n \\u003cp\\u003ePublished for testing on 28-Jan 2016\\u003c/p\\u003e\\n \\u003cp\\u003eThis code system defines all the ACME codes for serum cholesterol:\\u003c/p\\u003e\\n \\u003ctable class\\u003d\\\"grid\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eCode\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDisplay\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDefinition\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003echol-mmol\\u003c/td\\u003e\\n \\u003ctd\\u003eSChol (mmol/L)\\u003c/td\\u003e\\n \\u003ctd\\u003eSerum Cholesterol, in mmol/L\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003echol-mass\\u003c/td\\u003e\\n \\u003ctd\\u003eSChol (mg/L)\\u003c/td\\u003e\\n \\u003ctd\\u003eSerum Cholesterol, in mg/L\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003echol\\u003c/td\\u003e\\n \\u003ctd\\u003eSChol\\u003c/td\\u003e\\n \\u003ctd\\u003eSerum Cholesterol\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/CodeSystem/example\",\n \"identifier\": [\n {\n \"system\": \"http://acme.com/identifiers/codesystems\",\n \"value\": \"internal-cholesterol-inl\"\n }\n ],\n \"version\": \"20160128\",\n \"name\": \"ACMECholCodesBlood\",\n \"title\": \"ACME Codes for Cholesterol in Serum/Plasma\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2016-01-28\",\n \"publisher\": \"Acme Co\",\n \"contact\": [\n {\n \"name\": \"FHIR project team\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"This is an example code system that includes all the ACME codes for serum/plasma cholesterol from v2.36.\",\n \"caseSensitive\": true,\n \"content\": \"complete\",\n \"filter\": [\n {\n \"code\": \"acme-plasma\",\n \"description\": \"An internal filter used to select codes that are only used with plasma\",\n \"operator\": [\n \"\\u003d\"\n ],\n \"value\": \"the value of this filter is either \\u0027true\\u0027 or \\u0027false\\u0027\"\n }\n ],\n \"concept\": [\n {\n \"code\": \"chol-mmol\",\n \"display\": \"SChol (mmol/L)\",\n \"definition\": \"Serum Cholesterol, in mmol/L\",\n \"designation\": [\n {\n \"use\": {\n \"system\": \"http://acme.com/config/fhir/codesystems/internal\",\n \"code\": \"internal-label\"\n },\n \"value\": \"From ACME POC Testing\"\n }\n ]\n },\n {\n \"code\": \"chol-mass\",\n \"display\": \"SChol (mg/L)\",\n \"definition\": \"Serum Cholesterol, in mg/L\",\n \"designation\": [\n {\n \"use\": {\n \"system\": \"http://acme.com/config/fhir/codesystems/internal\",\n \"code\": \"internal-label\"\n },\n \"value\": \"From Paragon Labs\"\n }\n ]\n },\n {\n \"code\": \"chol\",\n \"display\": \"SChol\",\n \"definition\": \"Serum Cholesterol\",\n \"designation\": [\n {\n \"use\": {\n \"system\": \"http://acme.com/config/fhir/codesystems/internal\",\n \"code\": \"internal-label\"\n },\n \"value\": \"Obdurate Labs uses this with both kinds of units...\"\n }\n ]\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/CodeSystem/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CodeSystem", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CodeSystemById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CodeSystem/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CodeSystem", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CodeSystem_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"CodeSystem\",\n \"id\": \"example\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/shareablecodesystem\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eCodeSystem \\u0026quot;ACME Codes for Cholesterol\\u0026quot;: This is an example code system that includes \\n all the codes for serum cholesterol defined by ACME inc.\\u003c/p\\u003e\\n \\u003cp\\u003eDeveloped by: FHIR project team (example)\\u003c/p\\u003e\\n \\u003cp\\u003ePublished for testing on 28-Jan 2016\\u003c/p\\u003e\\n \\u003cp\\u003eThis code system defines all the ACME codes for serum cholesterol:\\u003c/p\\u003e\\n \\u003ctable class\\u003d\\\"grid\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eCode\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDisplay\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDefinition\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003echol-mmol\\u003c/td\\u003e\\n \\u003ctd\\u003eSChol (mmol/L)\\u003c/td\\u003e\\n \\u003ctd\\u003eSerum Cholesterol, in mmol/L\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003echol-mass\\u003c/td\\u003e\\n \\u003ctd\\u003eSChol (mg/L)\\u003c/td\\u003e\\n \\u003ctd\\u003eSerum Cholesterol, in mg/L\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003echol\\u003c/td\\u003e\\n \\u003ctd\\u003eSChol\\u003c/td\\u003e\\n \\u003ctd\\u003eSerum Cholesterol\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/CodeSystem/example\",\n \"identifier\": [\n {\n \"system\": \"http://acme.com/identifiers/codesystems\",\n \"value\": \"internal-cholesterol-inl\"\n }\n ],\n \"version\": \"20160128\",\n \"name\": \"ACMECholCodesBlood\",\n \"title\": \"ACME Codes for Cholesterol in Serum/Plasma\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2016-01-28\",\n \"publisher\": \"Acme Co\",\n \"contact\": [\n {\n \"name\": \"FHIR project team\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"This is an example code system that includes all the ACME codes for serum/plasma cholesterol from v2.36.\",\n \"caseSensitive\": true,\n \"content\": \"complete\",\n \"filter\": [\n {\n \"code\": \"acme-plasma\",\n \"description\": \"An internal filter used to select codes that are only used with plasma\",\n \"operator\": [\n \"\\u003d\"\n ],\n \"value\": \"the value of this filter is either \\u0027true\\u0027 or \\u0027false\\u0027\"\n }\n ],\n \"concept\": [\n {\n \"code\": \"chol-mmol\",\n \"display\": \"SChol (mmol/L)\",\n \"definition\": \"Serum Cholesterol, in mmol/L\",\n \"designation\": [\n {\n \"use\": {\n \"system\": \"http://acme.com/config/fhir/codesystems/internal\",\n \"code\": \"internal-label\"\n },\n \"value\": \"From ACME POC Testing\"\n }\n ]\n },\n {\n \"code\": \"chol-mass\",\n \"display\": \"SChol (mg/L)\",\n \"definition\": \"Serum Cholesterol, in mg/L\",\n \"designation\": [\n {\n \"use\": {\n \"system\": \"http://acme.com/config/fhir/codesystems/internal\",\n \"code\": \"internal-label\"\n },\n \"value\": \"From Paragon Labs\"\n }\n ]\n },\n {\n \"code\": \"chol\",\n \"display\": \"SChol\",\n \"definition\": \"Serum Cholesterol\",\n \"designation\": [\n {\n \"use\": {\n \"system\": \"http://acme.com/config/fhir/codesystems/internal\",\n \"code\": \"internal-label\"\n },\n \"value\": \"Obdurate Labs uses this with both kinds of units...\"\n }\n ]\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/CodeSystem", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CodeSystem" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CodeSystem_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CodeSystem?_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&content-mode=&date=&description=&identifier=&jurisdiction=&language=&name=&publisher=&status=&system=&title=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CodeSystem" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "A code defined in the code system" + }, + { + "key": "content-mode", + "value": "", + "description": "not-present | example | fragment | complete" + }, + { + "key": "date", + "value": "", + "description": "The code system publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the code system" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the code system" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the code system" + }, + { + "key": "language", + "value": "", + "description": "A language in which a designation is provided" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the code system" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the code system" + }, + { + "key": "status", + "value": "", + "description": "The current status of the code system" + }, + { + "key": "system", + "value": "", + "description": "The system for any codes defined by this code system (same as 'url')" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the code system" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the code system" + }, + { + "key": "version", + "value": "", + "description": "The business version of the code system" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CodeSystemHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CodeSystem/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CodeSystem", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Communication", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "CommunicationHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Communication/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Communication", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CommunicationHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Communication/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Communication", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CommunicationById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Communication/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Communication", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CommunicationById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Communication\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003ePatient has very high serum potassium\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"type\": {\n \"text\": \"Paging System\"\n },\n \"system\": \"urn:oid:1.3.4.5.6.7\",\n \"value\": \"2345678901\"\n }\n ],\n \"instantiatesUri\": [\n \"http://example.org/hyperkalemia\"\n ],\n \"partOf\": [\n {\n \"display\": \"Serum Potassium Observation\"\n }\n ],\n \"status\": \"completed\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://acme.org/messagetypes\",\n \"code\": \"Alert\"\n }\n ],\n \"text\": \"Alert\"\n }\n ],\n \"medium\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationMode\",\n \"code\": \"WRITTEN\",\n \"display\": \"written\"\n }\n ],\n \"text\": \"written\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"sent\": \"2014-12-12T18:01:10-08:00\",\n \"received\": \"2014-12-12T18:01:11-08:00\",\n \"recipient\": [\n {\n \"reference\": \"Practitioner/example\"\n }\n ],\n \"sender\": {\n \"reference\": \"Device/f001\"\n },\n \"payload\": [\n {\n \"contentString\": \"Patient 1 has a very high serum potassium value (7.2 mmol/L on 2014-Dec-12 at 5:55 pm)\"\n },\n {\n \"contentReference\": {\n \"display\": \"Serum Potassium Observation\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Communication/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Communication", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CommunicationById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Communication/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Communication", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Communication_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Communication\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003ePatient has very high serum potassium\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"type\": {\n \"text\": \"Paging System\"\n },\n \"system\": \"urn:oid:1.3.4.5.6.7\",\n \"value\": \"2345678901\"\n }\n ],\n \"instantiatesUri\": [\n \"http://example.org/hyperkalemia\"\n ],\n \"partOf\": [\n {\n \"display\": \"Serum Potassium Observation\"\n }\n ],\n \"status\": \"completed\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://acme.org/messagetypes\",\n \"code\": \"Alert\"\n }\n ],\n \"text\": \"Alert\"\n }\n ],\n \"medium\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationMode\",\n \"code\": \"WRITTEN\",\n \"display\": \"written\"\n }\n ],\n \"text\": \"written\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"sent\": \"2014-12-12T18:01:10-08:00\",\n \"received\": \"2014-12-12T18:01:11-08:00\",\n \"recipient\": [\n {\n \"reference\": \"Practitioner/example\"\n }\n ],\n \"sender\": {\n \"reference\": \"Device/f001\"\n },\n \"payload\": [\n {\n \"contentString\": \"Patient 1 has a very high serum potassium value (7.2 mmol/L on 2014-Dec-12 at 5:55 pm)\"\n },\n {\n \"contentReference\": {\n \"display\": \"Serum Potassium Observation\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Communication", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Communication" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Communication_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Communication?based-on=&context=&definition=&encounter=&part-of=&patient=&recipient=&sender=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&identifier=&medium=&received=&sent=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Communication" + ], + "query": [ + { + "key": "based-on", + "value": "", + "description": "Request fulfilled by this communication" + }, + { + "key": "context", + "value": "", + "description": "Encounter or episode leading to message" + }, + { + "key": "definition", + "value": "", + "description": "Instantiates protocol or definition" + }, + { + "key": "encounter", + "value": "", + "description": "Encounter leading to message" + }, + { + "key": "part-of", + "value": "", + "description": "Part of this action" + }, + { + "key": "patient", + "value": "", + "description": "Focus of message" + }, + { + "key": "recipient", + "value": "", + "description": "Message recipient" + }, + { + "key": "sender", + "value": "", + "description": "Message sender" + }, + { + "key": "subject", + "value": "", + "description": "Focus of message" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "category", + "value": "", + "description": "Message category" + }, + { + "key": "identifier", + "value": "", + "description": "Unique identifier" + }, + { + "key": "medium", + "value": "", + "description": "A channel of communication" + }, + { + "key": "received", + "value": "", + "description": "When received" + }, + { + "key": "sent", + "value": "", + "description": "When sent" + }, + { + "key": "status", + "value": "", + "description": "preparation | in-progress | suspended | aborted | completed | entered-in-error" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CommunicationHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Communication/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Communication", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Communication Request", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "CommunicationRequestHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CommunicationRequest/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CommunicationRequest", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CommunicationRequestHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CommunicationRequest/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CommunicationRequest", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CommunicationRequestById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CommunicationRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CommunicationRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CommunicationRequestById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"CommunicationRequest\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eTo be filled out at a later time\\u003c/div\\u003e\"\n },\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/CommunicationRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CommunicationRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CommunicationRequestById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CommunicationRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CommunicationRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CommunicationRequest_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"CommunicationRequest\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eTo be filled out at a later time\\u003c/div\\u003e\"\n },\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/CommunicationRequest", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CommunicationRequest" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CommunicationRequest_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CommunicationRequest?based-on=&context=&encounter=&patient=&recipient=&replaces=&requester=&sender=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&authored=&category=&group-identifier=&identifier=&medium=&occurrence=&priority=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CommunicationRequest" + ], + "query": [ + { + "key": "based-on", + "value": "", + "description": "Fulfills plan or proposal" + }, + { + "key": "context", + "value": "", + "description": "Encounter or episode leading to message" + }, + { + "key": "encounter", + "value": "", + "description": "Encounter leading to message" + }, + { + "key": "patient", + "value": "", + "description": "Focus of message" + }, + { + "key": "recipient", + "value": "", + "description": "Message recipient" + }, + { + "key": "replaces", + "value": "", + "description": "Request(s) replaced by this request" + }, + { + "key": "requester", + "value": "", + "description": "Individual making the request" + }, + { + "key": "sender", + "value": "", + "description": "Message sender" + }, + { + "key": "subject", + "value": "", + "description": "Focus of message" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "authored", + "value": "", + "description": "When request transitioned to being actionable" + }, + { + "key": "category", + "value": "", + "description": "Message category" + }, + { + "key": "group-identifier", + "value": "", + "description": "Composite request this is part of" + }, + { + "key": "identifier", + "value": "", + "description": "Unique identifier" + }, + { + "key": "medium", + "value": "", + "description": "A channel of communication" + }, + { + "key": "occurrence", + "value": "", + "description": "When scheduled" + }, + { + "key": "priority", + "value": "", + "description": "Message urgency" + }, + { + "key": "status", + "value": "", + "description": "draft | active | suspended | cancelled | completed | entered-in-error | unknown" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CommunicationRequestHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CommunicationRequest/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CommunicationRequest", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Compartment Definition", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "CompartmentDefinitionHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CompartmentDefinition/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CompartmentDefinition", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CompartmentDefinitionHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CompartmentDefinition/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CompartmentDefinition", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CompartmentDefinitionById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CompartmentDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CompartmentDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CompartmentDefinitionById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"CompartmentDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/CompartmentDefinition/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: EXAMPLE\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 24/02/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: Health Level Seven International (FHIR Infrastructure)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: The set of resources associated with a particular Device (example with Communication and CommunicationRequest resourses only).\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epurpose\\u003c/b\\u003e: Provides an example of a FHIR compartment definition based on the Device resource type.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Device\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esearch\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Communication\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparam\\u003c/b\\u003e: sender, recipient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The device used as the message sender and recipient\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: CommunicationRequest\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparam\\u003c/b\\u003e: sender, recipient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The device used as the message sender and recipient\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/CompartmentDefinition/example\",\n \"name\": \"EXAMPLE\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2017-02-24\",\n \"publisher\": \"Health Level Seven International (FHIR Infrastructure)\",\n \"contact\": [\n {\n \"name\": \"[string]\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"The set of resources associated with a particular Device (example with Communication and CommunicationRequest resourses only).\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/resource-types\",\n \"code\": \"Device\"\n }\n ]\n }\n }\n ],\n \"purpose\": \"Provides an example of a FHIR compartment definition based on the Device resource type.\",\n \"code\": \"Device\",\n \"search\": true,\n \"resource\": [\n {\n \"code\": \"Communication\",\n \"param\": [\n \"sender\",\n \"recipient\"\n ],\n \"documentation\": \"The device used as the message sender and recipient\"\n },\n {\n \"code\": \"CommunicationRequest\",\n \"param\": [\n \"sender\",\n \"recipient\"\n ],\n \"documentation\": \"The device used as the message sender and recipient\"\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/CompartmentDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CompartmentDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CompartmentDefinitionById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CompartmentDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CompartmentDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CompartmentDefinition_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"CompartmentDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/CompartmentDefinition/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: EXAMPLE\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 24/02/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: Health Level Seven International (FHIR Infrastructure)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: The set of resources associated with a particular Device (example with Communication and CommunicationRequest resourses only).\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epurpose\\u003c/b\\u003e: Provides an example of a FHIR compartment definition based on the Device resource type.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Device\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esearch\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Communication\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparam\\u003c/b\\u003e: sender, recipient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The device used as the message sender and recipient\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: CommunicationRequest\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparam\\u003c/b\\u003e: sender, recipient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The device used as the message sender and recipient\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/CompartmentDefinition/example\",\n \"name\": \"EXAMPLE\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2017-02-24\",\n \"publisher\": \"Health Level Seven International (FHIR Infrastructure)\",\n \"contact\": [\n {\n \"name\": \"[string]\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"The set of resources associated with a particular Device (example with Communication and CommunicationRequest resourses only).\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/resource-types\",\n \"code\": \"Device\"\n }\n ]\n }\n }\n ],\n \"purpose\": \"Provides an example of a FHIR compartment definition based on the Device resource type.\",\n \"code\": \"Device\",\n \"search\": true,\n \"resource\": [\n {\n \"code\": \"Communication\",\n \"param\": [\n \"sender\",\n \"recipient\"\n ],\n \"documentation\": \"The device used as the message sender and recipient\"\n },\n {\n \"code\": \"CommunicationRequest\",\n \"param\": [\n \"sender\",\n \"recipient\"\n ],\n \"documentation\": \"The device used as the message sender and recipient\"\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/CompartmentDefinition", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CompartmentDefinition" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CompartmentDefinition_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CompartmentDefinition?_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&description=&jurisdiction=&name=&publisher=&resource=&status=&title=&url=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CompartmentDefinition" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Patient | Encounter | RelatedPerson | Practitioner | Device" + }, + { + "key": "date", + "value": "", + "description": "The compartment definition publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the compartment definition" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the compartment definition" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the compartment definition" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the compartment definition" + }, + { + "key": "resource", + "value": "", + "description": "Name of resource type" + }, + { + "key": "status", + "value": "", + "description": "The current status of the compartment definition" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the compartment definition" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the compartment definition" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CompartmentDefinitionHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/CompartmentDefinition/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "CompartmentDefinition", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Composition", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "CompositionHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Composition/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Composition", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CompositionHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Composition/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Composition", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CompositionById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Composition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Composition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CompositionById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Composition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eConsultation note for Henry Levin the 7th\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eManaged by Good Health Clinic\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": {\n \"system\": \"http://healthintersections.com.au/test\",\n \"value\": \"1\"\n },\n \"status\": \"final\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11488-4\",\n \"display\": \"Consult note\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LP173421-1\",\n \"display\": \"Report\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/xcda\",\n \"display\": \"Henry Levin the 7th\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/xcda\"\n },\n \"date\": \"2012-01-04T09:10:14Z\",\n \"author\": [\n {\n \"reference\": \"Practitioner/xcda-author\",\n \"display\": \"Harold Hippocrates, MD\"\n }\n ],\n \"title\": \"Consultation Note\",\n \"confidentiality\": \"N\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"time\": \"2012-01-04T09:10:14Z\",\n \"party\": {\n \"reference\": \"Practitioner/xcda-author\",\n \"display\": \"Harold Hippocrates, MD\"\n }\n }\n ],\n \"custodian\": {\n \"reference\": \"Organization/2.16.840.1.113883.19.5\",\n \"display\": \"Good Health Clinic\"\n },\n \"relatesTo\": [\n {\n \"code\": \"replaces\",\n \"targetReference\": {\n \"reference\": \"Composition/old-example\"\n }\n },\n {\n \"code\": \"appends\",\n \"targetIdentifier\": {\n \"system\": \"http://example.org/fhir/NamingSystem/document-ids\",\n \"value\": \"ABC123\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"HEALTHREC\",\n \"display\": \"health record\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2010-07-18\",\n \"end\": \"2012-11-12\"\n },\n \"detail\": [\n {\n \"reference\": \"Observation/example\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"History of present illness\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11348-0\",\n \"display\": \"History of past illness Narrative\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\t\\u003ctable\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eCode\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eDate\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eType\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eBodySite\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eSeverity\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eStroke\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e2010-07-18\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eDiagnosis\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eBurnt Ear\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e2012-05-24\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eDiagnosis\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eLeft Ear\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eAsthma\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e2012-11-12\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFinding\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eMild\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\t\\u003c/div\\u003e\"\n },\n \"mode\": \"snapshot\",\n \"orderedBy\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/list-order\",\n \"code\": \"event-date\",\n \"display\": \"Sorted by Event Date\"\n }\n ]\n },\n \"entry\": [\n {\n \"reference\": \"Condition/stroke\"\n },\n {\n \"reference\": \"Condition/example\"\n },\n {\n \"reference\": \"Condition/example2\"\n }\n ]\n },\n {\n \"title\": \"History of family member diseases\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10157-6\",\n \"display\": \"History of family member diseases Narrative\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\t\\u003cp\\u003eHistory of family member diseases - not available\\u003c/p\\u003e\\n\\t\\t\\t\\u003c/div\\u003e\"\n },\n \"mode\": \"snapshot\",\n \"emptyReason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/list-empty-reason\",\n \"code\": \"withheld\",\n \"display\": \"Information Withheld\"\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Composition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Composition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CompositionById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Composition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Composition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Composition_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Composition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eConsultation note for Henry Levin the 7th\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eManaged by Good Health Clinic\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": {\n \"system\": \"http://healthintersections.com.au/test\",\n \"value\": \"1\"\n },\n \"status\": \"final\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11488-4\",\n \"display\": \"Consult note\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LP173421-1\",\n \"display\": \"Report\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/xcda\",\n \"display\": \"Henry Levin the 7th\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/xcda\"\n },\n \"date\": \"2012-01-04T09:10:14Z\",\n \"author\": [\n {\n \"reference\": \"Practitioner/xcda-author\",\n \"display\": \"Harold Hippocrates, MD\"\n }\n ],\n \"title\": \"Consultation Note\",\n \"confidentiality\": \"N\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"time\": \"2012-01-04T09:10:14Z\",\n \"party\": {\n \"reference\": \"Practitioner/xcda-author\",\n \"display\": \"Harold Hippocrates, MD\"\n }\n }\n ],\n \"custodian\": {\n \"reference\": \"Organization/2.16.840.1.113883.19.5\",\n \"display\": \"Good Health Clinic\"\n },\n \"relatesTo\": [\n {\n \"code\": \"replaces\",\n \"targetReference\": {\n \"reference\": \"Composition/old-example\"\n }\n },\n {\n \"code\": \"appends\",\n \"targetIdentifier\": {\n \"system\": \"http://example.org/fhir/NamingSystem/document-ids\",\n \"value\": \"ABC123\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"HEALTHREC\",\n \"display\": \"health record\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2010-07-18\",\n \"end\": \"2012-11-12\"\n },\n \"detail\": [\n {\n \"reference\": \"Observation/example\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"History of present illness\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11348-0\",\n \"display\": \"History of past illness Narrative\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\t\\u003ctable\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eCode\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eDate\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eType\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eBodySite\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003cb\\u003eSeverity\\u003c/b\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eStroke\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e2010-07-18\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eDiagnosis\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eBurnt Ear\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e2012-05-24\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eDiagnosis\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eLeft Ear\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eAsthma\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e2012-11-12\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFinding\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd/\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eMild\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\t\\u003c/div\\u003e\"\n },\n \"mode\": \"snapshot\",\n \"orderedBy\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/list-order\",\n \"code\": \"event-date\",\n \"display\": \"Sorted by Event Date\"\n }\n ]\n },\n \"entry\": [\n {\n \"reference\": \"Condition/stroke\"\n },\n {\n \"reference\": \"Condition/example\"\n },\n {\n \"reference\": \"Condition/example2\"\n }\n ]\n },\n {\n \"title\": \"History of family member diseases\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10157-6\",\n \"display\": \"History of family member diseases Narrative\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\t\\u003cp\\u003eHistory of family member diseases - not available\\u003c/p\\u003e\\n\\t\\t\\t\\u003c/div\\u003e\"\n },\n \"mode\": \"snapshot\",\n \"emptyReason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/list-empty-reason\",\n \"code\": \"withheld\",\n \"display\": \"Information Withheld\"\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Composition", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Composition" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Composition_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Composition?patient=&attester=&author=&encounter=&entry=&related-ref=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&type=&class=&confidentiality=&context=&period=&related-id=§ion=&status=&title=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Composition" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "attester", + "value": "", + "description": "Who attested the composition" + }, + { + "key": "author", + "value": "", + "description": "Who and/or what authored the composition" + }, + { + "key": "encounter", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" + }, + { + "key": "entry", + "value": "", + "description": "A reference to data that supports this section" + }, + { + "key": "related-ref", + "value": "", + "description": "Target of the relationship" + }, + { + "key": "subject", + "value": "", + "description": "Who and/or what the composition is about" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "type", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" + }, + { + "key": "class", + "value": "", + "description": "Categorization of Composition" + }, + { + "key": "confidentiality", + "value": "", + "description": "As defined by affinity domain" + }, + { + "key": "context", + "value": "", + "description": "Code(s) that apply to the event being documented" + }, + { + "key": "period", + "value": "", + "description": "The period covered by the documentation" + }, + { + "key": "related-id", + "value": "", + "description": "Target of the relationship" + }, + { + "key": "section", + "value": "", + "description": "Classification of section (recommended)" + }, + { + "key": "status", + "value": "", + "description": "preliminary | final | amended | entered-in-error" + }, + { + "key": "title", + "value": "", + "description": "Human Readable name/title" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CompositionHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Composition/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Composition", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Concept Map", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ConceptMapHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ConceptMap/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ConceptMap", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ConceptMapHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ConceptMap/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ConceptMap", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ConceptMapById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ConceptMap/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ConceptMap", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ConceptMapById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ConceptMap\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ch2\\u003eFHIR-v3-Address-Use (http://hl7.org/fhir/ConceptMap/101)\\u003c/h2\\u003e\\n \\u003cp\\u003eMapping from \\n \\u003ca href\\u003d\\\"valueset-address-use.html\\\"\\u003ehttp://hl7.org/fhir/ValueSet/address-use\\u003c/a\\u003e to \\n \\u003ca href\\u003d\\\"v3/AddressUse/vs.html\\\"\\u003ehttp://terminology.hl7.org/ValueSet/v3-AddressUse\\u003c/a\\u003e\\n \\u003c/p\\u003e\\n \\u003cp\\u003eDRAFT (not intended for production usage). Published on 13/06/2012 by HL7, Inc (FHIR project team (example): \\n \\u003ca href\\u003d\\\"http://hl7.org/fhir\\\"\\u003ehttp://hl7.org/fhir\\u003c/a\\u003e). Creative Commons 0\\n \\u003c/p\\u003e\\n \\u003cdiv\\u003e\\n \\u003cp\\u003eA mapping between the FHIR and HL7 v3 AddressUse Code systems\\u003c/p\\u003e\\n\\n \\u003c/div\\u003e\\n \\u003cbr/\\u003e\\n \\u003ctable class\\u003d\\\"grid\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eSource Code\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eEquivalence\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDestination Code\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eComment\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003ehome\\u003c/td\\u003e\\n \\u003ctd\\u003eequivalent\\u003c/td\\u003e\\n \\u003ctd\\u003eH (home address)\\u003c/td\\u003e\\n \\u003ctd/\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003ework\\u003c/td\\u003e\\n \\u003ctd\\u003eequivalent\\u003c/td\\u003e\\n \\u003ctd\\u003eWP (work place)\\u003c/td\\u003e\\n \\u003ctd/\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003etemp (Temporary)\\u003c/td\\u003e\\n \\u003ctd\\u003eequivalent\\u003c/td\\u003e\\n \\u003ctd\\u003eTMP (temporary address)\\u003c/td\\u003e\\n \\u003ctd/\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eold (Old / Incorrect)\\u003c/td\\u003e\\n \\u003ctd\\u003edisjoint\\u003c/td\\u003e\\n \\u003ctd\\u003eBAD (bad address)\\u003c/td\\u003e\\n \\u003ctd\\u003eIn the HL7 v3 AD, old is handled by the usablePeriod element, but you have to provide a time, there\\u0027s no simple equivalent of flagging an address as old\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/ConceptMap/101\",\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:uuid:53cd62ee-033e-414c-9f58-3ca97b5ffc3b\"\n },\n \"version\": \"4.0.1\",\n \"name\": \"FHIR-v3-Address-Use\",\n \"title\": \"FHIR/v3 Address Use Mapping\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2012-06-13\",\n \"publisher\": \"HL7, Inc\",\n \"contact\": [\n {\n \"name\": \"FHIR project team (example)\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"A mapping between the FHIR and HL7 v3 AddressUse Code systems\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"venue\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"for CCDA Usage\"\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"To help implementers map from HL7 v3/CDA to FHIR\",\n \"copyright\": \"Creative Commons 0\",\n \"sourceUri\": \"http://hl7.org/fhir/ValueSet/address-use\",\n \"targetUri\": \"http://terminology.hl7.org/ValueSet/v3-AddressUse\",\n \"group\": [\n {\n \"source\": \"http://hl7.org/fhir/address-use\",\n \"target\": \"http://terminology.hl7.org/CodeSystem/v3-AddressUse\",\n \"element\": [\n {\n \"code\": \"home\",\n \"display\": \"home\",\n \"target\": [\n {\n \"code\": \"H\",\n \"display\": \"home\",\n \"equivalence\": \"equivalent\"\n }\n ]\n },\n {\n \"code\": \"work\",\n \"display\": \"work\",\n \"target\": [\n {\n \"code\": \"WP\",\n \"display\": \"work place\",\n \"equivalence\": \"equivalent\"\n }\n ]\n },\n {\n \"code\": \"temp\",\n \"display\": \"temp\",\n \"target\": [\n {\n \"code\": \"TMP\",\n \"display\": \"temporary address\",\n \"equivalence\": \"equivalent\"\n }\n ]\n },\n {\n \"code\": \"old\",\n \"display\": \"old\",\n \"target\": [\n {\n \"code\": \"BAD\",\n \"display\": \"bad address\",\n \"equivalence\": \"disjoint\",\n \"comment\": \"In the HL7 v3 AD, old is handled by the usablePeriod element, but you have to provide a time, there\\u0027s no simple equivalent of flagging an address as old\"\n }\n ]\n }\n ],\n \"unmapped\": {\n \"mode\": \"fixed\",\n \"code\": \"temp\",\n \"display\": \"temp\"\n }\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/ConceptMap/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ConceptMap", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ConceptMapById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ConceptMap/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ConceptMap", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ConceptMap_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ConceptMap\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ch2\\u003eFHIR-v3-Address-Use (http://hl7.org/fhir/ConceptMap/101)\\u003c/h2\\u003e\\n \\u003cp\\u003eMapping from \\n \\u003ca href\\u003d\\\"valueset-address-use.html\\\"\\u003ehttp://hl7.org/fhir/ValueSet/address-use\\u003c/a\\u003e to \\n \\u003ca href\\u003d\\\"v3/AddressUse/vs.html\\\"\\u003ehttp://terminology.hl7.org/ValueSet/v3-AddressUse\\u003c/a\\u003e\\n \\u003c/p\\u003e\\n \\u003cp\\u003eDRAFT (not intended for production usage). Published on 13/06/2012 by HL7, Inc (FHIR project team (example): \\n \\u003ca href\\u003d\\\"http://hl7.org/fhir\\\"\\u003ehttp://hl7.org/fhir\\u003c/a\\u003e). Creative Commons 0\\n \\u003c/p\\u003e\\n \\u003cdiv\\u003e\\n \\u003cp\\u003eA mapping between the FHIR and HL7 v3 AddressUse Code systems\\u003c/p\\u003e\\n\\n \\u003c/div\\u003e\\n \\u003cbr/\\u003e\\n \\u003ctable class\\u003d\\\"grid\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eSource Code\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eEquivalence\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDestination Code\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eComment\\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003ehome\\u003c/td\\u003e\\n \\u003ctd\\u003eequivalent\\u003c/td\\u003e\\n \\u003ctd\\u003eH (home address)\\u003c/td\\u003e\\n \\u003ctd/\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003ework\\u003c/td\\u003e\\n \\u003ctd\\u003eequivalent\\u003c/td\\u003e\\n \\u003ctd\\u003eWP (work place)\\u003c/td\\u003e\\n \\u003ctd/\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003etemp (Temporary)\\u003c/td\\u003e\\n \\u003ctd\\u003eequivalent\\u003c/td\\u003e\\n \\u003ctd\\u003eTMP (temporary address)\\u003c/td\\u003e\\n \\u003ctd/\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eold (Old / Incorrect)\\u003c/td\\u003e\\n \\u003ctd\\u003edisjoint\\u003c/td\\u003e\\n \\u003ctd\\u003eBAD (bad address)\\u003c/td\\u003e\\n \\u003ctd\\u003eIn the HL7 v3 AD, old is handled by the usablePeriod element, but you have to provide a time, there\\u0027s no simple equivalent of flagging an address as old\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/ConceptMap/101\",\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:uuid:53cd62ee-033e-414c-9f58-3ca97b5ffc3b\"\n },\n \"version\": \"4.0.1\",\n \"name\": \"FHIR-v3-Address-Use\",\n \"title\": \"FHIR/v3 Address Use Mapping\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2012-06-13\",\n \"publisher\": \"HL7, Inc\",\n \"contact\": [\n {\n \"name\": \"FHIR project team (example)\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"A mapping between the FHIR and HL7 v3 AddressUse Code systems\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"venue\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"for CCDA Usage\"\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"To help implementers map from HL7 v3/CDA to FHIR\",\n \"copyright\": \"Creative Commons 0\",\n \"sourceUri\": \"http://hl7.org/fhir/ValueSet/address-use\",\n \"targetUri\": \"http://terminology.hl7.org/ValueSet/v3-AddressUse\",\n \"group\": [\n {\n \"source\": \"http://hl7.org/fhir/address-use\",\n \"target\": \"http://terminology.hl7.org/CodeSystem/v3-AddressUse\",\n \"element\": [\n {\n \"code\": \"home\",\n \"display\": \"home\",\n \"target\": [\n {\n \"code\": \"H\",\n \"display\": \"home\",\n \"equivalence\": \"equivalent\"\n }\n ]\n },\n {\n \"code\": \"work\",\n \"display\": \"work\",\n \"target\": [\n {\n \"code\": \"WP\",\n \"display\": \"work place\",\n \"equivalence\": \"equivalent\"\n }\n ]\n },\n {\n \"code\": \"temp\",\n \"display\": \"temp\",\n \"target\": [\n {\n \"code\": \"TMP\",\n \"display\": \"temporary address\",\n \"equivalence\": \"equivalent\"\n }\n ]\n },\n {\n \"code\": \"old\",\n \"display\": \"old\",\n \"target\": [\n {\n \"code\": \"BAD\",\n \"display\": \"bad address\",\n \"equivalence\": \"disjoint\",\n \"comment\": \"In the HL7 v3 AD, old is handled by the usablePeriod element, but you have to provide a time, there\\u0027s no simple equivalent of flagging an address as old\"\n }\n ]\n }\n ],\n \"unmapped\": {\n \"mode\": \"fixed\",\n \"code\": \"temp\",\n \"display\": \"temp\"\n }\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/ConceptMap", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ConceptMap" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ConceptMap_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ConceptMap?source=&source-uri=&target=&target-uri=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&dependson=&description=&identifier=&jurisdiction=&name=&other=&product=&publisher=&source-code=&source-system=&status=&target-code=&target-system=&title=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ConceptMap" + ], + "query": [ + { + "key": "source", + "value": "", + "description": "Identifies the source of the concepts which are being mapped" + }, + { + "key": "source-uri", + "value": "", + "description": "Identifies the source of the concepts which are being mapped" + }, + { + "key": "target", + "value": "", + "description": "Provides context to the mappings" + }, + { + "key": "target-uri", + "value": "", + "description": "Provides context to the mappings" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "The concept map publication date" + }, + { + "key": "dependson", + "value": "", + "description": "Reference to property mapping depends on" + }, + { + "key": "description", + "value": "", + "description": "The description of the concept map" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the concept map" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the concept map" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the concept map" + }, + { + "key": "other", + "value": "", + "description": "Canonical URL for other concept map" + }, + { + "key": "product", + "value": "", + "description": "Reference to property mapping depends on" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the concept map" + }, + { + "key": "source-code", + "value": "", + "description": "Identifies element being mapped" + }, + { + "key": "source-system", + "value": "", + "description": "Code System (if value set crosses code systems)" + }, + { + "key": "status", + "value": "", + "description": "The current status of the concept map" + }, + { + "key": "target-code", + "value": "", + "description": "Code that identifies the target element" + }, + { + "key": "target-system", + "value": "", + "description": "System of the target (if necessary)" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the concept map" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the concept map" + }, + { + "key": "version", + "value": "", + "description": "The business version of the concept map" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ConceptMapHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ConceptMap/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ConceptMap", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Condition", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ConditionHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Condition/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Condition", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ConditionHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Condition/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Condition", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ConditionById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Condition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Condition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ConditionById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Condition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eSevere burn of left ear (Date: 24-May 2012)\\u003c/div\\u003e\"\n },\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n \"code\": \"confirmed\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"439401001\",\n \"display\": \"Diagnosis\"\n }\n ]\n }\n ],\n \"severity\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"24484000\",\n \"display\": \"Severe\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"39065001\",\n \"display\": \"Burn of ear\"\n }\n ],\n \"text\": \"Burnt Ear\"\n },\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"49521004\",\n \"display\": \"Left external ear structure\"\n }\n ],\n \"text\": \"Left Ear\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"onsetDateTime\": \"2012-05-24\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Condition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Condition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ConditionById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Condition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Condition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Condition_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Condition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eSevere burn of left ear (Date: 24-May 2012)\\u003c/div\\u003e\"\n },\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n \"code\": \"confirmed\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"439401001\",\n \"display\": \"Diagnosis\"\n }\n ]\n }\n ],\n \"severity\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"24484000\",\n \"display\": \"Severe\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"39065001\",\n \"display\": \"Burn of ear\"\n }\n ],\n \"text\": \"Burnt Ear\"\n },\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"49521004\",\n \"display\": \"Left external ear structure\"\n }\n ],\n \"text\": \"Left Ear\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"onsetDateTime\": \"2012-05-24\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Condition", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Condition" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Condition_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Condition?patient=&asserter=&context=&encounter=&evidence-detail=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&abatement-age=&abatement-boolean=&abatement-date=&abatement-string=&asserted-date=&body-site=&category=&clinical-status=&evidence=&onset-age=&onset-date=&onset-info=&severity=&stage=&verification-status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Condition" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "asserter", + "value": "", + "description": "Person who asserts this condition" + }, + { + "key": "context", + "value": "", + "description": "Encounter or episode when condition first asserted" + }, + { + "key": "encounter", + "value": "", + "description": "Encounter when condition first asserted" + }, + { + "key": "evidence-detail", + "value": "", + "description": "Supporting information found elsewhere" + }, + { + "key": "subject", + "value": "", + "description": "Who has the condition?" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "abatement-age", + "value": "", + "description": "Abatement as age or age range" + }, + { + "key": "abatement-boolean", + "value": "", + "description": "Abatement boolean (boolean is true or non-boolean values are present)" + }, + { + "key": "abatement-date", + "value": "", + "description": "Date-related abatements (dateTime and period)" + }, + { + "key": "abatement-string", + "value": "", + "description": "Abatement as a string" + }, + { + "key": "asserted-date", + "value": "", + "description": "Date record was believed accurate" + }, + { + "key": "body-site", + "value": "", + "description": "Anatomical location, if relevant" + }, + { + "key": "category", + "value": "", + "description": "The category of the condition" + }, + { + "key": "clinical-status", + "value": "", + "description": "The clinical status of the condition" + }, + { + "key": "evidence", + "value": "", + "description": "Manifestation/symptom" + }, + { + "key": "onset-age", + "value": "", + "description": "Onsets as age or age range" + }, + { + "key": "onset-date", + "value": "", + "description": "Date related onsets (dateTime and Period)" + }, + { + "key": "onset-info", + "value": "", + "description": "Onsets as a string" + }, + { + "key": "severity", + "value": "", + "description": "The severity of the condition" + }, + { + "key": "stage", + "value": "", + "description": "Simple summary (disease specific)" + }, + { + "key": "verification-status", + "value": "", + "description": "provisional | differential | confirmed | refuted | entered-in-error | unknown" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ConditionHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Condition/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Condition", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Consent", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ConsentHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Consent/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Consent", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ConsentHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Consent/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Consent", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ConsentById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Consent/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Consent", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ConsentById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Consent\",\n \"id\": \"consent-example-basic\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003e\\n\\tAuthorize Normal access for Treatment\\n\\t\\t\\t\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003e\\n Patient \\u0026quot;P. van de Heuvel\\u0026quot; wishes to have all of the PHI collected at the Good Health Psychiatric Hospital \\n available for normal treatment use.\\n\\t\\t\\t\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"status\": \"active\",\n \"scope\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/consentscope\",\n \"code\": \"patient-privacy\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"59284-0\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/f001\",\n \"display\": \"P. van de Heuvel\"\n },\n \"dateTime\": \"2016-05-11\",\n \"organization\": [\n {\n \"reference\": \"Organization/f001\"\n }\n ],\n \"sourceAttachment\": {\n \"title\": \"The terms of the consent in lawyer speak.\"\n },\n \"policyRule\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"OPTIN\"\n }\n ]\n },\n \"provision\": {\n \"period\": {\n \"start\": \"1964-01-01\",\n \"end\": \"2016-01-01\"\n }\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Consent/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Consent", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ConsentById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Consent/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Consent", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Consent_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Consent\",\n \"id\": \"consent-example-basic\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003e\\n\\tAuthorize Normal access for Treatment\\n\\t\\t\\t\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003e\\n Patient \\u0026quot;P. van de Heuvel\\u0026quot; wishes to have all of the PHI collected at the Good Health Psychiatric Hospital \\n available for normal treatment use.\\n\\t\\t\\t\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"status\": \"active\",\n \"scope\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/consentscope\",\n \"code\": \"patient-privacy\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"59284-0\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/f001\",\n \"display\": \"P. van de Heuvel\"\n },\n \"dateTime\": \"2016-05-11\",\n \"organization\": [\n {\n \"reference\": \"Organization/f001\"\n }\n ],\n \"sourceAttachment\": {\n \"title\": \"The terms of the consent in lawyer speak.\"\n },\n \"policyRule\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"OPTIN\"\n }\n ]\n },\n \"provision\": {\n \"period\": {\n \"start\": \"1964-01-01\",\n \"end\": \"2016-01-01\"\n }\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Consent", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Consent" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Consent_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Consent?patient=&actor=&consentor=&data=&organization=&source=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&action=&category=&period=&purpose=&securitylabel=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Consent" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "actor", + "value": "", + "description": "Resource for the actor (or group, by role)" + }, + { + "key": "consentor", + "value": "", + "description": "Who is agreeing to the policy and exceptions" + }, + { + "key": "data", + "value": "", + "description": "The actual data reference" + }, + { + "key": "organization", + "value": "", + "description": "Custodian of the consent" + }, + { + "key": "source", + "value": "", + "description": "Source from which this consent is taken" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "action", + "value": "", + "description": "Actions controlled by this consent" + }, + { + "key": "category", + "value": "", + "description": "Classification of the consent statement - for indexing/retrieval" + }, + { + "key": "period", + "value": "", + "description": "Period that this consent applies" + }, + { + "key": "purpose", + "value": "", + "description": "Context of activities for which the agreement is made" + }, + { + "key": "securitylabel", + "value": "", + "description": "Security Labels that define affected resources" + }, + { + "key": "status", + "value": "", + "description": "draft | proposed | active | rejected | inactive | entered-in-error" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ConsentHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Consent/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Consent", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Contract", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ContractHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Contract/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Contract", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ContractHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Contract/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Contract", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ContractById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Contract/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Contract", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ContractById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Contract\",\n \"id\": \"C-123\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the contract\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://happyvalley.com/contract\",\n \"value\": \"12347\"\n }\n ],\n \"term\": [\n {\n \"offer\": {\n \"text\": \"Can\\u0027t refuse\"\n },\n \"asset\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"code\": \"RicardianContract\"\n }\n ]\n }\n ],\n \"subtype\": [\n {\n \"text\": \"sample\"\n }\n ],\n \"period\": [\n {\n \"start\": \"2017-06-01\"\n }\n ],\n \"valuedItem\": [\n {\n \"entityCodeableConcept\": {\n \"text\": \"Ford Bobcat\"\n },\n \"identifier\": {\n \"system\": \"http://somewhere.motor-vehicle.com/vin\",\n \"value\": \"XXSVT34-7665t952236\"\n },\n \"effectiveTime\": \"1995\",\n \"quantity\": {\n \"value\": 1\n },\n \"unitPrice\": {\n \"value\": 200.00,\n \"currency\": \"CAD\"\n },\n \"factor\": 1.0,\n \"points\": 1.0,\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"CAD\"\n }\n }\n ]\n }\n ]\n }\n ],\n \"rule\": [\n {\n \"contentAttachment\": {\n \"contentType\": \"application/txt\",\n \"url\": \"http://www.rfc-editor.org/bcp/bcp13.txt\"\n }\n }\n ],\n \"legallyBindingAttachment\": {\n \"contentType\": \"application/pdf\",\n \"url\": \"http://www.aws3.com/storage/doc.pdf\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Contract/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Contract", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ContractById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Contract/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Contract", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Contract_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Contract\",\n \"id\": \"C-123\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the contract\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://happyvalley.com/contract\",\n \"value\": \"12347\"\n }\n ],\n \"term\": [\n {\n \"offer\": {\n \"text\": \"Can\\u0027t refuse\"\n },\n \"asset\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"code\": \"RicardianContract\"\n }\n ]\n }\n ],\n \"subtype\": [\n {\n \"text\": \"sample\"\n }\n ],\n \"period\": [\n {\n \"start\": \"2017-06-01\"\n }\n ],\n \"valuedItem\": [\n {\n \"entityCodeableConcept\": {\n \"text\": \"Ford Bobcat\"\n },\n \"identifier\": {\n \"system\": \"http://somewhere.motor-vehicle.com/vin\",\n \"value\": \"XXSVT34-7665t952236\"\n },\n \"effectiveTime\": \"1995\",\n \"quantity\": {\n \"value\": 1\n },\n \"unitPrice\": {\n \"value\": 200.00,\n \"currency\": \"CAD\"\n },\n \"factor\": 1.0,\n \"points\": 1.0,\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"CAD\"\n }\n }\n ]\n }\n ]\n }\n ],\n \"rule\": [\n {\n \"contentAttachment\": {\n \"contentType\": \"application/txt\",\n \"url\": \"http://www.rfc-editor.org/bcp/bcp13.txt\"\n }\n }\n ],\n \"legallyBindingAttachment\": {\n \"contentType\": \"application/pdf\",\n \"url\": \"http://www.aws3.com/storage/doc.pdf\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Contract", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Contract" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Contract_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Contract?agent=&authority=&domain=&patient=&signer=&subject=&term-topic=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&issued=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Contract" + ], + "query": [ + { + "key": "agent", + "value": "", + "description": "Agent to the Contact" + }, + { + "key": "authority", + "value": "", + "description": "The authority of the contract" + }, + { + "key": "domain", + "value": "", + "description": "The domain of the contract" + }, + { + "key": "patient", + "value": "", + "description": "The identity of the subject of the contract (if a patient)" + }, + { + "key": "signer", + "value": "", + "description": "Contract Signatory Party" + }, + { + "key": "subject", + "value": "", + "description": "The identity of the subject of the contract" + }, + { + "key": "term-topic", + "value": "", + "description": "The identity of the topic of the contract terms" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "The identity of the contract" + }, + { + "key": "issued", + "value": "", + "description": "The date/time the contract was issued" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ContractHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Contract/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Contract", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Coverage", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "CoverageHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Coverage/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Coverage", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CoverageHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Coverage/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Coverage", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "CoverageById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Coverage/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Coverage", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CoverageById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Coverage\",\n \"id\": \"9876B1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the coverage\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://benefitsinc.com/certificate\",\n \"value\": \"12345\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EHCPOL\",\n \"display\": \"extended healthcare\"\n }\n ]\n },\n \"policyHolder\": {\n \"reference\": \"http://benefitsinc.com/FHIR/Organization/CBI35\"\n },\n \"subscriber\": {\n \"reference\": \"Patient/4\"\n },\n \"beneficiary\": {\n \"reference\": \"Patient/4\"\n },\n \"dependent\": \"0\",\n \"relationship\": {\n \"coding\": [\n {\n \"code\": \"self\"\n }\n ]\n },\n \"period\": {\n \"start\": \"2011-05-23\",\n \"end\": \"2012-05-23\"\n },\n \"payor\": [\n {\n \"reference\": \"Organization/2\"\n }\n ],\n \"class\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"group\"\n }\n ]\n },\n \"value\": \"CB135\",\n \"name\": \"Corporate Baker\\u0027s Inc. Local #35\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"subgroup\"\n }\n ]\n },\n \"value\": \"123\",\n \"name\": \"Trainee Part-time Benefits\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"plan\"\n }\n ]\n },\n \"value\": \"B37FC\",\n \"name\": \"Full Coverage: Medical, Dental, Pharmacy, Vision, EHC\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"subplan\"\n }\n ]\n },\n \"value\": \"P7\",\n \"name\": \"Includes afterlife benefits\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"class\"\n }\n ]\n },\n \"value\": \"SILVER\",\n \"name\": \"Silver: Family Plan spouse only\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"subclass\"\n }\n ]\n },\n \"value\": \"Tier2\",\n \"name\": \"Low deductable, max $20 copay\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"sequence\"\n }\n ]\n },\n \"value\": \"9\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxid\"\n }\n ]\n },\n \"value\": \"MDF12345\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxbin\"\n }\n ]\n },\n \"value\": \"987654\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxgroup\"\n }\n ]\n },\n \"value\": \"M35PT\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxpcn\"\n }\n ]\n },\n \"value\": \"234516\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"sequence\"\n }\n ]\n },\n \"value\": \"9\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Coverage/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Coverage", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CoverageById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Coverage/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Coverage", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Coverage_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Coverage\",\n \"id\": \"9876B1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the coverage\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://benefitsinc.com/certificate\",\n \"value\": \"12345\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EHCPOL\",\n \"display\": \"extended healthcare\"\n }\n ]\n },\n \"policyHolder\": {\n \"reference\": \"http://benefitsinc.com/FHIR/Organization/CBI35\"\n },\n \"subscriber\": {\n \"reference\": \"Patient/4\"\n },\n \"beneficiary\": {\n \"reference\": \"Patient/4\"\n },\n \"dependent\": \"0\",\n \"relationship\": {\n \"coding\": [\n {\n \"code\": \"self\"\n }\n ]\n },\n \"period\": {\n \"start\": \"2011-05-23\",\n \"end\": \"2012-05-23\"\n },\n \"payor\": [\n {\n \"reference\": \"Organization/2\"\n }\n ],\n \"class\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"group\"\n }\n ]\n },\n \"value\": \"CB135\",\n \"name\": \"Corporate Baker\\u0027s Inc. Local #35\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"subgroup\"\n }\n ]\n },\n \"value\": \"123\",\n \"name\": \"Trainee Part-time Benefits\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"plan\"\n }\n ]\n },\n \"value\": \"B37FC\",\n \"name\": \"Full Coverage: Medical, Dental, Pharmacy, Vision, EHC\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"subplan\"\n }\n ]\n },\n \"value\": \"P7\",\n \"name\": \"Includes afterlife benefits\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"class\"\n }\n ]\n },\n \"value\": \"SILVER\",\n \"name\": \"Silver: Family Plan spouse only\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"subclass\"\n }\n ]\n },\n \"value\": \"Tier2\",\n \"name\": \"Low deductable, max $20 copay\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"sequence\"\n }\n ]\n },\n \"value\": \"9\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxid\"\n }\n ]\n },\n \"value\": \"MDF12345\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxbin\"\n }\n ]\n },\n \"value\": \"987654\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxgroup\"\n }\n ]\n },\n \"value\": \"M35PT\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"rxpcn\"\n }\n ]\n },\n \"value\": \"234516\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\",\n \"code\": \"sequence\"\n }\n ]\n },\n \"value\": \"9\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Coverage", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Coverage" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Coverage_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Coverage?beneficiary=&payor=&policy-holder=&subscriber=&_id=&_lastUpdated=&_profile=&_security=&_tag=&class=&dependent=&group=&identifier=&plan=&sequence=&subclass=&subgroup=&subplan=&type=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Coverage" + ], + "query": [ + { + "key": "beneficiary", + "value": "", + "description": "Covered party" + }, + { + "key": "payor", + "value": "", + "description": "The identity of the insurer or party paying for services" + }, + { + "key": "policy-holder", + "value": "", + "description": "Reference to the policyholder" + }, + { + "key": "subscriber", + "value": "", + "description": "Reference to the subscriber" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "class", + "value": "", + "description": "Class identifier" + }, + { + "key": "dependent", + "value": "", + "description": "Dependent number" + }, + { + "key": "group", + "value": "", + "description": "Group identifier" + }, + { + "key": "identifier", + "value": "", + "description": "The primary identifier of the insured and the coverage" + }, + { + "key": "plan", + "value": "", + "description": "A plan or policy identifier" + }, + { + "key": "sequence", + "value": "", + "description": "Sequence number" + }, + { + "key": "subclass", + "value": "", + "description": "Sub-class identifier" + }, + { + "key": "subgroup", + "value": "", + "description": "Sub-group identifier" + }, + { + "key": "subplan", + "value": "", + "description": "Sub-plan identifier" + }, + { + "key": "type", + "value": "", + "description": "The kind of coverage (health plan, auto, Workers Compensation)" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "CoverageHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Coverage/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Coverage", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Data Element", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "DataElementHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DataElement/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DataElement", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DataElementHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DataElement/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DataElement", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DataElementById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DataElement/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DataElement", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DataElementById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"contained\": [\n {\n \"resourceType\": \"\",\n \"id\": \"\",\n \"url\": \"\",\n \"version\": \"\",\n \"name\": \"\",\n \"status\": \"\",\n \"description\": \"\",\n \"compose\": {\n \"include\": [\n {\n \"system\": \"\",\n \"concept\": [\n {\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"value\": \"\"\n }\n ],\n \"version\": \"\",\n \"status\": \"\",\n \"publisher\": \"\",\n \"name\": \"\",\n \"useContext\": [\n {\n \"coding\": [\n {\n \"system\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"element\": [\n {\n \"path\": \"\",\n \"definition\": \"\",\n \"maxLength\": \"\",\n \"extension\": [\n {\n \"url\": \"\",\n \"valueInteger\": \"\"\n }\n ],\n \"type\": [\n {\n \"code\": \"\"\n }\n ],\n \"binding\": {\n \"strength\": \"\",\n \"valueSetReference\": {\n \"extension\": [\n {\n \"value\": \"\"\n }\n ],\n \"reference\": \"\"\n }\n }\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/DataElement/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DataElement", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DataElementById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DataElement/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DataElement", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DataElement_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"contained\": [\n {\n \"resourceType\": \"\",\n \"id\": \"\",\n \"url\": \"\",\n \"version\": \"\",\n \"name\": \"\",\n \"status\": \"\",\n \"description\": \"\",\n \"compose\": {\n \"include\": [\n {\n \"system\": \"\",\n \"concept\": [\n {\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"value\": \"\"\n }\n ],\n \"version\": \"\",\n \"status\": \"\",\n \"publisher\": \"\",\n \"name\": \"\",\n \"useContext\": [\n {\n \"coding\": [\n {\n \"system\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"element\": [\n {\n \"path\": \"\",\n \"definition\": \"\",\n \"maxLength\": \"\",\n \"extension\": [\n {\n \"url\": \"\",\n \"valueInteger\": \"\"\n }\n ],\n \"type\": [\n {\n \"code\": \"\"\n }\n ],\n \"binding\": {\n \"strength\": \"\",\n \"valueSetReference\": {\n \"extension\": [\n {\n \"value\": \"\"\n }\n ],\n \"reference\": \"\"\n }\n }\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/DataElement", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DataElement" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DataElement_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DataElement?_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&description=&identifier=&jurisdiction=&name=&publisher=&status=&stringency=&title=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DataElement" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "A code for the data element (server may choose to do subsumption)" + }, + { + "key": "date", + "value": "", + "description": "The data element publication date" + }, + { + "key": "description", + "value": "", + "description": "Text search in the description of the data element. This corresponds to the definition of the first DataElement.element." + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the data element" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the data element" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the data element" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the data element" + }, + { + "key": "status", + "value": "", + "description": "The current status of the data element" + }, + { + "key": "stringency", + "value": "", + "description": "The stringency of the data element definition" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the data element" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the data element" + }, + { + "key": "version", + "value": "", + "description": "The business version of the data element" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DataElementHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DataElement/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DataElement", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Detected Issue", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "DetectedIssueHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DetectedIssue/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DetectedIssue", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DetectedIssueHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DetectedIssue/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DetectedIssue", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DetectedIssueById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DetectedIssue/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DetectedIssue", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DetectedIssueById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"DetectedIssue\",\n \"id\": \"ddi\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eSeverity: High\\u003c/b\\u003e - Risk of internal bleeding\\u003c/p\\u003e\\n \\u003cp\\u003eThose who take acetaminophen along with the widely used blood-thinning drug warfarin may face the risk of serious internal bleeding. People on warfarin who take acetaminophen for at least seven days in a row should be closely watched for bleeding.\\u003c/p\\u003e\\n \\u003cul\\u003e\\n \\u003cli\\u003e\\u003ca href\\u003d\\\"MedicationStatement/tylenol\\\"\\u003e500 mg Acetaminophen tablet 1/day, PRN since 2010\\u003c/a\\u003e\\u003c/li\\u003e\\n \\u003cli\\u003e\\u003ca href\\u003d\\\"MedicationRequest/warfarin\\\"\\u003eWarfarin 1 MG TAB prescribed Jan. 5, 2014\\u003c/a\\u003e\\u003c/li\\u003e\\n \\u003c/ul\\u003e\\n \\u003cp\\u003eMitigation: Jan 5, 2014 by Dr. Adam Careful: \\u003c/p\\u003e\\n \\u003cp\\u003eAsked patient to discontinue regular use of Tylenol and to consult with clinician if they need to resume to allow appropriate INR monitoring\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"DRG\",\n \"display\": \"Drug Interaction Alert\"\n }\n ]\n },\n \"severity\": \"high\",\n \"identifiedDateTime\": \"2014-01-05\",\n \"author\": {\n \"reference\": \"Device/software\"\n },\n \"implicated\": [\n {\n \"reference\": \"MedicationStatement/example001\",\n \"display\": \"500 mg Acetaminophen tablet 1/day, PRN since 2010\"\n },\n {\n \"reference\": \"MedicationRequest/medrx0331\",\n \"display\": \"Warfarin 1 MG TAB prescribed Jan. 15, 2015\"\n }\n ],\n \"detail\": \"Risk of internal bleeding. Those who take acetaminophen along with the widely used blood-thinning drug warfarin may face the risk of serious internal bleeding. People on warfarin who take acetaminophen for at least seven days in a row should be closely watched for bleeding.\",\n \"mitigation\": [\n {\n \"action\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"13\",\n \"display\": \"Stopped Concurrent Therapy\"\n }\n ],\n \"text\": \"Asked patient to discontinue regular use of Tylenol and to consult with clinician if they need to resume to allow appropriate INR monitoring\"\n },\n \"date\": \"2014-01-05\",\n \"author\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr. Adam Careful\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DetectedIssue/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DetectedIssue", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DetectedIssueById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DetectedIssue/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DetectedIssue", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DetectedIssue_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"DetectedIssue\",\n \"id\": \"ddi\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eSeverity: High\\u003c/b\\u003e - Risk of internal bleeding\\u003c/p\\u003e\\n \\u003cp\\u003eThose who take acetaminophen along with the widely used blood-thinning drug warfarin may face the risk of serious internal bleeding. People on warfarin who take acetaminophen for at least seven days in a row should be closely watched for bleeding.\\u003c/p\\u003e\\n \\u003cul\\u003e\\n \\u003cli\\u003e\\u003ca href\\u003d\\\"MedicationStatement/tylenol\\\"\\u003e500 mg Acetaminophen tablet 1/day, PRN since 2010\\u003c/a\\u003e\\u003c/li\\u003e\\n \\u003cli\\u003e\\u003ca href\\u003d\\\"MedicationRequest/warfarin\\\"\\u003eWarfarin 1 MG TAB prescribed Jan. 5, 2014\\u003c/a\\u003e\\u003c/li\\u003e\\n \\u003c/ul\\u003e\\n \\u003cp\\u003eMitigation: Jan 5, 2014 by Dr. Adam Careful: \\u003c/p\\u003e\\n \\u003cp\\u003eAsked patient to discontinue regular use of Tylenol and to consult with clinician if they need to resume to allow appropriate INR monitoring\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"DRG\",\n \"display\": \"Drug Interaction Alert\"\n }\n ]\n },\n \"severity\": \"high\",\n \"identifiedDateTime\": \"2014-01-05\",\n \"author\": {\n \"reference\": \"Device/software\"\n },\n \"implicated\": [\n {\n \"reference\": \"MedicationStatement/example001\",\n \"display\": \"500 mg Acetaminophen tablet 1/day, PRN since 2010\"\n },\n {\n \"reference\": \"MedicationRequest/medrx0331\",\n \"display\": \"Warfarin 1 MG TAB prescribed Jan. 15, 2015\"\n }\n ],\n \"detail\": \"Risk of internal bleeding. Those who take acetaminophen along with the widely used blood-thinning drug warfarin may face the risk of serious internal bleeding. People on warfarin who take acetaminophen for at least seven days in a row should be closely watched for bleeding.\",\n \"mitigation\": [\n {\n \"action\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"13\",\n \"display\": \"Stopped Concurrent Therapy\"\n }\n ],\n \"text\": \"Asked patient to discontinue regular use of Tylenol and to consult with clinician if they need to resume to allow appropriate INR monitoring\"\n },\n \"date\": \"2014-01-05\",\n \"author\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr. Adam Careful\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DetectedIssue", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DetectedIssue" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DetectedIssue_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DetectedIssue?patient=&author=&implicated=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&category=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DetectedIssue" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "author", + "value": "", + "description": "The provider or device that identified the issue" + }, + { + "key": "implicated", + "value": "", + "description": "Problem resource" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "category", + "value": "", + "description": "Issue Category, e.g. drug-drug, duplicate therapy, etc." + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DetectedIssueHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DetectedIssue/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DetectedIssue", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Device", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "DeviceHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Device/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Device", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Device/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Device", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DeviceById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Device/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Device", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Device\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 345675\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://goodcare.org/devices/id\",\n \"value\": \"345675\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Device/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Device", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Device/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Device", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Device_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Device\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 345675\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://goodcare.org/devices/id\",\n \"value\": \"345675\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Device", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Device" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Device_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Device?location=&organization=&patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&device-name=&identifier=&manufacturer=&model=&status=&type=&udi-carrier=&udi-di=&url=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Device" + ], + "query": [ + { + "key": "location", + "value": "", + "description": "A location, where the resource is found" + }, + { + "key": "organization", + "value": "", + "description": "The organization responsible for the device" + }, + { + "key": "patient", + "value": "", + "description": "Patient information, if the resource is affixed to a person" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "device-name", + "value": "", + "description": "A server defined search that may match any of the string fields in the Device.udi.name or Device.type.coding.display or Device.type.text" + }, + { + "key": "identifier", + "value": "", + "description": "Instance id from manufacturer, owner, and others" + }, + { + "key": "manufacturer", + "value": "", + "description": "The manufacturer of the device" + }, + { + "key": "model", + "value": "", + "description": "The model of the device" + }, + { + "key": "status", + "value": "", + "description": "active | inactive | entered-in-error | unknown" + }, + { + "key": "type", + "value": "", + "description": "The type of the device" + }, + { + "key": "udi-carrier", + "value": "", + "description": "UDI Barcode (RFID or other technology) string either in HRF format or AIDC format converted to base64 string." + }, + { + "key": "udi-di", + "value": "", + "description": "The udi Device Identifier (DI)" + }, + { + "key": "url", + "value": "", + "description": "Network address to contact device" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Device/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Device", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Device Component", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "DeviceComponentHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceComponent/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceComponent", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceComponentHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceComponent/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceComponent", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DeviceComponentById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceComponent/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceComponent", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceComponentById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"_id\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n },\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"contained\": [\n {\n \"resourceType\": \"\",\n \"id\": \"\",\n \"manufacturer\": \"\",\n \"model\": \"\",\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\",\n \"type\": {\n \"text\": \"\"\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"identifier\": {\n \"type\": {\n \"text\": \"\"\n },\n \"value\": \"\"\n },\n \"lastSystemChange\": \"\",\n \"source\": {\n \"reference\": \"\"\n },\n \"operationalStatus\": [\n {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"languageCode\": {\n \"coding\": [\n {\n \"system\": {\n \"value\": \"\"\n },\n \"code\": {\n \"value\": \"\"\n }\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DeviceComponent/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceComponent", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceComponentById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceComponent/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceComponent", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DeviceComponent_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"_id\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n },\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"contained\": [\n {\n \"resourceType\": \"\",\n \"id\": \"\",\n \"manufacturer\": \"\",\n \"model\": \"\",\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\",\n \"type\": {\n \"text\": \"\"\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"identifier\": {\n \"type\": {\n \"text\": \"\"\n },\n \"value\": \"\"\n },\n \"lastSystemChange\": \"\",\n \"source\": {\n \"reference\": \"\"\n },\n \"operationalStatus\": [\n {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"languageCode\": {\n \"coding\": [\n {\n \"system\": {\n \"value\": \"\"\n },\n \"code\": {\n \"value\": \"\"\n }\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DeviceComponent", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceComponent" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceComponent_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceComponent?parent=&source=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&type=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceComponent" + ], + "query": [ + { + "key": "parent", + "value": "", + "description": "The parent DeviceComponent resource" + }, + { + "key": "source", + "value": "", + "description": "The device source" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "The identifier of the component" + }, + { + "key": "type", + "value": "", + "description": "The device component type" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceComponentHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceComponent/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceComponent", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Device Metric", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "DeviceMetricHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceMetric/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceMetric", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceMetricHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceMetric/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceMetric", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DeviceMetricById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceMetric/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceMetric", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceMetricById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"DeviceMetric\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 345675\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: MDC_PULS_OXIM_SAT_O2 \\u003cspan\\u003e(Details : {urn:iso:std:iso:11073:10101 code \\u0027150456\\u0027 \\u003d \\u0027150456\\u0027, given as \\u0027MDC_PULS_OXIM_SAT_O2\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eunit\\u003c/b\\u003e: MDC_DIM_PERCENT \\u003cspan\\u003e(Details : {urn:iso:std:iso:11073:10101 code \\u0027262688\\u0027 \\u003d \\u0027262688\\u0027, given as \\u0027MDC_DIM_PERCENT\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esource\\u003c/b\\u003e: \\u003ca\\u003eDevice/dev1\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparent\\u003c/b\\u003e: \\u003ca\\u003eDeviceDefinition/dc102\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoperationalStatus\\u003c/b\\u003e: on\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecolor\\u003c/b\\u003e: blue\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: measurement\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emeasurementPeriod\\u003c/b\\u003e: Do Once per 1 seconds\\u003c/p\\u003e\\u003ch3\\u003eCalibrations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eState\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTime\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etwo-point\\u003c/td\\u003e\\u003ctd\\u003ecalibrated\\u003c/td\\u003e\\u003ctd\\u003e28/12/2016 9:03:04 AM\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://goodcare.org/devicemetric/id\",\n \"value\": \"345675\"\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:11073:10101\",\n \"code\": \"150456\",\n \"display\": \"MDC_PULS_OXIM_SAT_O2\"\n }\n ]\n },\n \"unit\": {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:11073:10101\",\n \"code\": \"262688\",\n \"display\": \"MDC_DIM_PERCENT\"\n }\n ]\n },\n \"source\": {\n \"reference\": \"Device/dev1\"\n },\n \"parent\": {\n \"reference\": \"DeviceDefinition/dc102\"\n },\n \"operationalStatus\": \"on\",\n \"color\": \"blue\",\n \"category\": \"measurement\",\n \"measurementPeriod\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"s\"\n }\n },\n \"calibration\": [\n {\n \"type\": \"two-point\",\n \"state\": \"calibrated\",\n \"time\": \"2016-12-28T09:03:04-05:00\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DeviceMetric/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceMetric", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceMetricById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceMetric/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceMetric", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DeviceMetric_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"DeviceMetric\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 345675\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: MDC_PULS_OXIM_SAT_O2 \\u003cspan\\u003e(Details : {urn:iso:std:iso:11073:10101 code \\u0027150456\\u0027 \\u003d \\u0027150456\\u0027, given as \\u0027MDC_PULS_OXIM_SAT_O2\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eunit\\u003c/b\\u003e: MDC_DIM_PERCENT \\u003cspan\\u003e(Details : {urn:iso:std:iso:11073:10101 code \\u0027262688\\u0027 \\u003d \\u0027262688\\u0027, given as \\u0027MDC_DIM_PERCENT\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esource\\u003c/b\\u003e: \\u003ca\\u003eDevice/dev1\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparent\\u003c/b\\u003e: \\u003ca\\u003eDeviceDefinition/dc102\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoperationalStatus\\u003c/b\\u003e: on\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecolor\\u003c/b\\u003e: blue\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: measurement\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emeasurementPeriod\\u003c/b\\u003e: Do Once per 1 seconds\\u003c/p\\u003e\\u003ch3\\u003eCalibrations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eState\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTime\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etwo-point\\u003c/td\\u003e\\u003ctd\\u003ecalibrated\\u003c/td\\u003e\\u003ctd\\u003e28/12/2016 9:03:04 AM\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://goodcare.org/devicemetric/id\",\n \"value\": \"345675\"\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:11073:10101\",\n \"code\": \"150456\",\n \"display\": \"MDC_PULS_OXIM_SAT_O2\"\n }\n ]\n },\n \"unit\": {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:11073:10101\",\n \"code\": \"262688\",\n \"display\": \"MDC_DIM_PERCENT\"\n }\n ]\n },\n \"source\": {\n \"reference\": \"Device/dev1\"\n },\n \"parent\": {\n \"reference\": \"DeviceDefinition/dc102\"\n },\n \"operationalStatus\": \"on\",\n \"color\": \"blue\",\n \"category\": \"measurement\",\n \"measurementPeriod\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"s\"\n }\n },\n \"calibration\": [\n {\n \"type\": \"two-point\",\n \"state\": \"calibrated\",\n \"time\": \"2016-12-28T09:03:04-05:00\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DeviceMetric", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceMetric" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceMetric_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceMetric?parent=&source=&_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&identifier=&type=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceMetric" + ], + "query": [ + { + "key": "parent", + "value": "", + "description": "The parent DeviceMetric resource" + }, + { + "key": "source", + "value": "", + "description": "The device resource" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "category", + "value": "", + "description": "The category of the metric" + }, + { + "key": "identifier", + "value": "", + "description": "The identifier of the metric" + }, + { + "key": "type", + "value": "", + "description": "The component type" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceMetricHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceMetric/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceMetric", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Device Request", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "DeviceRequestHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceRequest/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceRequest", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceRequestHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceRequest/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceRequest", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DeviceRequestById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceRequestById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"DeviceRequest\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eintent\\u003c/b\\u003e: original-order\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: \\u003ca\\u003eDevice/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"intent\": \"original-order\",\n \"codeReference\": {\n \"reference\": \"Device/example\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DeviceRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceRequestById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DeviceRequest_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"DeviceRequest\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eintent\\u003c/b\\u003e: original-order\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: \\u003ca\\u003eDevice/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"intent\": \"original-order\",\n \"codeReference\": {\n \"reference\": \"Device/example\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DeviceRequest", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceRequest" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceRequest_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceRequest?patient=&encounter=&based-on=&definition=&device=&performer=&priorrequest=&requester=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&authored-on=&event-date=&group-identifier=&intent=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceRequest" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "encounter", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" + }, + { + "key": "based-on", + "value": "", + "description": "Plan/proposal/order fulfilled by this request" + }, + { + "key": "definition", + "value": "", + "description": "Protocol or definition followed by this request" + }, + { + "key": "device", + "value": "", + "description": "Reference to resource that is being requested/ordered" + }, + { + "key": "performer", + "value": "", + "description": "Desired performer for service" + }, + { + "key": "priorrequest", + "value": "", + "description": "Request takes the place of referenced completed or terminated requests" + }, + { + "key": "requester", + "value": "", + "description": "Who/what is requesting service" + }, + { + "key": "subject", + "value": "", + "description": "Individual the service is ordered for" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "authored-on", + "value": "", + "description": "When the request transitioned to being actionable" + }, + { + "key": "event-date", + "value": "", + "description": "When service should occur" + }, + { + "key": "group-identifier", + "value": "", + "description": "Composite request this is part of" + }, + { + "key": "intent", + "value": "", + "description": "proposal | plan | original-order |reflex-order" + }, + { + "key": "status", + "value": "", + "description": "entered-in-error | draft | active |suspended | completed" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceRequestHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceRequest/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceRequest", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Device Use Statement", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "DeviceUseStatementHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceUseStatement/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceUseStatement", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceUseStatementHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceUseStatement/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceUseStatement", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DeviceUseStatementById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceUseStatement/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceUseStatement", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceUseStatementById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"DeviceUseStatement\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 51ebb7a9-4e3a-4360-9a05-0cc2d869086f\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edevice\\u003c/b\\u003e: \\u003ca\\u003eDevice/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonReference\\u003c/b\\u003e: \\u003ca\\u003eAppendectomy (surgery)\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http:goodhealth.org/identifiers\",\n \"value\": \"51ebb7a9-4e3a-4360-9a05-0cc2d869086f\"\n }\n ],\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"device\": {\n \"reference\": \"Device/example\"\n },\n \"reasonReference\": [\n {\n \"reference\": \"Procedure/example\",\n \"display\": \"Appendectomy (surgery)\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DeviceUseStatement/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceUseStatement", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceUseStatementById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceUseStatement/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceUseStatement", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DeviceUseStatement_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"DeviceUseStatement\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 51ebb7a9-4e3a-4360-9a05-0cc2d869086f\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edevice\\u003c/b\\u003e: \\u003ca\\u003eDevice/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonReference\\u003c/b\\u003e: \\u003ca\\u003eAppendectomy (surgery)\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http:goodhealth.org/identifiers\",\n \"value\": \"51ebb7a9-4e3a-4360-9a05-0cc2d869086f\"\n }\n ],\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"device\": {\n \"reference\": \"Device/example\"\n },\n \"reasonReference\": [\n {\n \"reference\": \"Procedure/example\",\n \"display\": \"Appendectomy (surgery)\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DeviceUseStatement", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceUseStatement" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceUseStatement_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceUseStatement?patient=&device=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceUseStatement" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "device", + "value": "", + "description": "Search by device" + }, + { + "key": "subject", + "value": "", + "description": "Search by subject" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "Search by identifier" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DeviceUseStatementHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DeviceUseStatement/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DeviceUseStatement", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Diagnostic Report", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "DiagnosticReportHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DiagnosticReport/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DiagnosticReport", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DiagnosticReportHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DiagnosticReport/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DiagnosticReport", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DiagnosticReportById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DiagnosticReport/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DiagnosticReport", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DiagnosticReportById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Bundle\",\n \"id\": \"101\",\n \"type\": \"collection\",\n \"entry\": [\n {\n \"fullUrl\": \"https://example.com/base/DiagnosticReport/101\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"id\": \"101\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/workflow-codes\",\n \"code\": \"01\",\n \"display\": \"Needs Review\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ch3\\u003eCBC Report for Wile. E. COYOTE (MRN: 23453) issued 3-Mar 2011 11:45\\u003c/h3\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cpre\\u003e\\nTest Units Value Reference Range\\nHaemoglobin g/L 176 135 - 180\\nRed Cell Count x10*12/L 5.9 4.2 - 6.0\\nHaematocrit 0.55+ 0.38 - 0.52\\nMean Cell Volume fL 99+ 80 - 98\\nMean Cell Haemoglobin pg 36+ 27 - 35\\nPlatelet Count x10*9/L 444 150 - 450\\nWhite Cell Count x10*9/L 4.6 4.0 - 11.0\\nNeutrophils % 20\\nNeutrophils x10*9/L 0.9--- 2.0 - 7.5\\nLymphocytes % 20\\nLymphocytes x10*9/L 0.9- 1.1 - 4.0\\nMonocytes % 20\\nMonocytes x10*9/L 0.9 0.2 - 1.0\\nEosinophils % 20\\nEosinophils x10*9/L 0.92++ 0.04 - 0.40\\nBasophils % 20\\nBasophils x10*9/L 0.92+++ \\u0026lt;0.21\\n \\u003c/pre\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cp\\u003eAcme Laboratory, Inc signed: Dr Pete Pathologist\\u003c/p\\u003e\\n\\t\\t\\t\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://acme.com/lab/reports\",\n \"value\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"HM\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"58410-2\",\n \"display\": \"Complete blood count (hemogram) panel - Blood by Automated count\"\n },\n {\n \"code\": \"CBC\",\n \"display\": \"MASTER FULL BLOOD COUNT\"\n }\n ],\n \"text\": \"Complete Blood Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"effectiveDateTime\": \"2011-03-04T08:30:00+11:00\",\n \"issued\": \"2011-03-04T11:45:33+11:00\",\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/r1\"\n },\n {\n \"reference\": \"Observation/r2\"\n },\n {\n \"reference\": \"Observation/r3\"\n },\n {\n \"reference\": \"Observation/r4\"\n },\n {\n \"reference\": \"Observation/r5\"\n },\n {\n \"reference\": \"Observation/r6\"\n },\n {\n \"reference\": \"Observation/r7\"\n },\n {\n \"reference\": \"Observation/r8\"\n },\n {\n \"reference\": \"Observation/r9\"\n },\n {\n \"reference\": \"Observation/r10\"\n },\n {\n \"reference\": \"Observation/r11\"\n },\n {\n \"reference\": \"Observation/r12\"\n },\n {\n \"reference\": \"Observation/r13\"\n },\n {\n \"reference\": \"Observation/r14\"\n },\n {\n \"reference\": \"Observation/r15\"\n },\n {\n \"reference\": \"Observation/r16\"\n },\n {\n \"reference\": \"Observation/r17\"\n }\n ],\n \"presentedForm\": [\n {\n \"contentType\": \"application/pdf\",\n \"language\": \"en-AU\",\n \"data\": \"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PSdodHRwOi8vbnMuYWRvYmUuY29tL3BkZi8xLjMvJz48cGRmOlByb2R1Y2VyPkdQTCBHaG9zdHNjcmlwdCA5LjA0PC9wZGY6UHJvZHVjZXI+CjxwZGY6S2V5d29yZHM+KCk8L3BkZjpLZXl3b3Jkcz4KPC9yZGY6RGVzY3JpcHRpb24+CjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSdlOTA4ODRhMy0zYzlhLTExZTEtMDAwMC02NDI2MDMzYWE1MCYjODsnIHhtbG5zOnhtcD0naHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyc+PHhtcDpNb2RpZnlEYXRlPjIwMTItMDEtMDlUMDg6MjU6NTQrMTE6MDA8L3htcDpNb2RpZnlEYXRlPgo8eG1wOkNyZWF0ZURhdGU+MjAxMi0wMS0wOVQwODoyNTo1NCsxMTowMDwveG1wOkNyZWF0ZURhdGU+Cjx4bXA6Q3JlYXRvclRvb2w+UERGQ3JlYXRvciBWZXJzaW9uIDEuMi4zPC94bXA6Q3JlYXRvclRvb2w+PC9yZGY6RGVzY3JpcHRpb24+CjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSdlOTA4ODRhMy0zYzlhLTExZTEtMDAwMC02NDI2MDMzYWE1MCYjODsnIHhtbG5zOnhhcE1NPSdodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vJyB4YXBNTTpEb2N1bWVudElEPSd1dWlkOmU5MDg4NGEzLTNjOWEtMTFlMS0wMDAwLTY0MjYwMzNhYTUwJiMxMzg7pyYjMTU3O+7SYyYjMzE7JiMxNjsnLz4KPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9J2U5MDg4NGEzLTNjOWEtMTFlMS0wMDAwLTY0MjYwMzNhYTUwJiM4OycgeG1sbnM6ZGM9J2h0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvJyBkYzpmb3JtYXQ9J2FwcGxpY2F0aW9uL3BkZic+PGRjOnRpdGxlPjxyZGY6QWx0PjxyZGY6bGkgeG1sOmxhbmc9J3gtZGVmYXVsdCc+Q0JDIFJlcG9ydCBmb3IgV2lsZS4gRS4gQ09ZT1RFIChNUk46IDIzNDUzKSBpc3N1ZWQgMy1NYXIgMjAxMSAxMTo0NTwvcmRmOmxpPjwvcmRmOkFsdD48L2RjOnRpdGxlPjxkYzpjcmVhdG9yPjxyZGY6U2VxPjxyZGY6bGk+R3JhaGFtZTwvcmRmOmxpPjwvcmRmOlNlcT48L2RjOmNyZWF0b3I+PGRjOmRlc2NyaXB0aW9uPjxyZGY6U2VxPjxyZGY6bGk+KCk8L3JkZjpsaT48L3JkZjpTZXE+PC9kYzpkZXNjcmlwdGlvbj48L3JkZjpEZXNjcmlwdGlvbj4KPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSd3Jz8+CmVuZHN0cmVhbQplbmRvYmoKMiAwIG9iago8PC9Qcm9kdWNlcihHUEwgR2hvc3RzY3JpcHQgOS4wNCkKL0NyZWF0aW9uRGF0ZShEOjIwMTIwMTA5MDgyNTU0KzExJzAwJykKL01vZERhdGUoRDoyMDEyMDEwOTA4MjU1NCsxMScwMCcpCi9UaXRsZShcMzc2XDM3N1wwMDBDXDAwMEJcMDAwQ1wwMDAgXDAwMFJcMDAwZVwwMDBwXDAwMG9cMDAwclwwMDB0XDAwMCBcMDAwZlwwMDBvXDAwMHJcMDAwIFwwMDBXXDAwMGlcMDAwbFwwMDBlXDAwMC5cMDAwIFwwMDBFXDAwMC5cMDAwIFwwMDBDXDAwME9cMDAwWVwwMDBPXDAwMFRcMDAwRVwwMDAgXDAwMFwoXDAwME1cMDAwUlwwMDBOXDAwMDpcMDAwIFwwMDAyXDAwMDNcMDAwNFwwMDA1XDAwMDNcMDAwXClcMDAwIFwwMDBpXDAwMHNcMDAwc1wwMDB1XDAwMGVcMDAwZFwwMDAgXDAwMDNcMDAwLVwwMDBNXDAwMGFcMDAwclwwMDAgXDAwMDJcMDAwMFwwMDAxXDAwMDFcMDAwIFwwMDAxXDAwMDFcMDAwOlwwMDA0XDAwMDUpCi9DcmVhdG9yKFwzNzZcMzc3XDAwMFBcMDAwRFwwMDBGXDAwMENcMDAwclwwMDBlXDAwMGFcMDAwdFwwMDBvXDAwMHJcMDAwIFwwMDBWXDAwMGVcMDAwclwwMDBzXDAwMGlcMDAwb1wwMDBuXDAwMCBcMDAwMVwwMDAuXDAwMDJcMDAwLlwwMDAzKQovQXV0aG9yKFwzNzZcMzc3XDAwMEdcMDAwclwwMDBhXDAwMGhcMDAwYVwwMDBtXDAwMGUpCi9LZXl3b3JkcygpCi9TdWJqZWN0KCk+PmVuZG9iagp4cmVmCjAgMjEKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAyMTM3IDAwMDAwIG4gCjAwMDAwNjg3OTMgMDAwMDAgbiAKMDAwMDAwMjA3OCAwMDAwMCBuIAowMDAwMDAxOTM2IDAwMDAwIG4gCjAwMDAwMDAwMTUgMDAwMDAgbiAKMDAwMDAwMTkxNiAwMDAwMCBuIAowMDAwMDAyNjU2IDAwMDAwIG4gCjAwMDAwMDQ2ODEgMDAwMDAgbiAKMDAwMDAwMzQ3OSAwMDAwMCBuIAowMDAwMDIxNTc3IDAwMDAwIG4gCjAwMDAwMDQzMjkgMDAwMDAgbiAKMDAwMDA0MTMwNyAwMDAwMCBuIAowMDAwMDAyMjAyIDAwMDAwIG4gCjAwMDAwMDQ5MDUgMDAwMDAgbiAKMDAwMDAyMTc5MyAwMDAwMCBuIAowMDAwMDQxNTI5IDAwMDAwIG4gCjAwMDAwMDIyNTIgMDAwMDAgbiAKMDAwMDAwMjk0OCAwMDAwMCBuIAowMDAwMDAzODMxIDAwMDAwIG4gCjAwMDAwNjcwODggMDAwMDAgbiAKdHJhaWxlcgo8PCAvU2l6ZSAyMSAvUm9vdCAxIDAgUiAvSW5mbyAyIDAgUgovSUQgWzw4RDdGNzc5QTAwQzcwOTc5NTg3MDQyRjA5MkJBQjhDNj48OEQ3Rjc3OUEwMEM3MDk3OTU4NzA0MkYwOTJCQUI4QzY+XQo+PgpzdGFydHhyZWYKNjk0ODUKJSVFT0YK\",\n \"title\": \"HTML Report\"\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r1\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Haemoglobin \\u003cspan\\u003e(Details : {LOINC code \\u0027718-7\\u0027 \\u003d \\u0027Hemoglobin [Mass/volume] in Blood\\u0027, given as \\u0027Hemoglobin [Mass/volume] in Blood\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 176 g/L\\u003cspan\\u003e (Details: UCUM code g/L \\u003d \\u0027g/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e135 g/L\\u003cspan\\u003e (Details: UCUM code g/L \\u003d \\u0027g/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e180 g/L\\u003cspan\\u003e (Details: UCUM code g/L \\u003d \\u0027g/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"718-7\",\n \"display\": \"Hemoglobin [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Haemoglobin\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 176,\n \"unit\": \"g/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 135,\n \"unit\": \"g/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/L\"\n },\n \"high\": {\n \"value\": 180,\n \"unit\": \"g/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r2\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r2\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r2\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Red Cell Count \\u003cspan\\u003e(Details : {LOINC code \\u0027789-8\\u0027 \\u003d \\u0027Erythrocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Erythrocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 5.9 x10*12/L\\u003cspan\\u003e (Details: UCUM code 10*12/L \\u003d \\u002710*12/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e4.2 x10*12/L\\u003cspan\\u003e (Details: UCUM code 10*12/L \\u003d \\u002710*12/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e6.0 x10*12/L\\u003cspan\\u003e (Details: UCUM code 10*12/L \\u003d \\u002710*12/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"789-8\",\n \"display\": \"Erythrocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Red Cell Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5.9,\n \"unit\": \"x10*12/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*12/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 4.2,\n \"unit\": \"x10*12/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*12/L\"\n },\n \"high\": {\n \"value\": 6.0,\n \"unit\": \"x10*12/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*12/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r3\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r3\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r3\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Haematocrit \\u003cspan\\u003e(Details : {LOINC code \\u00274544-3\\u0027 \\u003d \\u0027Hematocrit [Volume Fraction] of Blood by Automated count\\u0027, given as \\u0027Hematocrit [Volume Fraction] of Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 55 %\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: High \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027H\\u0027 \\u003d \\u0027High)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e38 %\\u003c/td\\u003e\\u003ctd\\u003e52 %\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4544-3\",\n \"display\": \"Hematocrit [Volume Fraction] of Blood by Automated count\"\n }\n ],\n \"text\": \"Haematocrit\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 55,\n \"unit\": \"%\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 38,\n \"unit\": \"%\"\n },\n \"high\": {\n \"value\": 52,\n \"unit\": \"%\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r4\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r4\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r4\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Mean Cell Volume \\u003cspan\\u003e(Details : {LOINC code \\u0027787-2\\u0027 \\u003d \\u0027Erythrocyte mean corpuscular volume [Entitic volume] by Automated count\\u0027, given as \\u0027Erythrocyte mean corpuscular volume [Entitic volume] by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 99 fL\\u003cspan\\u003e (Details: UCUM code fL \\u003d \\u0027fL\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: High \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027H\\u0027 \\u003d \\u0027High)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e80 fL\\u003cspan\\u003e (Details: UCUM code fL \\u003d \\u0027fL\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e98 fL\\u003cspan\\u003e (Details: UCUM code fL \\u003d \\u0027fL\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"787-2\",\n \"display\": \"Erythrocyte mean corpuscular volume [Entitic volume] by Automated count\"\n }\n ],\n \"text\": \"Mean Cell Volume\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 99,\n \"unit\": \"fL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"fL\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 80,\n \"unit\": \"fL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"fL\"\n },\n \"high\": {\n \"value\": 98,\n \"unit\": \"fL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"fL\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r5\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r5\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Mean Cell Haemoglobin \\u003cspan\\u003e(Details : {LOINC code \\u0027785-6\\u0027 \\u003d \\u0027Erythrocyte mean corpuscular hemoglobin [Entitic mass] by Automated count\\u0027, given as \\u0027Erythrocyte mean corpuscular hemoglobin [Entitic mass] by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 36 pg\\u003cspan\\u003e (Details: UCUM code pg \\u003d \\u0027pg\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: High \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027H\\u0027 \\u003d \\u0027High)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e27 pg\\u003cspan\\u003e (Details: UCUM code pg \\u003d \\u0027pg\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e35 pg\\u003cspan\\u003e (Details: UCUM code pg \\u003d \\u0027pg\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"785-6\",\n \"display\": \"Erythrocyte mean corpuscular hemoglobin [Entitic mass] by Automated count\"\n }\n ],\n \"text\": \"Mean Cell Haemoglobin\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 36,\n \"unit\": \"pg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"pg\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 27,\n \"unit\": \"pg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"pg\"\n },\n \"high\": {\n \"value\": 35,\n \"unit\": \"pg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"pg\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r6\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r6\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r6\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Platelet Count \\u003cspan\\u003e(Details : {LOINC code \\u0027777-3\\u0027 \\u003d \\u0027Platelets [#/volume] in Blood by Automated count\\u0027, given as \\u0027Platelets [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 444 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e150 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e450 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"777-3\",\n \"display\": \"Platelets [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Platelet Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 444,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 150,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 450,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r7\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r7\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r7\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: White Cell Count \\u003cspan\\u003e(Details : {LOINC code \\u00276690-2\\u0027 \\u003d \\u0027Leukocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Leukocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 4.6 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e4.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e11.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"6690-2\",\n \"display\": \"Leukocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"White Cell Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 4.6,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 4.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 11.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r8\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r8\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Neutrophils \\u003cspan\\u003e(Details : {LOINC code \\u0027770-8\\u0027 \\u003d \\u0027Neutrophils/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Neutrophils/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"770-8\",\n \"display\": \"Neutrophils/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Neutrophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r9\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r9\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r9\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Neutrophils \\u003cspan\\u003e(Details : {LOINC code \\u0027751-8\\u0027 \\u003d \\u0027Neutrophils [#/volume] in Blood by Automated count\\u0027, given as \\u0027Neutrophils [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.9 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: Critical low \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027LL\\u0027 \\u003d \\u0027Critical low)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e2.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e7.5 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"751-8\",\n \"display\": \"Neutrophils [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Neutrophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.9,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"LL\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 2.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 7.5,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r10\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r10\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r10\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Lymphocytes \\u003cspan\\u003e(Details : {LOINC code \\u0027736-9\\u0027 \\u003d \\u0027Lymphocytes/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Lymphocytes/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"736-9\",\n \"display\": \"Lymphocytes/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Lymphocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r11\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r11\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r11\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Lymphocytes \\u003cspan\\u003e(Details : {LOINC code \\u0027731-0\\u0027 \\u003d \\u0027Lymphocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Lymphocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.9 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: Low \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027L\\u0027 \\u003d \\u0027Low)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e1.1 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e4.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"731-0\",\n \"display\": \"Lymphocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Lymphocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.9,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"L\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 1.1,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 4.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r12\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r12\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r12\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Monocytes \\u003cspan\\u003e(Details : {LOINC code \\u00275905-5\\u0027 \\u003d \\u0027Monocytes/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Monocytes/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"5905-5\",\n \"display\": \"Monocytes/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Monocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r13\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r13\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r13\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Monocytes \\u003cspan\\u003e(Details : {LOINC code \\u0027742-7\\u0027 \\u003d \\u0027Monocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Monocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.9 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e0.2 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e1.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"742-7\",\n \"display\": \"Monocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Monocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.9,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 0.2,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 1.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r14\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r14\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r14\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Eosinophils \\u003cspan\\u003e(Details : {LOINC code \\u0027713-8\\u0027 \\u003d \\u0027Eosinophils/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Eosinophils/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"713-8\",\n \"display\": \"Eosinophils/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Eosinophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r15\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r15\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r15\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Eosinophils \\u003cspan\\u003e(Details : {LOINC code \\u0027711-2\\u0027 \\u003d \\u0027Eosinophils [#/volume] in Blood by Automated count\\u0027, given as \\u0027Eosinophils [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.92 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: Critical high \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027HH\\u0027 \\u003d \\u0027Critical high)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e0.04 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e0.40 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"711-2\",\n \"display\": \"Eosinophils [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Eosinophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.92,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"HH\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 0.04,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 0.40,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r16\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r16\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r16\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Basophils \\u003cspan\\u003e(Details : {LOINC code \\u0027706-2\\u0027 \\u003d \\u0027Basophils/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Basophils/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"706-2\",\n \"display\": \"Basophils/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Basophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r17\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r17\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r17\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Basophils \\u003cspan\\u003e(Details : {LOINC code \\u0027704-7\\u0027 \\u003d \\u0027Basophils [#/volume] in Blood by Automated count\\u0027, given as \\u0027Basophils [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.92 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e0.21 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"704-7\",\n \"display\": \"Basophils [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Basophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.92,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"high\": {\n \"value\": 0.21,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DiagnosticReport/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DiagnosticReport", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DiagnosticReportById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DiagnosticReport/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DiagnosticReport", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DiagnosticReport_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Bundle\",\n \"id\": \"101\",\n \"type\": \"collection\",\n \"entry\": [\n {\n \"fullUrl\": \"https://example.com/base/DiagnosticReport/101\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"id\": \"101\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/workflow-codes\",\n \"code\": \"01\",\n \"display\": \"Needs Review\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ch3\\u003eCBC Report for Wile. E. COYOTE (MRN: 23453) issued 3-Mar 2011 11:45\\u003c/h3\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cpre\\u003e\\nTest Units Value Reference Range\\nHaemoglobin g/L 176 135 - 180\\nRed Cell Count x10*12/L 5.9 4.2 - 6.0\\nHaematocrit 0.55+ 0.38 - 0.52\\nMean Cell Volume fL 99+ 80 - 98\\nMean Cell Haemoglobin pg 36+ 27 - 35\\nPlatelet Count x10*9/L 444 150 - 450\\nWhite Cell Count x10*9/L 4.6 4.0 - 11.0\\nNeutrophils % 20\\nNeutrophils x10*9/L 0.9--- 2.0 - 7.5\\nLymphocytes % 20\\nLymphocytes x10*9/L 0.9- 1.1 - 4.0\\nMonocytes % 20\\nMonocytes x10*9/L 0.9 0.2 - 1.0\\nEosinophils % 20\\nEosinophils x10*9/L 0.92++ 0.04 - 0.40\\nBasophils % 20\\nBasophils x10*9/L 0.92+++ \\u0026lt;0.21\\n \\u003c/pre\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cp\\u003eAcme Laboratory, Inc signed: Dr Pete Pathologist\\u003c/p\\u003e\\n\\t\\t\\t\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://acme.com/lab/reports\",\n \"value\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"HM\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"58410-2\",\n \"display\": \"Complete blood count (hemogram) panel - Blood by Automated count\"\n },\n {\n \"code\": \"CBC\",\n \"display\": \"MASTER FULL BLOOD COUNT\"\n }\n ],\n \"text\": \"Complete Blood Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"effectiveDateTime\": \"2011-03-04T08:30:00+11:00\",\n \"issued\": \"2011-03-04T11:45:33+11:00\",\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/r1\"\n },\n {\n \"reference\": \"Observation/r2\"\n },\n {\n \"reference\": \"Observation/r3\"\n },\n {\n \"reference\": \"Observation/r4\"\n },\n {\n \"reference\": \"Observation/r5\"\n },\n {\n \"reference\": \"Observation/r6\"\n },\n {\n \"reference\": \"Observation/r7\"\n },\n {\n \"reference\": \"Observation/r8\"\n },\n {\n \"reference\": \"Observation/r9\"\n },\n {\n \"reference\": \"Observation/r10\"\n },\n {\n \"reference\": \"Observation/r11\"\n },\n {\n \"reference\": \"Observation/r12\"\n },\n {\n \"reference\": \"Observation/r13\"\n },\n {\n \"reference\": \"Observation/r14\"\n },\n {\n \"reference\": \"Observation/r15\"\n },\n {\n \"reference\": \"Observation/r16\"\n },\n {\n \"reference\": \"Observation/r17\"\n }\n ],\n \"presentedForm\": [\n {\n \"contentType\": \"application/pdf\",\n \"language\": \"en-AU\",\n \"data\": \"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PSdodHRwOi8vbnMuYWRvYmUuY29tL3BkZi8xLjMvJz48cGRmOlByb2R1Y2VyPkdQTCBHaG9zdHNjcmlwdCA5LjA0PC9wZGY6UHJvZHVjZXI+CjxwZGY6S2V5d29yZHM+KCk8L3BkZjpLZXl3b3Jkcz4KPC9yZGY6RGVzY3JpcHRpb24+CjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSdlOTA4ODRhMy0zYzlhLTExZTEtMDAwMC02NDI2MDMzYWE1MCYjODsnIHhtbG5zOnhtcD0naHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyc+PHhtcDpNb2RpZnlEYXRlPjIwMTItMDEtMDlUMDg6MjU6NTQrMTE6MDA8L3htcDpNb2RpZnlEYXRlPgo8eG1wOkNyZWF0ZURhdGU+MjAxMi0wMS0wOVQwODoyNTo1NCsxMTowMDwveG1wOkNyZWF0ZURhdGU+Cjx4bXA6Q3JlYXRvclRvb2w+UERGQ3JlYXRvciBWZXJzaW9uIDEuMi4zPC94bXA6Q3JlYXRvclRvb2w+PC9yZGY6RGVzY3JpcHRpb24+CjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSdlOTA4ODRhMy0zYzlhLTExZTEtMDAwMC02NDI2MDMzYWE1MCYjODsnIHhtbG5zOnhhcE1NPSdodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vJyB4YXBNTTpEb2N1bWVudElEPSd1dWlkOmU5MDg4NGEzLTNjOWEtMTFlMS0wMDAwLTY0MjYwMzNhYTUwJiMxMzg7pyYjMTU3O+7SYyYjMzE7JiMxNjsnLz4KPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9J2U5MDg4NGEzLTNjOWEtMTFlMS0wMDAwLTY0MjYwMzNhYTUwJiM4OycgeG1sbnM6ZGM9J2h0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvJyBkYzpmb3JtYXQ9J2FwcGxpY2F0aW9uL3BkZic+PGRjOnRpdGxlPjxyZGY6QWx0PjxyZGY6bGkgeG1sOmxhbmc9J3gtZGVmYXVsdCc+Q0JDIFJlcG9ydCBmb3IgV2lsZS4gRS4gQ09ZT1RFIChNUk46IDIzNDUzKSBpc3N1ZWQgMy1NYXIgMjAxMSAxMTo0NTwvcmRmOmxpPjwvcmRmOkFsdD48L2RjOnRpdGxlPjxkYzpjcmVhdG9yPjxyZGY6U2VxPjxyZGY6bGk+R3JhaGFtZTwvcmRmOmxpPjwvcmRmOlNlcT48L2RjOmNyZWF0b3I+PGRjOmRlc2NyaXB0aW9uPjxyZGY6U2VxPjxyZGY6bGk+KCk8L3JkZjpsaT48L3JkZjpTZXE+PC9kYzpkZXNjcmlwdGlvbj48L3JkZjpEZXNjcmlwdGlvbj4KPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSd3Jz8+CmVuZHN0cmVhbQplbmRvYmoKMiAwIG9iago8PC9Qcm9kdWNlcihHUEwgR2hvc3RzY3JpcHQgOS4wNCkKL0NyZWF0aW9uRGF0ZShEOjIwMTIwMTA5MDgyNTU0KzExJzAwJykKL01vZERhdGUoRDoyMDEyMDEwOTA4MjU1NCsxMScwMCcpCi9UaXRsZShcMzc2XDM3N1wwMDBDXDAwMEJcMDAwQ1wwMDAgXDAwMFJcMDAwZVwwMDBwXDAwMG9cMDAwclwwMDB0XDAwMCBcMDAwZlwwMDBvXDAwMHJcMDAwIFwwMDBXXDAwMGlcMDAwbFwwMDBlXDAwMC5cMDAwIFwwMDBFXDAwMC5cMDAwIFwwMDBDXDAwME9cMDAwWVwwMDBPXDAwMFRcMDAwRVwwMDAgXDAwMFwoXDAwME1cMDAwUlwwMDBOXDAwMDpcMDAwIFwwMDAyXDAwMDNcMDAwNFwwMDA1XDAwMDNcMDAwXClcMDAwIFwwMDBpXDAwMHNcMDAwc1wwMDB1XDAwMGVcMDAwZFwwMDAgXDAwMDNcMDAwLVwwMDBNXDAwMGFcMDAwclwwMDAgXDAwMDJcMDAwMFwwMDAxXDAwMDFcMDAwIFwwMDAxXDAwMDFcMDAwOlwwMDA0XDAwMDUpCi9DcmVhdG9yKFwzNzZcMzc3XDAwMFBcMDAwRFwwMDBGXDAwMENcMDAwclwwMDBlXDAwMGFcMDAwdFwwMDBvXDAwMHJcMDAwIFwwMDBWXDAwMGVcMDAwclwwMDBzXDAwMGlcMDAwb1wwMDBuXDAwMCBcMDAwMVwwMDAuXDAwMDJcMDAwLlwwMDAzKQovQXV0aG9yKFwzNzZcMzc3XDAwMEdcMDAwclwwMDBhXDAwMGhcMDAwYVwwMDBtXDAwMGUpCi9LZXl3b3JkcygpCi9TdWJqZWN0KCk+PmVuZG9iagp4cmVmCjAgMjEKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAyMTM3IDAwMDAwIG4gCjAwMDAwNjg3OTMgMDAwMDAgbiAKMDAwMDAwMjA3OCAwMDAwMCBuIAowMDAwMDAxOTM2IDAwMDAwIG4gCjAwMDAwMDAwMTUgMDAwMDAgbiAKMDAwMDAwMTkxNiAwMDAwMCBuIAowMDAwMDAyNjU2IDAwMDAwIG4gCjAwMDAwMDQ2ODEgMDAwMDAgbiAKMDAwMDAwMzQ3OSAwMDAwMCBuIAowMDAwMDIxNTc3IDAwMDAwIG4gCjAwMDAwMDQzMjkgMDAwMDAgbiAKMDAwMDA0MTMwNyAwMDAwMCBuIAowMDAwMDAyMjAyIDAwMDAwIG4gCjAwMDAwMDQ5MDUgMDAwMDAgbiAKMDAwMDAyMTc5MyAwMDAwMCBuIAowMDAwMDQxNTI5IDAwMDAwIG4gCjAwMDAwMDIyNTIgMDAwMDAgbiAKMDAwMDAwMjk0OCAwMDAwMCBuIAowMDAwMDAzODMxIDAwMDAwIG4gCjAwMDAwNjcwODggMDAwMDAgbiAKdHJhaWxlcgo8PCAvU2l6ZSAyMSAvUm9vdCAxIDAgUiAvSW5mbyAyIDAgUgovSUQgWzw4RDdGNzc5QTAwQzcwOTc5NTg3MDQyRjA5MkJBQjhDNj48OEQ3Rjc3OUEwMEM3MDk3OTU4NzA0MkYwOTJCQUI4QzY+XQo+PgpzdGFydHhyZWYKNjk0ODUKJSVFT0YK\",\n \"title\": \"HTML Report\"\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r1\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Haemoglobin \\u003cspan\\u003e(Details : {LOINC code \\u0027718-7\\u0027 \\u003d \\u0027Hemoglobin [Mass/volume] in Blood\\u0027, given as \\u0027Hemoglobin [Mass/volume] in Blood\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 176 g/L\\u003cspan\\u003e (Details: UCUM code g/L \\u003d \\u0027g/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e135 g/L\\u003cspan\\u003e (Details: UCUM code g/L \\u003d \\u0027g/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e180 g/L\\u003cspan\\u003e (Details: UCUM code g/L \\u003d \\u0027g/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"718-7\",\n \"display\": \"Hemoglobin [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Haemoglobin\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 176,\n \"unit\": \"g/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 135,\n \"unit\": \"g/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/L\"\n },\n \"high\": {\n \"value\": 180,\n \"unit\": \"g/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r2\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r2\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r2\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Red Cell Count \\u003cspan\\u003e(Details : {LOINC code \\u0027789-8\\u0027 \\u003d \\u0027Erythrocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Erythrocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 5.9 x10*12/L\\u003cspan\\u003e (Details: UCUM code 10*12/L \\u003d \\u002710*12/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e4.2 x10*12/L\\u003cspan\\u003e (Details: UCUM code 10*12/L \\u003d \\u002710*12/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e6.0 x10*12/L\\u003cspan\\u003e (Details: UCUM code 10*12/L \\u003d \\u002710*12/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"789-8\",\n \"display\": \"Erythrocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Red Cell Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5.9,\n \"unit\": \"x10*12/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*12/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 4.2,\n \"unit\": \"x10*12/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*12/L\"\n },\n \"high\": {\n \"value\": 6.0,\n \"unit\": \"x10*12/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*12/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r3\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r3\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r3\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Haematocrit \\u003cspan\\u003e(Details : {LOINC code \\u00274544-3\\u0027 \\u003d \\u0027Hematocrit [Volume Fraction] of Blood by Automated count\\u0027, given as \\u0027Hematocrit [Volume Fraction] of Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 55 %\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: High \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027H\\u0027 \\u003d \\u0027High)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e38 %\\u003c/td\\u003e\\u003ctd\\u003e52 %\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4544-3\",\n \"display\": \"Hematocrit [Volume Fraction] of Blood by Automated count\"\n }\n ],\n \"text\": \"Haematocrit\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 55,\n \"unit\": \"%\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 38,\n \"unit\": \"%\"\n },\n \"high\": {\n \"value\": 52,\n \"unit\": \"%\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r4\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r4\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r4\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Mean Cell Volume \\u003cspan\\u003e(Details : {LOINC code \\u0027787-2\\u0027 \\u003d \\u0027Erythrocyte mean corpuscular volume [Entitic volume] by Automated count\\u0027, given as \\u0027Erythrocyte mean corpuscular volume [Entitic volume] by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 99 fL\\u003cspan\\u003e (Details: UCUM code fL \\u003d \\u0027fL\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: High \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027H\\u0027 \\u003d \\u0027High)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e80 fL\\u003cspan\\u003e (Details: UCUM code fL \\u003d \\u0027fL\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e98 fL\\u003cspan\\u003e (Details: UCUM code fL \\u003d \\u0027fL\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"787-2\",\n \"display\": \"Erythrocyte mean corpuscular volume [Entitic volume] by Automated count\"\n }\n ],\n \"text\": \"Mean Cell Volume\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 99,\n \"unit\": \"fL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"fL\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 80,\n \"unit\": \"fL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"fL\"\n },\n \"high\": {\n \"value\": 98,\n \"unit\": \"fL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"fL\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r5\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r5\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Mean Cell Haemoglobin \\u003cspan\\u003e(Details : {LOINC code \\u0027785-6\\u0027 \\u003d \\u0027Erythrocyte mean corpuscular hemoglobin [Entitic mass] by Automated count\\u0027, given as \\u0027Erythrocyte mean corpuscular hemoglobin [Entitic mass] by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 36 pg\\u003cspan\\u003e (Details: UCUM code pg \\u003d \\u0027pg\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: High \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027H\\u0027 \\u003d \\u0027High)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e27 pg\\u003cspan\\u003e (Details: UCUM code pg \\u003d \\u0027pg\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e35 pg\\u003cspan\\u003e (Details: UCUM code pg \\u003d \\u0027pg\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"785-6\",\n \"display\": \"Erythrocyte mean corpuscular hemoglobin [Entitic mass] by Automated count\"\n }\n ],\n \"text\": \"Mean Cell Haemoglobin\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 36,\n \"unit\": \"pg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"pg\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 27,\n \"unit\": \"pg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"pg\"\n },\n \"high\": {\n \"value\": 35,\n \"unit\": \"pg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"pg\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r6\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r6\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r6\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Platelet Count \\u003cspan\\u003e(Details : {LOINC code \\u0027777-3\\u0027 \\u003d \\u0027Platelets [#/volume] in Blood by Automated count\\u0027, given as \\u0027Platelets [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 444 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e150 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e450 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"777-3\",\n \"display\": \"Platelets [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Platelet Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 444,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 150,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 450,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r7\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r7\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r7\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: White Cell Count \\u003cspan\\u003e(Details : {LOINC code \\u00276690-2\\u0027 \\u003d \\u0027Leukocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Leukocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 4.6 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e4.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e11.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"6690-2\",\n \"display\": \"Leukocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"White Cell Count\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 4.6,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 4.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 11.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r8\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r8\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Neutrophils \\u003cspan\\u003e(Details : {LOINC code \\u0027770-8\\u0027 \\u003d \\u0027Neutrophils/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Neutrophils/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"770-8\",\n \"display\": \"Neutrophils/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Neutrophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r9\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r9\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r9\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Neutrophils \\u003cspan\\u003e(Details : {LOINC code \\u0027751-8\\u0027 \\u003d \\u0027Neutrophils [#/volume] in Blood by Automated count\\u0027, given as \\u0027Neutrophils [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.9 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: Critical low \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027LL\\u0027 \\u003d \\u0027Critical low)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e2.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e7.5 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"751-8\",\n \"display\": \"Neutrophils [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Neutrophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.9,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"LL\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 2.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 7.5,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r10\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r10\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r10\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Lymphocytes \\u003cspan\\u003e(Details : {LOINC code \\u0027736-9\\u0027 \\u003d \\u0027Lymphocytes/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Lymphocytes/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"736-9\",\n \"display\": \"Lymphocytes/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Lymphocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r11\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r11\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r11\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Lymphocytes \\u003cspan\\u003e(Details : {LOINC code \\u0027731-0\\u0027 \\u003d \\u0027Lymphocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Lymphocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.9 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: Low \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027L\\u0027 \\u003d \\u0027Low)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e1.1 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e4.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"731-0\",\n \"display\": \"Lymphocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Lymphocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.9,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"L\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 1.1,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 4.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r12\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r12\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r12\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Monocytes \\u003cspan\\u003e(Details : {LOINC code \\u00275905-5\\u0027 \\u003d \\u0027Monocytes/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Monocytes/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"5905-5\",\n \"display\": \"Monocytes/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Monocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r13\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r13\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r13\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Monocytes \\u003cspan\\u003e(Details : {LOINC code \\u0027742-7\\u0027 \\u003d \\u0027Monocytes [#/volume] in Blood by Automated count\\u0027, given as \\u0027Monocytes [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.9 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e0.2 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e1.0 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"742-7\",\n \"display\": \"Monocytes [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Monocytes\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.9,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 0.2,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 1.0,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r14\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r14\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r14\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Eosinophils \\u003cspan\\u003e(Details : {LOINC code \\u0027713-8\\u0027 \\u003d \\u0027Eosinophils/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Eosinophils/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"713-8\",\n \"display\": \"Eosinophils/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Eosinophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r15\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r15\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r15\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Eosinophils \\u003cspan\\u003e(Details : {LOINC code \\u0027711-2\\u0027 \\u003d \\u0027Eosinophils [#/volume] in Blood by Automated count\\u0027, given as \\u0027Eosinophils [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.92 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einterpretation\\u003c/b\\u003e: Critical high \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code \\u0027HH\\u0027 \\u003d \\u0027Critical high)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLow\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e0.04 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e0.40 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"711-2\",\n \"display\": \"Eosinophils [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Eosinophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.92,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"HH\"\n }\n ]\n }\n ],\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 0.04,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"high\": {\n \"value\": 0.40,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r16\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r16\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r16\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Basophils \\u003cspan\\u003e(Details : {LOINC code \\u0027706-2\\u0027 \\u003d \\u0027Basophils/100 leukocytes in Blood by Automated count\\u0027, given as \\u0027Basophils/100 leukocytes in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 20 %\\u003cspan\\u003e (Details: UCUM code % \\u003d \\u0027%\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"706-2\",\n \"display\": \"Basophils/100 leukocytes in Blood by Automated count\"\n }\n ],\n \"text\": \"Basophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n }\n },\n {\n \"fullUrl\": \"https://example.com/base/Observation/r17\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"r17\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: r17\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Basophils \\u003cspan\\u003e(Details : {LOINC code \\u0027704-7\\u0027 \\u003d \\u0027Basophils [#/volume] in Blood by Automated count\\u0027, given as \\u0027Basophils [#/volume] in Blood by Automated count\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/pat2\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eAcme Laboratory, Inc\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 0.92 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eReferenceRanges\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eHigh\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e0.21 x10*9/L\\u003cspan\\u003e (Details: UCUM code 10*9/L \\u003d \\u002710*9/L\\u0027)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"704-7\",\n \"display\": \"Basophils [#/volume] in Blood by Automated count\"\n }\n ],\n \"text\": \"Basophils\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat2\"\n },\n \"performer\": [\n {\n \"reference\": \"Organization/1832473e-2fe0-452d-abe9-3cdb9879522f\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.92,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n },\n \"referenceRange\": [\n {\n \"high\": {\n \"value\": 0.21,\n \"unit\": \"x10*9/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*9/L\"\n }\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DiagnosticReport", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DiagnosticReport" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DiagnosticReport_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DiagnosticReport?patient=&encounter=&based-on=&context=&image=&performer=&result=&specimen=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&identifier=&category=&diagnosis=&issued=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DiagnosticReport" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "encounter", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" + }, + { + "key": "based-on", + "value": "", + "description": "Reference to the procedure request." + }, + { + "key": "context", + "value": "", + "description": "Healthcare event (Episode of Care or Encounter) related to the report" + }, + { + "key": "image", + "value": "", + "description": "A reference to the image source." + }, + { + "key": "performer", + "value": "", + "description": "Who was the source of the report (organization)" + }, + { + "key": "result", + "value": "", + "description": "Link to an atomic result (observation resource)" + }, + { + "key": "specimen", + "value": "", + "description": "The specimen details" + }, + { + "key": "subject", + "value": "", + "description": "The subject of the report" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "category", + "value": "", + "description": "Which diagnostic discipline/department created the report" + }, + { + "key": "diagnosis", + "value": "", + "description": "A coded diagnosis on the report" + }, + { + "key": "issued", + "value": "", + "description": "When the report was issued" + }, + { + "key": "status", + "value": "", + "description": "The status of the report" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DiagnosticReportHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DiagnosticReport/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DiagnosticReport", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Document Manifest", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "DocumentManifestHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DocumentManifest/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentManifest", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DocumentManifestHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DocumentManifest/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentManifest", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DocumentManifestById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DocumentManifest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentManifest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DocumentManifestById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"DocumentManifest\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eText\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"a1\",\n \"name\": [\n {\n \"family\": \"Dopplemeyer\",\n \"given\": [\n \"Sherry\"\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"john.doe@healthcare.example.org\"\n }\n ]\n }\n ],\n \"masterIdentifier\": {\n \"system\": \"http://example.org/documents\",\n \"value\": \"23425234234-2346\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org/documents\",\n \"value\": \"23425234234-2347\"\n }\n ],\n \"status\": \"current\",\n \"type\": {\n \"text\": \"History and Physical\"\n },\n \"subject\": {\n \"reference\": \"Patient/xcda\"\n },\n \"created\": \"2004-12-25T23:50:50-05:00\",\n \"author\": [\n {\n \"reference\": \"#a1\"\n }\n ],\n \"recipient\": [\n {\n \"reference\": \"Practitioner/xcda1\"\n }\n ],\n \"source\": \"urn:oid:1.3.6.1.4.1.21367.2009.1.2.1\",\n \"description\": \"Physical\",\n \"content\": [\n {\n \"reference\": \"DocumentReference/example\"\n }\n ],\n \"related\": [\n {\n \"identifier\": {\n \"system\": \"http://example.org/documents\",\n \"value\": \"23425234234-9999\"\n },\n \"ref\": {\n \"reference\": \"DocumentReference/example\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DocumentManifest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentManifest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DocumentManifestById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DocumentManifest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentManifest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DocumentManifest_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"DocumentManifest\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eText\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"a1\",\n \"name\": [\n {\n \"family\": \"Dopplemeyer\",\n \"given\": [\n \"Sherry\"\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"john.doe@healthcare.example.org\"\n }\n ]\n }\n ],\n \"masterIdentifier\": {\n \"system\": \"http://example.org/documents\",\n \"value\": \"23425234234-2346\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org/documents\",\n \"value\": \"23425234234-2347\"\n }\n ],\n \"status\": \"current\",\n \"type\": {\n \"text\": \"History and Physical\"\n },\n \"subject\": {\n \"reference\": \"Patient/xcda\"\n },\n \"created\": \"2004-12-25T23:50:50-05:00\",\n \"author\": [\n {\n \"reference\": \"#a1\"\n }\n ],\n \"recipient\": [\n {\n \"reference\": \"Practitioner/xcda1\"\n }\n ],\n \"source\": \"urn:oid:1.3.6.1.4.1.21367.2009.1.2.1\",\n \"description\": \"Physical\",\n \"content\": [\n {\n \"reference\": \"DocumentReference/example\"\n }\n ],\n \"related\": [\n {\n \"identifier\": {\n \"system\": \"http://example.org/documents\",\n \"value\": \"23425234234-9999\"\n },\n \"ref\": {\n \"reference\": \"DocumentReference/example\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DocumentManifest", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentManifest" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DocumentManifest_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DocumentManifest?patient=&author=&content-ref=&recipient=&related-ref=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&type=&created=&description=&related-id=&source=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentManifest" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "author", + "value": "", + "description": "Who and/or what authored the manifest" + }, + { + "key": "content-ref", + "value": "", + "description": "Contents of this set of documents" + }, + { + "key": "recipient", + "value": "", + "description": "Intended to get notified about this set of documents" + }, + { + "key": "related-ref", + "value": "", + "description": "Related Resource" + }, + { + "key": "subject", + "value": "", + "description": "The subject of the set of documents" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "type", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" + }, + { + "key": "created", + "value": "", + "description": "When this document manifest created" + }, + { + "key": "description", + "value": "", + "description": "Human-readable description (title)" + }, + { + "key": "related-id", + "value": "", + "description": "Identifiers of things that are related" + }, + { + "key": "source", + "value": "", + "description": "The source system/application/software" + }, + { + "key": "status", + "value": "", + "description": "current | superseded | entered-in-error" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DocumentManifestHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DocumentManifest/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentManifest", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Document Reference", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "DocumentReferenceHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DocumentReference/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentReference", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DocumentReferenceHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DocumentReference/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentReference", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DocumentReferenceById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DocumentReference/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentReference", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DocumentReferenceById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"DocumentReference\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emasterIdentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: current\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocStatus\\u003c/b\\u003e: preliminary\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Outpatient Note \\u003cspan\\u003e(Details : {LOINC code \\u002734108-1\\u0027 \\u003d \\u0027Outpatient Note\\u0027, given as \\u0027Outpatient Note\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: History and Physical \\u003cspan\\u003e(Details : {http://ihe.net/xds/connectathon/classCodes code \\u0027History and Physical\\u0027 \\u003d \\u0027History and Physical\\u0027, given as \\u0027History and Physical\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 24/12/2005 9:43:41 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eauthor\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cul\\u003e\\u003cli\\u003e\\u003ca\\u003ePractitioner/xcda1\\u003c/a\\u003e\\u003c/li\\u003e\\u003cli\\u003eid: a2; Gerald Smitty \\u003c/li\\u003e\\u003c/ul\\u003e\\u003cp\\u003e\\u003cb\\u003eauthenticator\\u003c/b\\u003e: \\u003ca\\u003eOrganization/f001\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecustodian\\u003c/b\\u003e: \\u003ca\\u003eOrganization/f001\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eRelatesTos\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTarget\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eappends\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eDocumentReference/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Physical\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esecurityLabel\\u003c/b\\u003e: very restricted \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-Confidentiality code \\u0027V\\u0027 \\u003d \\u0027very restricted\\u0027, given as \\u0027very restricted\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eContents\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAttachment\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eFormat\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd/\\u003e\\u003ctd\\u003eHistory and Physical Specification (Details: urn:oid:1.3.6.1.4.1.19376.1.2.3 code urn:ihe:pcc:handp:2008 \\u003d \\u0027urn:ihe:pcc:handp:2008\\u0027, stated as \\u0027History and Physical Specification\\u0027)\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eContexts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncounter\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEvent\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePeriod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eFacilityType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePracticeSetting\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSourcePatientInfo\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRelated\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eEncounter/xcda\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eArm \\u003cspan\\u003e(Details : {http://ihe.net/xds/connectathon/eventCodes code \\u0027T-D8200\\u0027 \\u003d \\u0027T-D8200\\u0027, given as \\u0027Arm\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e23/12/2004 8:00:00 AM --\\u0026gt; 23/12/2004 8:01:00 AM\\u003c/td\\u003e\\u003ctd\\u003eOutpatient \\u003cspan\\u003e(Details : {http://www.ihe.net/xds/connectathon/healthcareFacilityTypeCodes code \\u0027Outpatient\\u0027 \\u003d \\u0027Outpatient\\u0027, given as \\u0027Outpatient\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003eGeneral Medicine \\u003cspan\\u003e(Details : {http://www.ihe.net/xds/connectathon/practiceSettingCodes code \\u0027General Medicine\\u0027 \\u003d \\u0027General Medicine\\u0027, given as \\u0027General Medicine\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"a2\",\n \"name\": [\n {\n \"family\": \"Smitty\",\n \"given\": [\n \"Gerald\"\n ]\n }\n ]\n }\n ],\n \"masterIdentifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\"\n }\n ],\n \"status\": \"current\",\n \"docStatus\": \"preliminary\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34108-1\",\n \"display\": \"Outpatient Note\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://ihe.net/xds/connectathon/classCodes\",\n \"code\": \"History and Physical\",\n \"display\": \"History and Physical\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/xcda\"\n },\n \"date\": \"2005-12-24T09:43:41+11:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/xcda1\"\n },\n {\n \"reference\": \"#a2\"\n }\n ],\n \"authenticator\": {\n \"reference\": \"Organization/f001\"\n },\n \"custodian\": {\n \"reference\": \"Organization/f001\"\n },\n \"relatesTo\": [\n {\n \"code\": \"appends\",\n \"target\": {\n \"reference\": \"DocumentReference/example\"\n }\n }\n ],\n \"description\": \"Physical\",\n \"securityLabel\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-Confidentiality\",\n \"code\": \"V\",\n \"display\": \"very restricted\"\n }\n ]\n }\n ],\n \"content\": [\n {\n \"attachment\": {\n \"contentType\": \"application/hl7-v3+xml\",\n \"language\": \"en-US\",\n \"url\": \"http://example.org/xds/mhd/Binary/07a6483f-732b-461e-86b6-edb665c45510\",\n \"size\": 3654,\n \"hash\": \"2jmj7l5rSw0yVb/vlWAYkK/YBwk\\u003d\",\n \"title\": \"Physical\",\n \"creation\": \"2005-12-24T09:35:00+11:00\"\n },\n \"format\": {\n \"system\": \"urn:oid:1.3.6.1.4.1.19376.1.2.3\",\n \"code\": \"urn:ihe:pcc:handp:2008\",\n \"display\": \"History and Physical Specification\"\n }\n }\n ],\n \"context\": {\n \"encounter\": [\n {\n \"reference\": \"Encounter/xcda\"\n }\n ],\n \"event\": [\n {\n \"coding\": [\n {\n \"system\": \"http://ihe.net/xds/connectathon/eventCodes\",\n \"code\": \"T-D8200\",\n \"display\": \"Arm\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2004-12-23T08:00:00+11:00\",\n \"end\": \"2004-12-23T08:01:00+11:00\"\n },\n \"facilityType\": {\n \"coding\": [\n {\n \"system\": \"http://www.ihe.net/xds/connectathon/healthcareFacilityTypeCodes\",\n \"code\": \"Outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"practiceSetting\": {\n \"coding\": [\n {\n \"system\": \"http://www.ihe.net/xds/connectathon/practiceSettingCodes\",\n \"code\": \"General Medicine\",\n \"display\": \"General Medicine\"\n }\n ]\n },\n \"sourcePatientInfo\": {\n \"reference\": \"Patient/xcda\"\n },\n \"related\": [\n {\n \"reference\": \"Patient/xcda\",\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.2345\"\n }\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DocumentReference/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentReference", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DocumentReferenceById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DocumentReference/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentReference", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DocumentReference_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"DocumentReference\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emasterIdentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: current\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocStatus\\u003c/b\\u003e: preliminary\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Outpatient Note \\u003cspan\\u003e(Details : {LOINC code \\u002734108-1\\u0027 \\u003d \\u0027Outpatient Note\\u0027, given as \\u0027Outpatient Note\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: History and Physical \\u003cspan\\u003e(Details : {http://ihe.net/xds/connectathon/classCodes code \\u0027History and Physical\\u0027 \\u003d \\u0027History and Physical\\u0027, given as \\u0027History and Physical\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 24/12/2005 9:43:41 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eauthor\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cul\\u003e\\u003cli\\u003e\\u003ca\\u003ePractitioner/xcda1\\u003c/a\\u003e\\u003c/li\\u003e\\u003cli\\u003eid: a2; Gerald Smitty \\u003c/li\\u003e\\u003c/ul\\u003e\\u003cp\\u003e\\u003cb\\u003eauthenticator\\u003c/b\\u003e: \\u003ca\\u003eOrganization/f001\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecustodian\\u003c/b\\u003e: \\u003ca\\u003eOrganization/f001\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eRelatesTos\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTarget\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eappends\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eDocumentReference/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Physical\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esecurityLabel\\u003c/b\\u003e: very restricted \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-Confidentiality code \\u0027V\\u0027 \\u003d \\u0027very restricted\\u0027, given as \\u0027very restricted\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eContents\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAttachment\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eFormat\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd/\\u003e\\u003ctd\\u003eHistory and Physical Specification (Details: urn:oid:1.3.6.1.4.1.19376.1.2.3 code urn:ihe:pcc:handp:2008 \\u003d \\u0027urn:ihe:pcc:handp:2008\\u0027, stated as \\u0027History and Physical Specification\\u0027)\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eContexts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncounter\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEvent\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePeriod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eFacilityType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePracticeSetting\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSourcePatientInfo\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRelated\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eEncounter/xcda\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eArm \\u003cspan\\u003e(Details : {http://ihe.net/xds/connectathon/eventCodes code \\u0027T-D8200\\u0027 \\u003d \\u0027T-D8200\\u0027, given as \\u0027Arm\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e23/12/2004 8:00:00 AM --\\u0026gt; 23/12/2004 8:01:00 AM\\u003c/td\\u003e\\u003ctd\\u003eOutpatient \\u003cspan\\u003e(Details : {http://www.ihe.net/xds/connectathon/healthcareFacilityTypeCodes code \\u0027Outpatient\\u0027 \\u003d \\u0027Outpatient\\u0027, given as \\u0027Outpatient\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003eGeneral Medicine \\u003cspan\\u003e(Details : {http://www.ihe.net/xds/connectathon/practiceSettingCodes code \\u0027General Medicine\\u0027 \\u003d \\u0027General Medicine\\u0027, given as \\u0027General Medicine\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"a2\",\n \"name\": [\n {\n \"family\": \"Smitty\",\n \"given\": [\n \"Gerald\"\n ]\n }\n ]\n }\n ],\n \"masterIdentifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\"\n }\n ],\n \"status\": \"current\",\n \"docStatus\": \"preliminary\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34108-1\",\n \"display\": \"Outpatient Note\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://ihe.net/xds/connectathon/classCodes\",\n \"code\": \"History and Physical\",\n \"display\": \"History and Physical\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/xcda\"\n },\n \"date\": \"2005-12-24T09:43:41+11:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/xcda1\"\n },\n {\n \"reference\": \"#a2\"\n }\n ],\n \"authenticator\": {\n \"reference\": \"Organization/f001\"\n },\n \"custodian\": {\n \"reference\": \"Organization/f001\"\n },\n \"relatesTo\": [\n {\n \"code\": \"appends\",\n \"target\": {\n \"reference\": \"DocumentReference/example\"\n }\n }\n ],\n \"description\": \"Physical\",\n \"securityLabel\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-Confidentiality\",\n \"code\": \"V\",\n \"display\": \"very restricted\"\n }\n ]\n }\n ],\n \"content\": [\n {\n \"attachment\": {\n \"contentType\": \"application/hl7-v3+xml\",\n \"language\": \"en-US\",\n \"url\": \"http://example.org/xds/mhd/Binary/07a6483f-732b-461e-86b6-edb665c45510\",\n \"size\": 3654,\n \"hash\": \"2jmj7l5rSw0yVb/vlWAYkK/YBwk\\u003d\",\n \"title\": \"Physical\",\n \"creation\": \"2005-12-24T09:35:00+11:00\"\n },\n \"format\": {\n \"system\": \"urn:oid:1.3.6.1.4.1.19376.1.2.3\",\n \"code\": \"urn:ihe:pcc:handp:2008\",\n \"display\": \"History and Physical Specification\"\n }\n }\n ],\n \"context\": {\n \"encounter\": [\n {\n \"reference\": \"Encounter/xcda\"\n }\n ],\n \"event\": [\n {\n \"coding\": [\n {\n \"system\": \"http://ihe.net/xds/connectathon/eventCodes\",\n \"code\": \"T-D8200\",\n \"display\": \"Arm\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2004-12-23T08:00:00+11:00\",\n \"end\": \"2004-12-23T08:01:00+11:00\"\n },\n \"facilityType\": {\n \"coding\": [\n {\n \"system\": \"http://www.ihe.net/xds/connectathon/healthcareFacilityTypeCodes\",\n \"code\": \"Outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"practiceSetting\": {\n \"coding\": [\n {\n \"system\": \"http://www.ihe.net/xds/connectathon/practiceSettingCodes\",\n \"code\": \"General Medicine\",\n \"display\": \"General Medicine\"\n }\n ]\n },\n \"sourcePatientInfo\": {\n \"reference\": \"Patient/xcda\"\n },\n \"related\": [\n {\n \"reference\": \"Patient/xcda\",\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.2345\"\n }\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/DocumentReference", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentReference" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DocumentReference_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DocumentReference?patient=&encounter=&authenticator=&author=&custodian=&related-ref=&relatesto=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&type=&class=&created=&description=&event=&facility=&format=&indexed=&language=&location=&period=&related-id=&relation=&relationship=&securitylabel=&setting=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentReference" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "encounter", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" + }, + { + "key": "authenticator", + "value": "", + "description": "Who/what authenticated the document" + }, + { + "key": "author", + "value": "", + "description": "Who and/or what authored the document" + }, + { + "key": "custodian", + "value": "", + "description": "Organization which maintains the document" + }, + { + "key": "related-ref", + "value": "", + "description": "Related Resource" + }, + { + "key": "relatesto", + "value": "", + "description": "Target of the relationship" + }, + { + "key": "subject", + "value": "", + "description": "Who/what is the subject of the document" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "type", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" + }, + { + "key": "class", + "value": "", + "description": "Categorization of document" + }, + { + "key": "created", + "value": "", + "description": "Document creation time" + }, + { + "key": "description", + "value": "", + "description": "Human-readable description (title)" + }, + { + "key": "event", + "value": "", + "description": "Main clinical acts documented" + }, + { + "key": "facility", + "value": "", + "description": "Kind of facility where patient was seen" + }, + { + "key": "format", + "value": "", + "description": "Format/content rules for the document" + }, + { + "key": "indexed", + "value": "", + "description": "When this document reference was created" + }, + { + "key": "language", + "value": "", + "description": "Human language of the content (BCP-47)" + }, + { + "key": "location", + "value": "", + "description": "Uri where the data can be found" + }, + { + "key": "period", + "value": "", + "description": "Time of service that is being documented" + }, + { + "key": "related-id", + "value": "", + "description": "Identifier of related objects or events" + }, + { + "key": "relation", + "value": "", + "description": "replaces | transforms | signs | appends" + }, + { + "key": "relationship", + "value": "", + "description": "Combination of relation and relatesTo" + }, + { + "key": "securitylabel", + "value": "", + "description": "Document security-tags" + }, + { + "key": "setting", + "value": "", + "description": "Additional details about where the content was created (e.g. clinical specialty)" + }, + { + "key": "status", + "value": "", + "description": "current | superseded | entered-in-error" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DocumentReferenceHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DocumentReference/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DocumentReference", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Domain Resource", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "DomainResourceHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DomainResource/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DomainResource", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DomainResourceHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DomainResource/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DomainResource", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DomainResourceById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DomainResource/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DomainResource", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DomainResourceById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/DomainResource/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DomainResource", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DomainResourceById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DomainResource/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DomainResource", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "DomainResource_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/DomainResource", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DomainResource" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DomainResource_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DomainResource?_id=&_lastUpdated=&_profile=&_security=&_tag=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DomainResource" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "DomainResourceHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/DomainResource/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "DomainResource", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Eligibility Request", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "EligibilityRequestHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EligibilityRequest/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityRequest", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EligibilityRequestHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EligibilityRequest/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityRequest", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "EligibilityRequestById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EligibilityRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EligibilityRequestById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"created\": \"\",\n \"targetReference\": {\n \"reference\": \"\"\n },\n \"organizationReference\": {\n \"reference\": \"\"\n },\n \"priority\": {\n \"code\": \"\"\n },\n \"patientReference\": {\n \"reference\": \"\"\n },\n \"coverageReference\": {\n \"reference\": \"\"\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/EligibilityRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EligibilityRequestById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EligibilityRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "EligibilityRequest_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"created\": \"\",\n \"targetReference\": {\n \"reference\": \"\"\n },\n \"organizationReference\": {\n \"reference\": \"\"\n },\n \"priority\": {\n \"code\": \"\"\n },\n \"patientReference\": {\n \"reference\": \"\"\n },\n \"coverageReference\": {\n \"reference\": \"\"\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/EligibilityRequest", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityRequest" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EligibilityRequest_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EligibilityRequest?enterer=&facility=&organization=&patient=&provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&identifier=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityRequest" + ], + "query": [ + { + "key": "enterer", + "value": "", + "description": "The party who is responsible for the request" + }, + { + "key": "facility", + "value": "", + "description": "Facility responsible for the goods and services" + }, + { + "key": "organization", + "value": "", + "description": "The reference to the providing organization" + }, + { + "key": "patient", + "value": "", + "description": "The reference to the patient" + }, + { + "key": "provider", + "value": "", + "description": "The reference to the provider" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "created", + "value": "", + "description": "The creation date for the EOB" + }, + { + "key": "identifier", + "value": "", + "description": "The business identifier of the Eligibility" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EligibilityRequestHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EligibilityRequest/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityRequest", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Eligibility Response", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "EligibilityResponseHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EligibilityResponse/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityResponse", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EligibilityResponseHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EligibilityResponse/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityResponse", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "EligibilityResponseById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EligibilityResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EligibilityResponseById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"requestReference\": {\n \"reference\": \"\"\n },\n \"outcome\": \"\",\n \"disposition\": \"\",\n \"created\": \"\",\n \"organizationReference\": {\n \"reference\": \"\"\n },\n \"inforce\": \"\",\n \"_inforce\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/EligibilityResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EligibilityResponseById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EligibilityResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "EligibilityResponse_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"requestReference\": {\n \"reference\": \"\"\n },\n \"outcome\": \"\",\n \"disposition\": \"\",\n \"created\": \"\",\n \"organizationReference\": {\n \"reference\": \"\"\n },\n \"inforce\": \"\",\n \"_inforce\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/EligibilityResponse", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityResponse" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EligibilityResponse_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EligibilityResponse?insurer=&request=&request-organization=&request-provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&disposition=&identifier=&outcome=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityResponse" + ], + "query": [ + { + "key": "insurer", + "value": "", + "description": "The organization which generated this resource" + }, + { + "key": "request", + "value": "", + "description": "The EligibilityRequest reference" + }, + { + "key": "request-organization", + "value": "", + "description": "The EligibilityRequest organization" + }, + { + "key": "request-provider", + "value": "", + "description": "The EligibilityRequest provider" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "created", + "value": "", + "description": "The creation date" + }, + { + "key": "disposition", + "value": "", + "description": "The contents of the disposition message" + }, + { + "key": "identifier", + "value": "", + "description": "The business identifier" + }, + { + "key": "outcome", + "value": "", + "description": "The processing outcome" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EligibilityResponseHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EligibilityResponse/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EligibilityResponse", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Encounter", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "EncounterHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Encounter/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Encounter", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EncounterHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Encounter/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Encounter", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "EncounterById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Encounter/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Encounter", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EncounterById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eEncounter with patient @example\\u003c/div\\u003e\"\n },\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"IMP\",\n \"display\": \"inpatient encounter\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Encounter/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Encounter", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EncounterById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Encounter/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Encounter", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Encounter_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eEncounter with patient @example\\u003c/div\\u003e\"\n },\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"IMP\",\n \"display\": \"inpatient encounter\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Encounter", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Encounter" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Encounter_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Encounter?patient=&appointment=&diagnosis=&episodeofcare=&incomingreferral=&location=&part-of=&participant=&practitioner=&service-provider=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&type=&class=&length=&location-period=&participant-type=&reason=&special-arrangement=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Encounter" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "appointment", + "value": "", + "description": "The appointment that scheduled this encounter" + }, + { + "key": "diagnosis", + "value": "", + "description": "Reason the encounter takes place (resource)" + }, + { + "key": "episodeofcare", + "value": "", + "description": "Episode(s) of care that this encounter should be recorded against" + }, + { + "key": "incomingreferral", + "value": "", + "description": "The ReferralRequest that initiated this encounter" + }, + { + "key": "location", + "value": "", + "description": "Location the encounter takes place" + }, + { + "key": "part-of", + "value": "", + "description": "Another Encounter this encounter is part of" + }, + { + "key": "participant", + "value": "", + "description": "Persons involved in the encounter other than the patient" + }, + { + "key": "practitioner", + "value": "", + "description": "Persons involved in the encounter other than the patient" + }, + { + "key": "service-provider", + "value": "", + "description": "The custodian organization of this Encounter record" + }, + { + "key": "subject", + "value": "", + "description": "The patient ro group present at the encounter" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "type", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" + }, + { + "key": "class", + "value": "", + "description": "inpatient | outpatient | ambulatory | emergency +" + }, + { + "key": "length", + "value": "", + "description": "Length of encounter in days" + }, + { + "key": "location-period", + "value": "", + "description": "Time period during which the patient was present at the location" + }, + { + "key": "participant-type", + "value": "", + "description": "Role of participant in encounter" + }, + { + "key": "reason", + "value": "", + "description": "Reason the encounter takes place (code)" + }, + { + "key": "special-arrangement", + "value": "", + "description": "Wheelchair, translator, stretcher, etc." + }, + { + "key": "status", + "value": "", + "description": "planned | arrived | triaged | in-progress | onleave | finished | cancelled +" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EncounterHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Encounter/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Encounter", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Endpoint", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "EndpointHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Endpoint/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Endpoint", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EndpointHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Endpoint/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Endpoint", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "EndpointById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Endpoint/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Endpoint", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EndpointById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Endpoint\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\tHealth Intersections CarePlan Hub\\u003cbr/\\u003e\\n\\t\\t\\tCarePlans can be uploaded to/from this loccation\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org/enpoint-identifier\",\n \"value\": \"epcp12\"\n }\n ],\n \"status\": \"active\",\n \"connectionType\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/endpoint-connection-type\",\n \"code\": \"hl7-fhir-rest\"\n },\n \"name\": \"Health Intersections CarePlan Hub\",\n \"managingOrganization\": {\n \"reference\": \"Organization/hl7\"\n },\n \"contact\": [\n {\n \"system\": \"email\",\n \"value\": \"endpointmanager@example.org\",\n \"use\": \"work\"\n }\n ],\n \"period\": {\n \"start\": \"2014-09-01\"\n },\n \"payloadType\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/resource-types\",\n \"code\": \"CarePlan\"\n }\n ]\n }\n ],\n \"payloadMimeType\": [\n \"application/fhir+xml\"\n ],\n \"address\": \"http://fhir3.healthintersections.com.au/open/CarePlan\",\n \"header\": [\n \"bearer-code BASGS534s4\"\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Endpoint/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Endpoint", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EndpointById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Endpoint/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Endpoint", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Endpoint_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Endpoint\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\tHealth Intersections CarePlan Hub\\u003cbr/\\u003e\\n\\t\\t\\tCarePlans can be uploaded to/from this loccation\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org/enpoint-identifier\",\n \"value\": \"epcp12\"\n }\n ],\n \"status\": \"active\",\n \"connectionType\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/endpoint-connection-type\",\n \"code\": \"hl7-fhir-rest\"\n },\n \"name\": \"Health Intersections CarePlan Hub\",\n \"managingOrganization\": {\n \"reference\": \"Organization/hl7\"\n },\n \"contact\": [\n {\n \"system\": \"email\",\n \"value\": \"endpointmanager@example.org\",\n \"use\": \"work\"\n }\n ],\n \"period\": {\n \"start\": \"2014-09-01\"\n },\n \"payloadType\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/resource-types\",\n \"code\": \"CarePlan\"\n }\n ]\n }\n ],\n \"payloadMimeType\": [\n \"application/fhir+xml\"\n ],\n \"address\": \"http://fhir3.healthintersections.com.au/open/CarePlan\",\n \"header\": [\n \"bearer-code BASGS534s4\"\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Endpoint", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Endpoint" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Endpoint_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Endpoint?organization=&_id=&_lastUpdated=&_profile=&_security=&_tag=&connection-type=&identifier=&name=&payload-type=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Endpoint" + ], + "query": [ + { + "key": "organization", + "value": "", + "description": "The organization that is managing the endpoint" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "connection-type", + "value": "", + "description": "Protocol/Profile/Standard to be used with this endpoint connection" + }, + { + "key": "identifier", + "value": "", + "description": "Identifies this endpoint across multiple systems" + }, + { + "key": "name", + "value": "", + "description": "A name that this endpoint can be identified by" + }, + { + "key": "payload-type", + "value": "", + "description": "The type of content that may be used at this endpoint (e.g. XDS Discharge summaries)" + }, + { + "key": "status", + "value": "", + "description": "The current status of the Endpoint (usually expected to be active)" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EndpointHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Endpoint/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Endpoint", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Enrollment Request", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "EnrollmentRequestHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EnrollmentRequest/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentRequest", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EnrollmentRequestHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EnrollmentRequest/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentRequest", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "EnrollmentRequestById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EnrollmentRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EnrollmentRequestById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"EnrollmentRequest\",\n \"id\": \"22345\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the EnrollmentRequest.\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://happyvalley.com/enrollmentrequest\",\n \"value\": \"EN22345\"\n }\n ],\n \"status\": \"active\",\n \"created\": \"2014-08-16\",\n \"insurer\": {\n \"reference\": \"Organization/2\"\n },\n \"provider\": {\n \"reference\": \"Organization/1\"\n },\n \"candidate\": {\n \"reference\": \"Patient/1\"\n },\n \"coverage\": {\n \"reference\": \"Coverage/9876B1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/EnrollmentRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EnrollmentRequestById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EnrollmentRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "EnrollmentRequest_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"EnrollmentRequest\",\n \"id\": \"22345\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the EnrollmentRequest.\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://happyvalley.com/enrollmentrequest\",\n \"value\": \"EN22345\"\n }\n ],\n \"status\": \"active\",\n \"created\": \"2014-08-16\",\n \"insurer\": {\n \"reference\": \"Organization/2\"\n },\n \"provider\": {\n \"reference\": \"Organization/1\"\n },\n \"candidate\": {\n \"reference\": \"Patient/1\"\n },\n \"coverage\": {\n \"reference\": \"Coverage/9876B1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/EnrollmentRequest", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentRequest" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EnrollmentRequest_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EnrollmentRequest?organization=&patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentRequest" + ], + "query": [ + { + "key": "organization", + "value": "", + "description": "The organization who generated this resource" + }, + { + "key": "patient", + "value": "", + "description": "The party to be enrolled" + }, + { + "key": "subject", + "value": "", + "description": "The party to be enrolled" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "The business identifier of the Enrollment" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EnrollmentRequestHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EnrollmentRequest/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentRequest", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Enrollment Response", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "EnrollmentResponseHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EnrollmentResponse/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentResponse", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EnrollmentResponseHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EnrollmentResponse/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentResponse", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "EnrollmentResponseById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EnrollmentResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EnrollmentResponseById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"EnrollmentResponse\",\n \"id\": \"ER2500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the EnrollmentResponse\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/enrollmentresponse\",\n \"value\": \"781234\"\n }\n ],\n \"status\": \"active\",\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/eligibility/225476332402\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"Dependant added to policy.\",\n \"created\": \"2014-08-16\",\n \"organization\": {\n \"reference\": \"Organization/2\"\n },\n \"requestProvider\": {\n \"reference\": \"Organization/1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/EnrollmentResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EnrollmentResponseById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EnrollmentResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "EnrollmentResponse_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"EnrollmentResponse\",\n \"id\": \"ER2500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the EnrollmentResponse\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/enrollmentresponse\",\n \"value\": \"781234\"\n }\n ],\n \"status\": \"active\",\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/eligibility/225476332402\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"Dependant added to policy.\",\n \"created\": \"2014-08-16\",\n \"organization\": {\n \"reference\": \"Organization/2\"\n },\n \"requestProvider\": {\n \"reference\": \"Organization/1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/EnrollmentResponse", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentResponse" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EnrollmentResponse_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EnrollmentResponse?organization=&request=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentResponse" + ], + "query": [ + { + "key": "organization", + "value": "", + "description": "The organization who generated this resource" + }, + { + "key": "request", + "value": "", + "description": "The reference to the claim" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "The business identifier of the EnrollmentResponse" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EnrollmentResponseHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EnrollmentResponse/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EnrollmentResponse", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Episode Of Care", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "EpisodeOfCareHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EpisodeOfCare/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EpisodeOfCare", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EpisodeOfCareHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EpisodeOfCare/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EpisodeOfCare", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "EpisodeOfCareById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EpisodeOfCare/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EpisodeOfCare", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EpisodeOfCareById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"EpisodeOfCare\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n HACC Program for Peter James Chalmers at HL7 Healthcare 15 Sept 2014 - current\\u003cbr/\\u003e\\n\\t\\t\\twas on leave from 22 Sept - 24 Sept while in respite care\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org/sampleepisodeofcare-identifier\",\n \"value\": \"123\"\n }\n ],\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"status\": \"planned\",\n \"period\": {\n \"start\": \"2014-09-01\",\n \"end\": \"2014-09-14\"\n }\n },\n {\n \"status\": \"active\",\n \"period\": {\n \"start\": \"2014-09-15\",\n \"end\": \"2014-09-21\"\n }\n },\n {\n \"status\": \"onhold\",\n \"period\": {\n \"start\": \"2014-09-22\",\n \"end\": \"2014-09-24\"\n }\n },\n {\n \"status\": \"active\",\n \"period\": {\n \"start\": \"2014-09-25\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/episodeofcare-type\",\n \"code\": \"hacc\",\n \"display\": \"Home and Community Care\"\n }\n ]\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/stroke\"\n },\n \"role\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"CC\",\n \"display\": \"Chief complaint\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/hl7\"\n },\n \"period\": {\n \"start\": \"2014-09-01\"\n },\n \"referralRequest\": [\n {\n \"display\": \"Referral from Example Aged Care Services\"\n }\n ],\n \"careManager\": {\n \"reference\": \"Practitioner/14\",\n \"display\": \"Amanda Assigned\"\n },\n \"team\": [\n {\n \"reference\": \"CareTeam/example\",\n \"display\": \"example care team\"\n }\n ],\n \"account\": [\n {\n \"reference\": \"Account/example\",\n \"display\": \"example account\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/EpisodeOfCare/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EpisodeOfCare", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EpisodeOfCareById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EpisodeOfCare/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EpisodeOfCare", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "EpisodeOfCare_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"EpisodeOfCare\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n HACC Program for Peter James Chalmers at HL7 Healthcare 15 Sept 2014 - current\\u003cbr/\\u003e\\n\\t\\t\\twas on leave from 22 Sept - 24 Sept while in respite care\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org/sampleepisodeofcare-identifier\",\n \"value\": \"123\"\n }\n ],\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"status\": \"planned\",\n \"period\": {\n \"start\": \"2014-09-01\",\n \"end\": \"2014-09-14\"\n }\n },\n {\n \"status\": \"active\",\n \"period\": {\n \"start\": \"2014-09-15\",\n \"end\": \"2014-09-21\"\n }\n },\n {\n \"status\": \"onhold\",\n \"period\": {\n \"start\": \"2014-09-22\",\n \"end\": \"2014-09-24\"\n }\n },\n {\n \"status\": \"active\",\n \"period\": {\n \"start\": \"2014-09-25\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/episodeofcare-type\",\n \"code\": \"hacc\",\n \"display\": \"Home and Community Care\"\n }\n ]\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/stroke\"\n },\n \"role\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"CC\",\n \"display\": \"Chief complaint\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/hl7\"\n },\n \"period\": {\n \"start\": \"2014-09-01\"\n },\n \"referralRequest\": [\n {\n \"display\": \"Referral from Example Aged Care Services\"\n }\n ],\n \"careManager\": {\n \"reference\": \"Practitioner/14\",\n \"display\": \"Amanda Assigned\"\n },\n \"team\": [\n {\n \"reference\": \"CareTeam/example\",\n \"display\": \"example care team\"\n }\n ],\n \"account\": [\n {\n \"reference\": \"Account/example\",\n \"display\": \"example account\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/EpisodeOfCare", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EpisodeOfCare" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EpisodeOfCare_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EpisodeOfCare?patient=&care-manager=&condition=&incomingreferral=&organization=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&type=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EpisodeOfCare" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "care-manager", + "value": "", + "description": "Care manager/care co-ordinator for the patient" + }, + { + "key": "condition", + "value": "", + "description": "Conditions/problems/diagnoses this episode of care is for" + }, + { + "key": "incomingreferral", + "value": "", + "description": "Incoming Referral Request" + }, + { + "key": "organization", + "value": "", + "description": "The organization that has assumed the specific responsibilities of this EpisodeOfCare" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "type", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" + }, + { + "key": "status", + "value": "", + "description": "The current status of the Episode of Care as provided (does not check the status history collection)" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "EpisodeOfCareHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/EpisodeOfCare/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "EpisodeOfCare", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Expansion Profile", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ExpansionProfileHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ExpansionProfile/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExpansionProfile", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ExpansionProfileHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ExpansionProfile/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExpansionProfile", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ExpansionProfileById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ExpansionProfile/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExpansionProfile", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ExpansionProfileById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"status\": \"\",\n \"experimental\": \"\",\n \"excludeNested\": \"\"\n}" + }, + "url": { + "raw": "{{API_URL}}/ExpansionProfile/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExpansionProfile", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ExpansionProfileById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ExpansionProfile/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExpansionProfile", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ExpansionProfile_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"status\": \"\",\n \"experimental\": \"\",\n \"excludeNested\": \"\"\n}" + }, + "url": { + "raw": "{{API_URL}}/ExpansionProfile", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExpansionProfile" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ExpansionProfile_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ExpansionProfile?_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&identifier=&jurisdiction=&name=&publisher=&status=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExpansionProfile" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "The expansion profile publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the expansion profile" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the expansion profile" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the expansion profile" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the expansion profile" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the expansion profile" + }, + { + "key": "status", + "value": "", + "description": "The current status of the expansion profile" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the expansion profile" + }, + { + "key": "version", + "value": "", + "description": "The business version of the expansion profile" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ExpansionProfileHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ExpansionProfile/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExpansionProfile", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Explanation Of Benefit", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ExplanationOfBenefitHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ExplanationOfBenefit/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExplanationOfBenefit", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ExplanationOfBenefitHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ExplanationOfBenefit/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExplanationOfBenefit", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ExplanationOfBenefitById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ExplanationOfBenefit/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExplanationOfBenefit", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ExplanationOfBenefitById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ExplanationOfBenefit\",\n \"id\": \"EB3500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the ExplanationOfBenefit\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/explanationofbenefit\",\n \"value\": \"987654321\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/claim-type\",\n \"code\": \"oral\"\n }\n ]\n },\n \"use\": \"claim\",\n \"patient\": {\n \"reference\": \"Patient/pat1\"\n },\n \"created\": \"2014-08-16\",\n \"enterer\": {\n \"reference\": \"Practitioner/1\"\n },\n \"insurer\": {\n \"reference\": \"Organization/3\"\n },\n \"provider\": {\n \"reference\": \"Practitioner/1\"\n },\n \"payee\": {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payeetype\",\n \"code\": \"provider\"\n }\n ]\n },\n \"party\": {\n \"reference\": \"Organization/2\"\n }\n },\n \"facility\": {\n \"reference\": \"Location/1\"\n },\n \"claim\": {\n \"reference\": \"Claim/100150\"\n },\n \"claimResponse\": {\n \"reference\": \"ClaimResponse/R3500\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"Claim settled as per contract.\",\n \"careTeam\": [\n {\n \"sequence\": 1,\n \"provider\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"insurance\": [\n {\n \"focal\": true,\n \"coverage\": {\n \"reference\": \"Coverage/9876B1\"\n }\n }\n ],\n \"item\": [\n {\n \"sequence\": 1,\n \"careTeamSequence\": [\n 1\n ],\n \"productOrService\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-USCLS\",\n \"code\": \"1205\"\n }\n ]\n },\n \"servicedDate\": \"2014-08-16\",\n \"unitPrice\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n },\n \"net\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n },\n \"udi\": [\n {\n \"reference\": \"Device/example\"\n }\n ],\n \"encounter\": [\n {\n \"reference\": \"Encounter/example\"\n }\n ],\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligible\"\n }\n ]\n },\n \"amount\": {\n \"value\": 120.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligpercent\"\n }\n ]\n },\n \"value\": 0.80\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 96.00,\n \"currency\": \"USD\"\n }\n }\n ]\n },\n {\n \"sequence\": 2,\n \"careTeamSequence\": [\n 1\n ],\n \"productOrService\": {\n \"coding\": [\n {\n \"code\": \"group\"\n }\n ]\n },\n \"servicedDate\": \"2014-08-16\",\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 180.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"detail\": [\n {\n \"sequence\": 1,\n \"productOrService\": {\n \"coding\": [\n {\n \"code\": \"group\"\n }\n ]\n },\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"udi\": [\n {\n \"reference\": \"Device/example\"\n }\n ],\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 180.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"subDetail\": [\n {\n \"sequence\": 1,\n \"productOrService\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-USCLS\",\n \"code\": \"1205\"\n }\n ]\n },\n \"unitPrice\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"udi\": [\n {\n \"reference\": \"Device/example\"\n }\n ],\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligible\"\n }\n ]\n },\n \"amount\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligpercent\"\n }\n ]\n },\n \"value\": 0.90\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 180.00,\n \"currency\": \"USD\"\n }\n }\n ]\n }\n ]\n }\n ]\n }\n ],\n \"total\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"submitted\"\n }\n ]\n },\n \"amount\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 96.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ExplanationOfBenefit/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExplanationOfBenefit", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ExplanationOfBenefitById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ExplanationOfBenefit/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExplanationOfBenefit", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ExplanationOfBenefit_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ExplanationOfBenefit\",\n \"id\": \"EB3500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the ExplanationOfBenefit\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/explanationofbenefit\",\n \"value\": \"987654321\"\n }\n ],\n \"status\": \"active\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/claim-type\",\n \"code\": \"oral\"\n }\n ]\n },\n \"use\": \"claim\",\n \"patient\": {\n \"reference\": \"Patient/pat1\"\n },\n \"created\": \"2014-08-16\",\n \"enterer\": {\n \"reference\": \"Practitioner/1\"\n },\n \"insurer\": {\n \"reference\": \"Organization/3\"\n },\n \"provider\": {\n \"reference\": \"Practitioner/1\"\n },\n \"payee\": {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payeetype\",\n \"code\": \"provider\"\n }\n ]\n },\n \"party\": {\n \"reference\": \"Organization/2\"\n }\n },\n \"facility\": {\n \"reference\": \"Location/1\"\n },\n \"claim\": {\n \"reference\": \"Claim/100150\"\n },\n \"claimResponse\": {\n \"reference\": \"ClaimResponse/R3500\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"Claim settled as per contract.\",\n \"careTeam\": [\n {\n \"sequence\": 1,\n \"provider\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"insurance\": [\n {\n \"focal\": true,\n \"coverage\": {\n \"reference\": \"Coverage/9876B1\"\n }\n }\n ],\n \"item\": [\n {\n \"sequence\": 1,\n \"careTeamSequence\": [\n 1\n ],\n \"productOrService\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-USCLS\",\n \"code\": \"1205\"\n }\n ]\n },\n \"servicedDate\": \"2014-08-16\",\n \"unitPrice\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n },\n \"net\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n },\n \"udi\": [\n {\n \"reference\": \"Device/example\"\n }\n ],\n \"encounter\": [\n {\n \"reference\": \"Encounter/example\"\n }\n ],\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligible\"\n }\n ]\n },\n \"amount\": {\n \"value\": 120.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligpercent\"\n }\n ]\n },\n \"value\": 0.80\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 96.00,\n \"currency\": \"USD\"\n }\n }\n ]\n },\n {\n \"sequence\": 2,\n \"careTeamSequence\": [\n 1\n ],\n \"productOrService\": {\n \"coding\": [\n {\n \"code\": \"group\"\n }\n ]\n },\n \"servicedDate\": \"2014-08-16\",\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 180.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"detail\": [\n {\n \"sequence\": 1,\n \"productOrService\": {\n \"coding\": [\n {\n \"code\": \"group\"\n }\n ]\n },\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"udi\": [\n {\n \"reference\": \"Device/example\"\n }\n ],\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 180.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"subDetail\": [\n {\n \"sequence\": 1,\n \"productOrService\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-USCLS\",\n \"code\": \"1205\"\n }\n ]\n },\n \"unitPrice\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"net\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n },\n \"udi\": [\n {\n \"reference\": \"Device/example\"\n }\n ],\n \"adjudication\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligible\"\n }\n ]\n },\n \"amount\": {\n \"value\": 200.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"eligpercent\"\n }\n ]\n },\n \"value\": 0.90\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 180.00,\n \"currency\": \"USD\"\n }\n }\n ]\n }\n ]\n }\n ]\n }\n ],\n \"total\": [\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"submitted\"\n }\n ]\n },\n \"amount\": {\n \"value\": 135.57,\n \"currency\": \"USD\"\n }\n },\n {\n \"category\": {\n \"coding\": [\n {\n \"code\": \"benefit\"\n }\n ]\n },\n \"amount\": {\n \"value\": 96.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ExplanationOfBenefit", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExplanationOfBenefit" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ExplanationOfBenefit_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ExplanationOfBenefit?care-team=&claim=&coverage=&encounter=&enterer=&facility=&organization=&patient=&payee=&provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&disposition=&identifier=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExplanationOfBenefit" + ], + "query": [ + { + "key": "care-team", + "value": "", + "description": "Member of the CareTeam" + }, + { + "key": "claim", + "value": "", + "description": "The reference to the claim" + }, + { + "key": "coverage", + "value": "", + "description": "The plan under which the claim was adjudicated" + }, + { + "key": "encounter", + "value": "", + "description": "Encounters associated with a billed line item" + }, + { + "key": "enterer", + "value": "", + "description": "The party responsible for the entry of the Claim" + }, + { + "key": "facility", + "value": "", + "description": "Facility responsible for the goods and services" + }, + { + "key": "organization", + "value": "", + "description": "The reference to the providing organization" + }, + { + "key": "patient", + "value": "", + "description": "The reference to the patient" + }, + { + "key": "payee", + "value": "", + "description": "The party receiving any payment for the Claim" + }, + { + "key": "provider", + "value": "", + "description": "The reference to the provider" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "created", + "value": "", + "description": "The creation date for the EOB" + }, + { + "key": "disposition", + "value": "", + "description": "The contents of the disposition message" + }, + { + "key": "identifier", + "value": "", + "description": "The business identifier of the Explanation of Benefit" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ExplanationOfBenefitHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ExplanationOfBenefit/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ExplanationOfBenefit", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Export", + "item": [ + { + "name": "GET System Export", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "x-api-key", + "type": "text", + "value": "{{API_KEY}}" + } + ], + "url": { + "raw": "{{API_URL}}/$export?_outputFormat=ndjson&_since=2020-10-13T15:47:51.15Z&_type=Patient", + "host": [ + "{{API_URL}}" + ], + "path": [ + "$export" + ], + "query": [ + { + "key": "_outputFormat", + "value": "ndjson" + }, + { + "key": "_since", + "value": "2020-10-13T15:47:51.15Z" + }, + { + "key": "_type", + "value": "Patient" + } + ] + } + }, + "response": [] + }, + { + "name": "GET System Job Status", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "x-api-key", + "type": "text", + "value": "{{API_KEY}}" + } + ], + "url": { + "raw": "{{API_URL}}/$export/:jobId", + "host": [ + "{{API_URL}}" + ], + "path": [ + "$export", + ":jobId" + ], + "variable": [ + { + "key": "jobId", + "value": "a40b8a52-b7d1-4d0c-8856-8a3ff0e5680a" + } + ] + } + }, + "response": [] + }, + { + "name": "Cancel Export Job", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "type": "text", + "value": "{{API_KEY}}" + } + ], + "url": { + "raw": "{{API_URL}}/$export/:jobId", + "host": [ + "{{API_URL}}" + ], + "path": [ + "$export", + ":jobId" + ], + "variable": [ + { + "key": "jobId", + "value": "1da17d30-7248-4cb5-802b-0a947344dddc" + } + ] + } + }, + "response": [] + } + ] + }, + { + "name": "Family Member History", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "FamilyMemberHistoryHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/FamilyMemberHistory/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "FamilyMemberHistory", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "FamilyMemberHistoryHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/FamilyMemberHistory/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "FamilyMemberHistory", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "FamilyMemberHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/FamilyMemberHistory/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "FamilyMemberHistory", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "FamilyMemberHistoryById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"FamilyMemberHistory\",\n \"id\": \"father\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eFather died of a heart attack aged 74\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"instantiatesUri\": [\n \"http://example.org/family-member-history-questionnaire\"\n ],\n \"status\": \"completed\",\n \"patient\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Patient\"\n },\n \"date\": \"2011-03-18\",\n \"relationship\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"FTH\",\n \"display\": \"father\"\n }\n ]\n },\n \"sex\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/administrative-gender\",\n \"code\": \"male\",\n \"display\": \"Male\"\n }\n ]\n },\n \"condition\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"315619001\",\n \"display\": \"Myocardial Infarction\"\n }\n ],\n \"text\": \"Heart Attack\"\n },\n \"contributedToDeath\": true,\n \"onsetAge\": {\n \"value\": 74,\n \"unit\": \"yr\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"note\": [\n {\n \"text\": \"Was fishing at the time. At least he went doing someting he loved.\"\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/FamilyMemberHistory/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "FamilyMemberHistory", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "FamilyMemberHistoryById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/FamilyMemberHistory/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "FamilyMemberHistory", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "FamilyMemberHistory_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"FamilyMemberHistory\",\n \"id\": \"father\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eFather died of a heart attack aged 74\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"instantiatesUri\": [\n \"http://example.org/family-member-history-questionnaire\"\n ],\n \"status\": \"completed\",\n \"patient\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Patient\"\n },\n \"date\": \"2011-03-18\",\n \"relationship\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"FTH\",\n \"display\": \"father\"\n }\n ]\n },\n \"sex\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/administrative-gender\",\n \"code\": \"male\",\n \"display\": \"Male\"\n }\n ]\n },\n \"condition\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"315619001\",\n \"display\": \"Myocardial Infarction\"\n }\n ],\n \"text\": \"Heart Attack\"\n },\n \"contributedToDeath\": true,\n \"onsetAge\": {\n \"value\": 74,\n \"unit\": \"yr\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"note\": [\n {\n \"text\": \"Was fishing at the time. At least he went doing someting he loved.\"\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/FamilyMemberHistory", + "host": [ + "{{API_URL}}" + ], + "path": [ + "FamilyMemberHistory" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "FamilyMemberHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/FamilyMemberHistory?patient=&definition=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&identifier=&gender=&relationship=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "FamilyMemberHistory" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "definition", + "value": "", + "description": "Instantiates protocol or definition" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "gender", + "value": "", + "description": "A search by a gender code of a family member" + }, + { + "key": "relationship", + "value": "", + "description": "A search by a relationship type" + }, + { + "key": "status", + "value": "", + "description": "partial | completed | entered-in-error | health-unknown" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "FamilyMemberHistoryHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/FamilyMemberHistory/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "FamilyMemberHistory", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Flag", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "FlagHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Flag/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Flag", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "FlagHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Flag/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Flag", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "FlagById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Flag/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Flag", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "FlagById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Flag\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eLarge Dog warning for Peter Patient\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"status\": \"inactive\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/flag-category\",\n \"code\": \"safety\",\n \"display\": \"Safety\"\n }\n ],\n \"text\": \"Safety\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/local\",\n \"code\": \"bigdog\",\n \"display\": \"Big dog\"\n }\n ],\n \"text\": \"Patient has a big dog at his home. Always always wear a suit of armor or take other active counter-measures\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Patient\"\n },\n \"period\": {\n \"start\": \"2015-01-17\",\n \"end\": \"2016-12-01\"\n },\n \"author\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Nancy Nurse\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Flag/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Flag", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "FlagById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Flag/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Flag", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Flag_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Flag\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eLarge Dog warning for Peter Patient\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"12345\"\n }\n ],\n \"status\": \"inactive\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/flag-category\",\n \"code\": \"safety\",\n \"display\": \"Safety\"\n }\n ],\n \"text\": \"Safety\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/local\",\n \"code\": \"bigdog\",\n \"display\": \"Big dog\"\n }\n ],\n \"text\": \"Patient has a big dog at his home. Always always wear a suit of armor or take other active counter-measures\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Patient\"\n },\n \"period\": {\n \"start\": \"2015-01-17\",\n \"end\": \"2016-12-01\"\n },\n \"author\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Nancy Nurse\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Flag", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Flag" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Flag_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Flag?patient=&encounter=&author=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Flag" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "encounter", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" + }, + { + "key": "author", + "value": "", + "description": "Flag creator" + }, + { + "key": "subject", + "value": "", + "description": "The identity of a subject to list flags for" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Business identifier" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "FlagHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Flag/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Flag", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Goal", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "GoalHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Goal/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Goal", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GoalHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Goal/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Goal", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "GoalById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Goal/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Goal", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GoalById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Goal\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003e A simple care goal for a patient to lose weight due to obesity.\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"123\"\n }\n ],\n \"lifecycleStatus\": \"on-hold\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/goal-category\",\n \"code\": \"dietary\"\n }\n ]\n }\n ],\n \"priority\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/goal-priority\",\n \"code\": \"high-priority\",\n \"display\": \"High Priority\"\n }\n ],\n \"text\": \"high\"\n },\n \"description\": {\n \"text\": \"Target weight is 160 to 180 lbs.\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"startDate\": \"2015-04-05\",\n \"target\": [\n {\n \"measure\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"3141-9\",\n \"display\": \"Weight Measured\"\n }\n ]\n },\n \"detailRange\": {\n \"low\": {\n \"value\": 160,\n \"unit\": \"lbs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[lb_av]\"\n },\n \"high\": {\n \"value\": 180,\n \"unit\": \"lbs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[lb_av]\"\n }\n },\n \"dueDate\": \"2016-04-05\"\n }\n ],\n \"statusDate\": \"2016-02-14\",\n \"statusReason\": \"Patient wants to defer weight loss until after honeymoon.\",\n \"expressedBy\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"addresses\": [\n {\n \"display\": \"obesity condition\"\n }\n ],\n \"outcomeReference\": [\n {\n \"reference\": \"Observation/example\",\n \"display\": \"Body Weight Measured\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Goal/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Goal", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GoalById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Goal/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Goal", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Goal_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Goal\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003e A simple care goal for a patient to lose weight due to obesity.\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"123\"\n }\n ],\n \"lifecycleStatus\": \"on-hold\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/goal-category\",\n \"code\": \"dietary\"\n }\n ]\n }\n ],\n \"priority\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/goal-priority\",\n \"code\": \"high-priority\",\n \"display\": \"High Priority\"\n }\n ],\n \"text\": \"high\"\n },\n \"description\": {\n \"text\": \"Target weight is 160 to 180 lbs.\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"startDate\": \"2015-04-05\",\n \"target\": [\n {\n \"measure\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"3141-9\",\n \"display\": \"Weight Measured\"\n }\n ]\n },\n \"detailRange\": {\n \"low\": {\n \"value\": 160,\n \"unit\": \"lbs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[lb_av]\"\n },\n \"high\": {\n \"value\": 180,\n \"unit\": \"lbs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[lb_av]\"\n }\n },\n \"dueDate\": \"2016-04-05\"\n }\n ],\n \"statusDate\": \"2016-02-14\",\n \"statusReason\": \"Patient wants to defer weight loss until after honeymoon.\",\n \"expressedBy\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter James Chalmers\"\n },\n \"addresses\": [\n {\n \"display\": \"obesity condition\"\n }\n ],\n \"outcomeReference\": [\n {\n \"reference\": \"Observation/example\",\n \"display\": \"Body Weight Measured\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Goal", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Goal" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Goal_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Goal?patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&category=&start-date=&status=&target-date=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Goal" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "subject", + "value": "", + "description": "Who this goal is intended for" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "category", + "value": "", + "description": "E.g. Treatment, dietary, behavioral, etc." + }, + { + "key": "start-date", + "value": "", + "description": "When goal pursuit begins" + }, + { + "key": "status", + "value": "", + "description": "proposed | accepted | planned | in-progress | on-target | ahead-of-target | behind-target | sustaining | achieved | on-hold | cancelled | entered-in-error | rejected" + }, + { + "key": "target-date", + "value": "", + "description": "Reach goal on or before" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GoalHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Goal/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Goal", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Graph Definition", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "GraphDefinitionHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/GraphDefinition/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GraphDefinition", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GraphDefinitionHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/GraphDefinition/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GraphDefinition", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "GraphDefinitionById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/GraphDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GraphDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GraphDefinitionById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"GraphDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://h7.org/fhir/GraphDefinition/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Document Generation Template\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 04/08/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: FHIR Project\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Specify to include list references when generating a document using the $document operation\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estart\\u003c/b\\u003e: Composition\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003elink\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epath\\u003c/b\\u003e: Composition.section.entry\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Link to List\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003etarget\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: List\\u003c/p\\u003e\\u003ch3\\u003eCompartments\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUse\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRule\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003erequirement\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eidentical\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eLinks\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://h7.org/fhir/GraphDefinition/example\",\n \"name\": \"Document Generation Template\",\n \"status\": \"draft\",\n \"date\": \"2015-08-04\",\n \"publisher\": \"FHIR Project\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"Specify to include list references when generating a document using the $document operation\",\n \"start\": \"Composition\",\n \"link\": [\n {\n \"path\": \"Composition.section.entry\",\n \"description\": \"Link to List\",\n \"target\": [\n {\n \"type\": \"List\",\n \"compartment\": [\n {\n \"use\": \"requirement\",\n \"code\": \"Patient\",\n \"rule\": \"identical\"\n }\n ],\n \"link\": [\n {\n \"path\": \"List.entry.item\",\n \"description\": \"Include any list entries\",\n \"target\": [\n {\n \"type\": \"Resource\",\n \"compartment\": [\n {\n \"use\": \"requirement\",\n \"code\": \"Patient\",\n \"rule\": \"identical\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/GraphDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GraphDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GraphDefinitionById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/GraphDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GraphDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "GraphDefinition_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"GraphDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://h7.org/fhir/GraphDefinition/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Document Generation Template\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 04/08/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: FHIR Project\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Specify to include list references when generating a document using the $document operation\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estart\\u003c/b\\u003e: Composition\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003elink\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epath\\u003c/b\\u003e: Composition.section.entry\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Link to List\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003etarget\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: List\\u003c/p\\u003e\\u003ch3\\u003eCompartments\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUse\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRule\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003erequirement\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eidentical\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eLinks\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://h7.org/fhir/GraphDefinition/example\",\n \"name\": \"Document Generation Template\",\n \"status\": \"draft\",\n \"date\": \"2015-08-04\",\n \"publisher\": \"FHIR Project\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"Specify to include list references when generating a document using the $document operation\",\n \"start\": \"Composition\",\n \"link\": [\n {\n \"path\": \"Composition.section.entry\",\n \"description\": \"Link to List\",\n \"target\": [\n {\n \"type\": \"List\",\n \"compartment\": [\n {\n \"use\": \"requirement\",\n \"code\": \"Patient\",\n \"rule\": \"identical\"\n }\n ],\n \"link\": [\n {\n \"path\": \"List.entry.item\",\n \"description\": \"Include any list entries\",\n \"target\": [\n {\n \"type\": \"Resource\",\n \"compartment\": [\n {\n \"use\": \"requirement\",\n \"code\": \"Patient\",\n \"rule\": \"identical\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/GraphDefinition", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GraphDefinition" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GraphDefinition_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/GraphDefinition?_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&jurisdiction=&name=&publisher=&start=&status=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GraphDefinition" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "The graph definition publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the graph definition" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the graph definition" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the graph definition" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the graph definition" + }, + { + "key": "start", + "value": "", + "description": "Type of resource at which the graph starts" + }, + { + "key": "status", + "value": "", + "description": "The current status of the graph definition" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the graph definition" + }, + { + "key": "version", + "value": "", + "description": "The business version of the graph definition" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GraphDefinitionHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/GraphDefinition/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GraphDefinition", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Group", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "GroupHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Group/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Group", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GroupHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Group/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Group", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "GroupById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Group/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Group", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GroupById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Group\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eHerd of 25 horses\\u003c/p\\u003e\\n \\u003cp\\u003eGender: mixed\\u003c/p\\u003e\\n \\u003cp\\u003eOwner: John Smith\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://someveterinarianclinic.org/fhir/NamingSystem/herds\",\n \"value\": \"12345\"\n }\n ],\n \"type\": \"animal\",\n \"actual\": true,\n \"code\": {\n \"text\": \"Horse\"\n },\n \"name\": \"John\\u0027s herd\",\n \"quantity\": 25,\n \"characteristic\": [\n {\n \"code\": {\n \"text\": \"gender\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"mixed\"\n },\n \"exclude\": false\n },\n {\n \"code\": {\n \"text\": \"owner\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"John Smith\"\n },\n \"exclude\": false\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Group/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Group", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GroupById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Group/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Group", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Group_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Group\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eHerd of 25 horses\\u003c/p\\u003e\\n \\u003cp\\u003eGender: mixed\\u003c/p\\u003e\\n \\u003cp\\u003eOwner: John Smith\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://someveterinarianclinic.org/fhir/NamingSystem/herds\",\n \"value\": \"12345\"\n }\n ],\n \"type\": \"animal\",\n \"actual\": true,\n \"code\": {\n \"text\": \"Horse\"\n },\n \"name\": \"John\\u0027s herd\",\n \"quantity\": 25,\n \"characteristic\": [\n {\n \"code\": {\n \"text\": \"gender\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"mixed\"\n },\n \"exclude\": false\n },\n {\n \"code\": {\n \"text\": \"owner\"\n },\n \"valueCodeableConcept\": {\n \"text\": \"John Smith\"\n },\n \"exclude\": false\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Group", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Group" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Group_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Group?member=&_id=&_lastUpdated=&_profile=&_security=&_tag=&actual=&characteristic=&characteristic-value=&code=&exclude=&identifier=&type=&value=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Group" + ], + "query": [ + { + "key": "member", + "value": "", + "description": "Reference to the group member" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "actual", + "value": "", + "description": "Descriptive or actual" + }, + { + "key": "characteristic", + "value": "", + "description": "Kind of characteristic" + }, + { + "key": "characteristic-value", + "value": "", + "description": "A composite of both characteristic and value" + }, + { + "key": "code", + "value": "", + "description": "The kind of resources contained" + }, + { + "key": "exclude", + "value": "", + "description": "Group includes or excludes" + }, + { + "key": "identifier", + "value": "", + "description": "Unique id" + }, + { + "key": "type", + "value": "", + "description": "The type of resources the group contains" + }, + { + "key": "value", + "value": "", + "description": "Value held by characteristic" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GroupHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Group/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Group", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Guidance Response", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "GuidanceResponseHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/GuidanceResponse/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GuidanceResponse", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GuidanceResponseHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/GuidanceResponse/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GuidanceResponse", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "GuidanceResponseById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/GuidanceResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GuidanceResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GuidanceResponseById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"GuidanceResponse\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequestIdentifier\\u003c/b\\u003e: guidanceRequest1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: guidanceResponse1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emodule\\u003c/b\\u003e: \\u003ca\\u003ehttp://someguidelineprovider.org/radiology-appropriateness-guidelines.html\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: success\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrenceDateTime\\u003c/b\\u003e: 10/03/2017 4:02:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eDevice/software\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Guideline Appropriate Ordering Assessment \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoutputParameters\\u003c/b\\u003e: id: outputParameters1\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Parameters\",\n \"id\": \"outputParameters1\",\n \"parameter\": [\n {\n \"name\": \"score\",\n \"valueDecimal\": 7\n },\n {\n \"name\": \"item-assessed\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://www.ama-assn.org/go/cpt\",\n \"code\": \"70450\",\n \"display\": \"CT, head, wo iv contrast\"\n }\n ]\n }\n },\n {\n \"name\": \"device\",\n \"valueReference\": {\n \"reference\": \"Device/software\"\n }\n },\n {\n \"name\": \"guideline-followed\",\n \"valueUri\": \"http://someguidelineprovider.org/radiology-appropriateness-guidelines.html\"\n }\n ]\n }\n ],\n \"requestIdentifier\": {\n \"system\": \"http://example.org\",\n \"value\": \"guidanceRequest1\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org\",\n \"value\": \"guidanceResponse1\"\n }\n ],\n \"moduleUri\": \"http://someguidelineprovider.org/radiology-appropriateness-guidelines.html\",\n \"status\": \"success\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"occurrenceDateTime\": \"2017-03-10T16:02:00Z\",\n \"performer\": {\n \"reference\": \"Device/software\"\n },\n \"reasonCode\": [\n {\n \"text\": \"Guideline Appropriate Ordering Assessment\"\n }\n ],\n \"outputParameters\": {\n \"reference\": \"#outputParameters1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/GuidanceResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GuidanceResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GuidanceResponseById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/GuidanceResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GuidanceResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "GuidanceResponse_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"GuidanceResponse\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequestIdentifier\\u003c/b\\u003e: guidanceRequest1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: guidanceResponse1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emodule\\u003c/b\\u003e: \\u003ca\\u003ehttp://someguidelineprovider.org/radiology-appropriateness-guidelines.html\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: success\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrenceDateTime\\u003c/b\\u003e: 10/03/2017 4:02:00 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e: \\u003ca\\u003eDevice/software\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Guideline Appropriate Ordering Assessment \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoutputParameters\\u003c/b\\u003e: id: outputParameters1\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Parameters\",\n \"id\": \"outputParameters1\",\n \"parameter\": [\n {\n \"name\": \"score\",\n \"valueDecimal\": 7\n },\n {\n \"name\": \"item-assessed\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://www.ama-assn.org/go/cpt\",\n \"code\": \"70450\",\n \"display\": \"CT, head, wo iv contrast\"\n }\n ]\n }\n },\n {\n \"name\": \"device\",\n \"valueReference\": {\n \"reference\": \"Device/software\"\n }\n },\n {\n \"name\": \"guideline-followed\",\n \"valueUri\": \"http://someguidelineprovider.org/radiology-appropriateness-guidelines.html\"\n }\n ]\n }\n ],\n \"requestIdentifier\": {\n \"system\": \"http://example.org\",\n \"value\": \"guidanceRequest1\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.org\",\n \"value\": \"guidanceResponse1\"\n }\n ],\n \"moduleUri\": \"http://someguidelineprovider.org/radiology-appropriateness-guidelines.html\",\n \"status\": \"success\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"occurrenceDateTime\": \"2017-03-10T16:02:00Z\",\n \"performer\": {\n \"reference\": \"Device/software\"\n },\n \"reasonCode\": [\n {\n \"text\": \"Guideline Appropriate Ordering Assessment\"\n }\n ],\n \"outputParameters\": {\n \"reference\": \"#outputParameters1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/GuidanceResponse", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GuidanceResponse" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GuidanceResponse_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/GuidanceResponse?patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&request=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GuidanceResponse" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "The identity of a patient to search for guidance response results" + }, + { + "key": "subject", + "value": "", + "description": "The subject that the guidance response is about" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "The identifier of the guidance response" + }, + { + "key": "request", + "value": "", + "description": "The identifier of the request associated with the response" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "GuidanceResponseHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/GuidanceResponse/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "GuidanceResponse", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Healthcare Service", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "HealthcareServiceHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/HealthcareService/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "HealthcareService", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "HealthcareServiceHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/HealthcareService/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "HealthcareService", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "HealthcareServiceById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/HealthcareService/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "HealthcareService", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "HealthcareServiceById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"HealthcareService\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t25 Dec 2013 9:15am - 9:30am: \\u003cb\\u003eBusy\\u003c/b\\u003e Physiotherapy\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"DenBurg\",\n \"description\": \"Greater Denburg area\",\n \"mode\": \"instance\",\n \"physicalType\": {\n \"coding\": [\n {\n \"code\": \"area\",\n \"display\": \"Area\"\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"system\": \"http://example.org/shared-ids\",\n \"value\": \"HS-12\"\n }\n ],\n \"active\": true,\n \"providedBy\": {\n \"reference\": \"Organization/f001\",\n \"display\": \"Burgers University Medical Center\"\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/service-category\",\n \"code\": \"8\",\n \"display\": \"Counselling\"\n }\n ],\n \"text\": \"Counselling\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394913002\",\n \"display\": \"Psychotherapy\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394587001\",\n \"display\": \"Psychiatry\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"47505003\",\n \"display\": \"Posttraumatic stress disorder\"\n }\n ]\n }\n ],\n \"location\": [\n {\n \"reference\": \"Location/1\"\n }\n ],\n \"name\": \"Consulting psychologists and/or psychology services\",\n \"comment\": \"Providing Specialist psychology services to the greater Den Burg area, many years of experience dealing with PTSD issues\",\n \"extraDetails\": \"Several assessments are required for these specialist services, and the waiting times can be greater than 3 months at times. Existing patients are prioritized when requesting appointments on the schedule.\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"(555) silent\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"directaddress@example.com\",\n \"use\": \"work\"\n }\n ],\n \"coverageArea\": [\n {\n \"reference\": \"#DenBurg\",\n \"display\": \"Greater Denburg area\"\n }\n ],\n \"serviceProvisionCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/service-provision-conditions\",\n \"code\": \"cost\",\n \"display\": \"Fees apply\"\n }\n ]\n }\n ],\n \"eligibility\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"display\": \"DVA Required\"\n }\n ]\n },\n \"comment\": \"Evidence of application for DVA status may be sufficient for commencing assessment\"\n }\n ],\n \"program\": [\n {\n \"text\": \"PTSD outreach\"\n }\n ],\n \"characteristic\": [\n {\n \"coding\": [\n {\n \"display\": \"Wheelchair access\"\n }\n ]\n }\n ],\n \"referralMethod\": [\n {\n \"coding\": [\n {\n \"code\": \"phone\",\n \"display\": \"Phone\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"fax\",\n \"display\": \"Fax\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"elec\",\n \"display\": \"Secure Messaging\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"semail\",\n \"display\": \"Secure Email\"\n }\n ]\n }\n ],\n \"appointmentRequired\": false,\n \"availableTime\": [\n {\n \"daysOfWeek\": [\n \"wed\"\n ],\n \"allDay\": true\n },\n {\n \"daysOfWeek\": [\n \"mon\",\n \"tue\",\n \"thu\",\n \"fri\"\n ],\n \"availableStartTime\": \"08:30:00\",\n \"availableEndTime\": \"05:30:00\"\n },\n {\n \"daysOfWeek\": [\n \"sat\",\n \"fri\"\n ],\n \"availableStartTime\": \"09:30:00\",\n \"availableEndTime\": \"04:30:00\"\n }\n ],\n \"notAvailable\": [\n {\n \"description\": \"Christmas/Boxing Day\",\n \"during\": {\n \"start\": \"2015-12-25\",\n \"end\": \"2015-12-26\"\n }\n },\n {\n \"description\": \"New Years Day\",\n \"during\": {\n \"start\": \"2016-01-01\",\n \"end\": \"2016-01-01\"\n }\n }\n ],\n \"availabilityExceptions\": \"Reduced capacity is available during the Christmas period\",\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/HealthcareService/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "HealthcareService", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "HealthcareServiceById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/HealthcareService/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "HealthcareService", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "HealthcareService_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"HealthcareService\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t25 Dec 2013 9:15am - 9:30am: \\u003cb\\u003eBusy\\u003c/b\\u003e Physiotherapy\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"DenBurg\",\n \"description\": \"Greater Denburg area\",\n \"mode\": \"instance\",\n \"physicalType\": {\n \"coding\": [\n {\n \"code\": \"area\",\n \"display\": \"Area\"\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"system\": \"http://example.org/shared-ids\",\n \"value\": \"HS-12\"\n }\n ],\n \"active\": true,\n \"providedBy\": {\n \"reference\": \"Organization/f001\",\n \"display\": \"Burgers University Medical Center\"\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/service-category\",\n \"code\": \"8\",\n \"display\": \"Counselling\"\n }\n ],\n \"text\": \"Counselling\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394913002\",\n \"display\": \"Psychotherapy\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394587001\",\n \"display\": \"Psychiatry\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"47505003\",\n \"display\": \"Posttraumatic stress disorder\"\n }\n ]\n }\n ],\n \"location\": [\n {\n \"reference\": \"Location/1\"\n }\n ],\n \"name\": \"Consulting psychologists and/or psychology services\",\n \"comment\": \"Providing Specialist psychology services to the greater Den Burg area, many years of experience dealing with PTSD issues\",\n \"extraDetails\": \"Several assessments are required for these specialist services, and the waiting times can be greater than 3 months at times. Existing patients are prioritized when requesting appointments on the schedule.\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"(555) silent\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"directaddress@example.com\",\n \"use\": \"work\"\n }\n ],\n \"coverageArea\": [\n {\n \"reference\": \"#DenBurg\",\n \"display\": \"Greater Denburg area\"\n }\n ],\n \"serviceProvisionCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/service-provision-conditions\",\n \"code\": \"cost\",\n \"display\": \"Fees apply\"\n }\n ]\n }\n ],\n \"eligibility\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"display\": \"DVA Required\"\n }\n ]\n },\n \"comment\": \"Evidence of application for DVA status may be sufficient for commencing assessment\"\n }\n ],\n \"program\": [\n {\n \"text\": \"PTSD outreach\"\n }\n ],\n \"characteristic\": [\n {\n \"coding\": [\n {\n \"display\": \"Wheelchair access\"\n }\n ]\n }\n ],\n \"referralMethod\": [\n {\n \"coding\": [\n {\n \"code\": \"phone\",\n \"display\": \"Phone\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"fax\",\n \"display\": \"Fax\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"elec\",\n \"display\": \"Secure Messaging\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"semail\",\n \"display\": \"Secure Email\"\n }\n ]\n }\n ],\n \"appointmentRequired\": false,\n \"availableTime\": [\n {\n \"daysOfWeek\": [\n \"wed\"\n ],\n \"allDay\": true\n },\n {\n \"daysOfWeek\": [\n \"mon\",\n \"tue\",\n \"thu\",\n \"fri\"\n ],\n \"availableStartTime\": \"08:30:00\",\n \"availableEndTime\": \"05:30:00\"\n },\n {\n \"daysOfWeek\": [\n \"sat\",\n \"fri\"\n ],\n \"availableStartTime\": \"09:30:00\",\n \"availableEndTime\": \"04:30:00\"\n }\n ],\n \"notAvailable\": [\n {\n \"description\": \"Christmas/Boxing Day\",\n \"during\": {\n \"start\": \"2015-12-25\",\n \"end\": \"2015-12-26\"\n }\n },\n {\n \"description\": \"New Years Day\",\n \"during\": {\n \"start\": \"2016-01-01\",\n \"end\": \"2016-01-01\"\n }\n }\n ],\n \"availabilityExceptions\": \"Reduced capacity is available during the Christmas period\",\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/HealthcareService", + "host": [ + "{{API_URL}}" + ], + "path": [ + "HealthcareService" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "HealthcareService_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/HealthcareService?endpoint=&location=&organization=&_id=&_lastUpdated=&_profile=&_security=&_tag=&active=&category=&characteristic=&identifier=&name=&programname=&type=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "HealthcareService" + ], + "query": [ + { + "key": "endpoint", + "value": "", + "description": "Technical endpoints providing access to services operated for the location" + }, + { + "key": "location", + "value": "", + "description": "The location of the Healthcare Service" + }, + { + "key": "organization", + "value": "", + "description": "The organization that provides this Healthcare Service" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "active", + "value": "", + "description": "The Healthcare Service is currently marked as active" + }, + { + "key": "category", + "value": "", + "description": "Service Category of the Healthcare Service" + }, + { + "key": "characteristic", + "value": "", + "description": "One of the HealthcareService's characteristics" + }, + { + "key": "identifier", + "value": "", + "description": "External identifiers for this item" + }, + { + "key": "name", + "value": "", + "description": "A portion of the Healthcare service name" + }, + { + "key": "programname", + "value": "", + "description": "One of the Program Names serviced by this HealthcareService" + }, + { + "key": "type", + "value": "", + "description": "The type of service provided by this healthcare service" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "HealthcareServiceHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/HealthcareService/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "HealthcareService", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Imaging Manifest", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ImagingManifestHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImagingManifest/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingManifest", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImagingManifestHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImagingManifest/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingManifest", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ImagingManifestById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImagingManifest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingManifest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImagingManifestById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/ImagingManifest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingManifest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImagingManifestById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImagingManifest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingManifest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ImagingManifest_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/ImagingManifest", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingManifest" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImagingManifest_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImagingManifest?patient=&author=&endpoint=&imaging-study=&_id=&_lastUpdated=&_profile=&_security=&_tag=&authoring-time=&identifier=&selected-study=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingManifest" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "author", + "value": "", + "description": "Author of the ImagingManifest (or a DICOM Key Object Selection which it represents)" + }, + { + "key": "endpoint", + "value": "", + "description": "The endpoint for the study or series" + }, + { + "key": "imaging-study", + "value": "", + "description": "ImagingStudy resource selected in the ImagingManifest (or a DICOM Key Object Selection which it represents)" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "authoring-time", + "value": "", + "description": "Time of the ImagingManifest (or a DICOM Key Object Selection which it represents) authoring" + }, + { + "key": "identifier", + "value": "", + "description": "UID of the ImagingManifest (or a DICOM Key Object Selection which it represents)" + }, + { + "key": "selected-study", + "value": "", + "description": "Study selected in the ImagingManifest (or a DICOM Key Object Selection which it represents)" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImagingManifestHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImagingManifest/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingManifest", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Imaging Study", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ImagingStudyHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImagingStudy/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingStudy", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImagingStudyHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImagingStudy/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingStudy", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ImagingStudyById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImagingStudy/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingStudy", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImagingStudyById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ImagingStudy\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eCT Chest. John Smith (MRN: 09236). Accession: W12342398. Performed: 2011-01-01. 3 series, 12 images.\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:dicom:uid\",\n \"value\": \"urn:oid:2.16.124.113543.6003.1154777499.30246.19789.3503430045\"\n }\n ],\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/dicom\"\n },\n \"started\": \"2011-01-01T11:01:20+03:00\",\n \"numberOfSeries\": 1,\n \"numberOfInstances\": 1,\n \"series\": [\n {\n \"uid\": \"2.16.124.113543.6003.2588828330.45298.17418.2723805630\",\n \"number\": 3,\n \"modality\": {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"CT\"\n },\n \"description\": \"CT Surview 180\",\n \"numberOfInstances\": 1,\n \"bodySite\": {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"67734004\",\n \"display\": \"Upper Trunk Structure\"\n },\n \"instance\": [\n {\n \"uid\": \"2.16.124.113543.6003.189642796.63084.16748.2599092903\",\n \"sopClass\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"code\": \"urn:oid:1.2.840.10008.5.1.4.1.1.2\"\n },\n \"number\": 1\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ImagingStudy/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingStudy", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImagingStudyById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImagingStudy/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingStudy", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ImagingStudy_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ImagingStudy\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eCT Chest. John Smith (MRN: 09236). Accession: W12342398. Performed: 2011-01-01. 3 series, 12 images.\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:dicom:uid\",\n \"value\": \"urn:oid:2.16.124.113543.6003.1154777499.30246.19789.3503430045\"\n }\n ],\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/dicom\"\n },\n \"started\": \"2011-01-01T11:01:20+03:00\",\n \"numberOfSeries\": 1,\n \"numberOfInstances\": 1,\n \"series\": [\n {\n \"uid\": \"2.16.124.113543.6003.2588828330.45298.17418.2723805630\",\n \"number\": 3,\n \"modality\": {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"CT\"\n },\n \"description\": \"CT Surview 180\",\n \"numberOfInstances\": 1,\n \"bodySite\": {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"67734004\",\n \"display\": \"Upper Trunk Structure\"\n },\n \"instance\": [\n {\n \"uid\": \"2.16.124.113543.6003.189642796.63084.16748.2599092903\",\n \"sopClass\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"code\": \"urn:oid:1.2.840.10008.5.1.4.1.1.2\"\n },\n \"number\": 1\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ImagingStudy", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingStudy" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImagingStudy_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImagingStudy?patient=&basedon=&context=&endpoint=&performer=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&accession=&bodysite=&dicom-class=&modality=&reason=&series=&started=&study=&uid=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingStudy" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "basedon", + "value": "", + "description": "The order for the image" + }, + { + "key": "context", + "value": "", + "description": "The context of the study" + }, + { + "key": "endpoint", + "value": "", + "description": "The endpoint for te study or series" + }, + { + "key": "performer", + "value": "", + "description": "The person who performed the study" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "accession", + "value": "", + "description": "The accession identifier for the study" + }, + { + "key": "bodysite", + "value": "", + "description": "The body site studied" + }, + { + "key": "dicom-class", + "value": "", + "description": "The type of the instance" + }, + { + "key": "modality", + "value": "", + "description": "The modality of the series" + }, + { + "key": "reason", + "value": "", + "description": "The reason for the study" + }, + { + "key": "series", + "value": "", + "description": "The identifier of the series of images" + }, + { + "key": "started", + "value": "", + "description": "When the study was started" + }, + { + "key": "study", + "value": "", + "description": "The study identifier for the image" + }, + { + "key": "uid", + "value": "", + "description": "The instance unique identifier" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImagingStudyHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImagingStudy/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImagingStudy", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Immunization", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ImmunizationHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Immunization/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Immunization", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImmunizationHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Immunization/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Immunization", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ImmunizationById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Immunization/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Immunization", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImmunizationById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Immunization\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evaccineCode\\u003c/b\\u003e: Fluvax (Influenza) \\u003cspan\\u003e(Details : {urn:oid:1.2.36.1.2001.1005.17 code \\u0027FLUVAX\\u0027 \\u003d \\u0027Fluvax)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epatient\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrence\\u003c/b\\u003e: 10/01/2013\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eprimarySource\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elocation\\u003c/b\\u003e: \\u003ca\\u003eLocation/1\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emanufacturer\\u003c/b\\u003e: \\u003ca\\u003eOrganization/hl7\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elotNumber\\u003c/b\\u003e: AAJN11K\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexpirationDate\\u003c/b\\u003e: 15/02/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esite\\u003c/b\\u003e: left arm \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ActSite code \\u0027LA\\u0027 \\u003d \\u0027left arm\\u0027, given as \\u0027left arm\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eroute\\u003c/b\\u003e: Injection, intramuscular \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration code \\u0027IM\\u0027 \\u003d \\u0027Injection, intramuscular\\u0027, given as \\u0027Injection, intramuscular\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edoseQuantity\\u003c/b\\u003e: 5 mg\\u003cspan\\u003e (Details: UCUM code mg \\u003d \\u0027mg\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efunction\\u003c/b\\u003e: Ordering Provider \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v2-0443 code \\u0027OP\\u0027 \\u003d \\u0027Ordering Provider)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eactor\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efunction\\u003c/b\\u003e: Administering Provider \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v2-0443 code \\u0027AP\\u0027 \\u003d \\u0027Administering Provider)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eactor\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: Notes on adminstration of vaccine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Procedure to meet occupational requirement \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027429060002\\u0027 \\u003d \\u0027Procedure to meet occupational requirement)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eisSubpotent\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003ch3\\u003eEducations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDocumentType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePublicationDate\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePresentationDate\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e253088698300010311120702\\u003c/td\\u003e\\u003ctd\\u003e02/07/2012\\u003c/td\\u003e\\u003ctd\\u003e10/01/2013\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eprogramEligibility\\u003c/b\\u003e: Not Eligible \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/immunization-program-eligibility code \\u0027ineligible\\u0027 \\u003d \\u0027Not Eligible)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efundingSource\\u003c/b\\u003e: Private \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/immunization-funding-source code \\u0027private\\u0027 \\u003d \\u0027Private)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\"\n }\n ],\n \"status\": \"completed\",\n \"vaccineCode\": {\n \"coding\": [\n {\n \"system\": \"urn:oid:1.2.36.1.2001.1005.17\",\n \"code\": \"FLUVAX\"\n }\n ],\n \"text\": \"Fluvax (Influenza)\"\n },\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"occurrenceDateTime\": \"2013-01-10\",\n \"primarySource\": true,\n \"location\": {\n \"reference\": \"Location/1\"\n },\n \"manufacturer\": {\n \"reference\": \"Organization/hl7\"\n },\n \"lotNumber\": \"AAJN11K\",\n \"expirationDate\": \"2015-02-15\",\n \"site\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActSite\",\n \"code\": \"LA\",\n \"display\": \"left arm\"\n }\n ]\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration\",\n \"code\": \"IM\",\n \"display\": \"Injection, intramuscular\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"performer\": [\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0443\",\n \"code\": \"OP\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n },\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0443\",\n \"code\": \"AP\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Notes on adminstration of vaccine\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429060002\"\n }\n ]\n }\n ],\n \"isSubpotent\": true,\n \"education\": [\n {\n \"documentType\": \"253088698300010311120702\",\n \"publicationDate\": \"2012-07-02\",\n \"presentationDate\": \"2013-01-10\"\n }\n ],\n \"programEligibility\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/immunization-program-eligibility\",\n \"code\": \"ineligible\"\n }\n ]\n }\n ],\n \"fundingSource\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/immunization-funding-source\",\n \"code\": \"private\"\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Immunization/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Immunization", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImmunizationById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Immunization/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Immunization", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Immunization_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Immunization\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evaccineCode\\u003c/b\\u003e: Fluvax (Influenza) \\u003cspan\\u003e(Details : {urn:oid:1.2.36.1.2001.1005.17 code \\u0027FLUVAX\\u0027 \\u003d \\u0027Fluvax)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epatient\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrence\\u003c/b\\u003e: 10/01/2013\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eprimarySource\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elocation\\u003c/b\\u003e: \\u003ca\\u003eLocation/1\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emanufacturer\\u003c/b\\u003e: \\u003ca\\u003eOrganization/hl7\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elotNumber\\u003c/b\\u003e: AAJN11K\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexpirationDate\\u003c/b\\u003e: 15/02/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esite\\u003c/b\\u003e: left arm \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-ActSite code \\u0027LA\\u0027 \\u003d \\u0027left arm\\u0027, given as \\u0027left arm\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eroute\\u003c/b\\u003e: Injection, intramuscular \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration code \\u0027IM\\u0027 \\u003d \\u0027Injection, intramuscular\\u0027, given as \\u0027Injection, intramuscular\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edoseQuantity\\u003c/b\\u003e: 5 mg\\u003cspan\\u003e (Details: UCUM code mg \\u003d \\u0027mg\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efunction\\u003c/b\\u003e: Ordering Provider \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v2-0443 code \\u0027OP\\u0027 \\u003d \\u0027Ordering Provider)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eactor\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eperformer\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efunction\\u003c/b\\u003e: Administering Provider \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v2-0443 code \\u0027AP\\u0027 \\u003d \\u0027Administering Provider)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eactor\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: Notes on adminstration of vaccine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereasonCode\\u003c/b\\u003e: Procedure to meet occupational requirement \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027429060002\\u0027 \\u003d \\u0027Procedure to meet occupational requirement)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eisSubpotent\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003ch3\\u003eEducations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDocumentType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePublicationDate\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePresentationDate\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e253088698300010311120702\\u003c/td\\u003e\\u003ctd\\u003e02/07/2012\\u003c/td\\u003e\\u003ctd\\u003e10/01/2013\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eprogramEligibility\\u003c/b\\u003e: Not Eligible \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/immunization-program-eligibility code \\u0027ineligible\\u0027 \\u003d \\u0027Not Eligible)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efundingSource\\u003c/b\\u003e: Private \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/immunization-funding-source code \\u0027private\\u0027 \\u003d \\u0027Private)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234\"\n }\n ],\n \"status\": \"completed\",\n \"vaccineCode\": {\n \"coding\": [\n {\n \"system\": \"urn:oid:1.2.36.1.2001.1005.17\",\n \"code\": \"FLUVAX\"\n }\n ],\n \"text\": \"Fluvax (Influenza)\"\n },\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"occurrenceDateTime\": \"2013-01-10\",\n \"primarySource\": true,\n \"location\": {\n \"reference\": \"Location/1\"\n },\n \"manufacturer\": {\n \"reference\": \"Organization/hl7\"\n },\n \"lotNumber\": \"AAJN11K\",\n \"expirationDate\": \"2015-02-15\",\n \"site\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActSite\",\n \"code\": \"LA\",\n \"display\": \"left arm\"\n }\n ]\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration\",\n \"code\": \"IM\",\n \"display\": \"Injection, intramuscular\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"performer\": [\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0443\",\n \"code\": \"OP\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n },\n {\n \"function\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0443\",\n \"code\": \"AP\"\n }\n ]\n },\n \"actor\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Notes on adminstration of vaccine\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429060002\"\n }\n ]\n }\n ],\n \"isSubpotent\": true,\n \"education\": [\n {\n \"documentType\": \"253088698300010311120702\",\n \"publicationDate\": \"2012-07-02\",\n \"presentationDate\": \"2013-01-10\"\n }\n ],\n \"programEligibility\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/immunization-program-eligibility\",\n \"code\": \"ineligible\"\n }\n ]\n }\n ],\n \"fundingSource\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/immunization-funding-source\",\n \"code\": \"private\"\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Immunization", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Immunization" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Immunization_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Immunization?patient=&location=&manufacturer=&practitioner=&reaction=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&dose-sequence=&lot-number=¬given=&reaction-date=&reason=&reason-not-given=&status=&vaccine-code=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Immunization" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "location", + "value": "", + "description": "The service delivery location or facility in which the vaccine was / was to be administered" + }, + { + "key": "manufacturer", + "value": "", + "description": "Vaccine Manufacturer" + }, + { + "key": "practitioner", + "value": "", + "description": "The practitioner who played a role in the vaccination" + }, + { + "key": "reaction", + "value": "", + "description": "Additional information on reaction" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "dose-sequence", + "value": "", + "description": "Dose number within series" + }, + { + "key": "lot-number", + "value": "", + "description": "Vaccine Lot Number" + }, + { + "key": "notgiven", + "value": "", + "description": "Administrations which were not given" + }, + { + "key": "reaction-date", + "value": "", + "description": "When reaction started" + }, + { + "key": "reason", + "value": "", + "description": "Why immunization occurred" + }, + { + "key": "reason-not-given", + "value": "", + "description": "Explanation of reason vaccination was not administered" + }, + { + "key": "status", + "value": "", + "description": "Immunization event status" + }, + { + "key": "vaccine-code", + "value": "", + "description": "Vaccine Product Administered" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImmunizationHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Immunization/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Immunization", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Immunization Recommendation", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ImmunizationRecommendationHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImmunizationRecommendation/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImmunizationRecommendation", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImmunizationRecommendationHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImmunizationRecommendation/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImmunizationRecommendation", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ImmunizationRecommendationById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImmunizationRecommendation/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImmunizationRecommendation", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImmunizationRecommendationById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ImmunizationRecommendation\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eAuthored by Joginder Madra\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.1235\"\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"date\": \"2015-02-09T11:04:15.817-05:00\",\n \"authority\": {\n \"reference\": \"Organization/hl7\"\n },\n \"recommendation\": [\n {\n \"vaccineCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"14745005\",\n \"display\": \"Hepatitis A vaccine\"\n }\n ]\n }\n ],\n \"forecastStatus\": {\n \"text\": \"Not Complete\"\n },\n \"dateCriterion\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion\",\n \"code\": \"earliest\",\n \"display\": \"Earliest Date\"\n }\n ]\n },\n \"value\": \"2015-12-01T00:00:00-05:00\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion\",\n \"code\": \"recommended\",\n \"display\": \"Recommended\"\n }\n ]\n },\n \"value\": \"2015-12-01T00:00:00-05:00\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion\",\n \"code\": \"overdue\",\n \"display\": \"Past Due Date\"\n }\n ]\n },\n \"value\": \"2016-12-28T00:00:00-05:00\"\n }\n ],\n \"description\": \"First sequence in protocol\",\n \"series\": \"Vaccination Series 1\",\n \"doseNumberPositiveInt\": 1,\n \"seriesDosesPositiveInt\": 3,\n \"supportingImmunization\": [\n {\n \"reference\": \"Immunization/example\"\n }\n ],\n \"supportingPatientInformation\": [\n {\n \"reference\": \"Observation/example\"\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ImmunizationRecommendation/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImmunizationRecommendation", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImmunizationRecommendationById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImmunizationRecommendation/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImmunizationRecommendation", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ImmunizationRecommendation_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ImmunizationRecommendation\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eAuthored by Joginder Madra\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.1235\"\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"date\": \"2015-02-09T11:04:15.817-05:00\",\n \"authority\": {\n \"reference\": \"Organization/hl7\"\n },\n \"recommendation\": [\n {\n \"vaccineCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"14745005\",\n \"display\": \"Hepatitis A vaccine\"\n }\n ]\n }\n ],\n \"forecastStatus\": {\n \"text\": \"Not Complete\"\n },\n \"dateCriterion\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion\",\n \"code\": \"earliest\",\n \"display\": \"Earliest Date\"\n }\n ]\n },\n \"value\": \"2015-12-01T00:00:00-05:00\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion\",\n \"code\": \"recommended\",\n \"display\": \"Recommended\"\n }\n ]\n },\n \"value\": \"2015-12-01T00:00:00-05:00\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion\",\n \"code\": \"overdue\",\n \"display\": \"Past Due Date\"\n }\n ]\n },\n \"value\": \"2016-12-28T00:00:00-05:00\"\n }\n ],\n \"description\": \"First sequence in protocol\",\n \"series\": \"Vaccination Series 1\",\n \"doseNumberPositiveInt\": 1,\n \"seriesDosesPositiveInt\": 3,\n \"supportingImmunization\": [\n {\n \"reference\": \"Immunization/example\"\n }\n ],\n \"supportingPatientInformation\": [\n {\n \"reference\": \"Observation/example\"\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ImmunizationRecommendation", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImmunizationRecommendation" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImmunizationRecommendation_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImmunizationRecommendation?information=&patient=&support=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&dose-number=&dose-sequence=&identifier=&status=&target-disease=&vaccine-type=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImmunizationRecommendation" + ], + "query": [ + { + "key": "information", + "value": "", + "description": "Patient observations supporting recommendation" + }, + { + "key": "patient", + "value": "", + "description": "Who this profile is for" + }, + { + "key": "support", + "value": "", + "description": "Past immunizations supporting recommendation" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Date recommendation created" + }, + { + "key": "dose-number", + "value": "", + "description": "Recommended dose number" + }, + { + "key": "dose-sequence", + "value": "", + "description": "Dose number within sequence" + }, + { + "key": "identifier", + "value": "", + "description": "Business identifier" + }, + { + "key": "status", + "value": "", + "description": "Vaccine administration status" + }, + { + "key": "target-disease", + "value": "", + "description": "Disease to be immunized against" + }, + { + "key": "vaccine-type", + "value": "", + "description": "Vaccine recommendation applies to" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImmunizationRecommendationHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImmunizationRecommendation/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImmunizationRecommendation", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Implementation Guide", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ImplementationGuideHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImplementationGuide/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImplementationGuide", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImplementationGuideHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImplementationGuide/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImplementationGuide", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ImplementationGuideById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImplementationGuide/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImplementationGuide", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImplementationGuideById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ImplementationGuide\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/us/daf\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Data Access Framework (DAF)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 01/01/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: ONC / HL7 Joint project\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: , \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: The Data Access Framework (DAF) Initiative leverages the HL7 FHIR standards to standardize access to Meaningful Use Stage 2 structured information both within the organization and from external organizations\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United States of America \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027US\\u0027 \\u003d \\u0027United States of America)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecopyright\\u003c/b\\u003e: Published by ONC under the standard FHIR license (CC0)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epackageId\\u003c/b\\u003e: hl7.fhir.us.daf\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elicense\\u003c/b\\u003e: CC0-1.0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efhirVersion\\u003c/b\\u003e: 4.0.1\\u003c/p\\u003e\\u003ch3\\u003eDependsOns\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUri\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/ImplementationGuide/uscore\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eGlobals\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eProfile\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/us/core/StructureDefinition/patient\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003edefinition\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eGroupings\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etest\\u003c/td\\u003e\\u003ctd\\u003eBase package (not broken up into multiple packages)\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eResources\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReference\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eExample[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/test\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eTest Example\\u003c/td\\u003e\\u003ctd\\u003eA test example to show how an implementation guide works\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/us/core/StructureDefinition/patient\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003epage\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: \\u003ca\\u003epatient-example.html\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etitle\\u003c/b\\u003e: Example Patient Page\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003egeneration\\u003c/b\\u003e: html\\u003c/p\\u003e\\u003ch3\\u003ePages\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003ch3\\u003eParameters\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eValue\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eapply\\u003c/td\\u003e\\u003ctd\\u003eversion\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003emanifest\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erendering\\u003c/b\\u003e: \\u003ca\\u003ehttp://hl7.org/fhir/us/daf\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eResources\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReference\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eExample[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRelativePath\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/test\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/us/core/StructureDefinition/patient\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003epatient-test.html#patient-test\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003ePages\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTitle\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAnchor\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epatient-test.html\\u003c/td\\u003e\\u003ctd\\u003eTest Patient Example\\u003c/td\\u003e\\u003ctd\\u003epatient-test\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eimage\\u003c/b\\u003e: fhir.png\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eother\\u003c/b\\u003e: fhir.css\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/us/daf\",\n \"version\": \"0\",\n \"name\": \"Data Access Framework (DAF)\",\n \"status\": \"draft\",\n \"experimental\": false,\n \"date\": \"2015-01-01\",\n \"publisher\": \"ONC / HL7 Joint project\",\n \"contact\": [\n {\n \"name\": \"ONC\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://www.healthit.gov\"\n }\n ]\n },\n {\n \"name\": \"HL7\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"The Data Access Framework (DAF) Initiative leverages the HL7 FHIR standards to standardize access to Meaningful Use Stage 2 structured information both within the organization and from external organizations\",\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"copyright\": \"Published by ONC under the standard FHIR license (CC0)\",\n \"packageId\": \"hl7.fhir.us.daf\",\n \"license\": \"CC0-1.0\",\n \"fhirVersion\": [\n \"4.0.1\"\n ],\n \"dependsOn\": [\n {\n \"uri\": \"http://hl7.org/fhir/ImplementationGuide/uscore\"\n }\n ],\n \"global\": [\n {\n \"type\": \"Patient\",\n \"profile\": \"http://hl7.org/fhir/us/core/StructureDefinition/patient\"\n }\n ],\n \"definition\": {\n \"grouping\": [\n {\n \"name\": \"test\",\n \"description\": \"Base package (not broken up into multiple packages)\"\n }\n ],\n \"resource\": [\n {\n \"reference\": {\n \"reference\": \"Patient/test\"\n },\n \"name\": \"Test Example\",\n \"description\": \"A test example to show how an implementation guide works\",\n \"exampleCanonical\": \"http://hl7.org/fhir/us/core/StructureDefinition/patient\"\n }\n ],\n \"page\": {\n \"nameUrl\": \"patient-example.html\",\n \"title\": \"Example Patient Page\",\n \"generation\": \"html\",\n \"page\": [\n {\n \"nameUrl\": \"list.html\",\n \"title\": \"Value Set Page\",\n \"generation\": \"html\"\n }\n ]\n },\n \"parameter\": [\n {\n \"code\": \"apply\",\n \"value\": \"version\"\n }\n ]\n },\n \"manifest\": {\n \"rendering\": \"http://hl7.org/fhir/us/daf\",\n \"resource\": [\n {\n \"reference\": {\n \"reference\": \"Patient/test\"\n },\n \"exampleCanonical\": \"http://hl7.org/fhir/us/core/StructureDefinition/patient\",\n \"relativePath\": \"patient-test.html#patient-test\"\n }\n ],\n \"page\": [\n {\n \"name\": \"patient-test.html\",\n \"title\": \"Test Patient Example\",\n \"anchor\": [\n \"patient-test\",\n \"tx\",\n \"uml\"\n ]\n }\n ],\n \"image\": [\n \"fhir.png\"\n ],\n \"other\": [\n \"fhir.css\"\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ImplementationGuide/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImplementationGuide", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImplementationGuideById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImplementationGuide/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImplementationGuide", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ImplementationGuide_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ImplementationGuide\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/us/daf\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Data Access Framework (DAF)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 01/01/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: ONC / HL7 Joint project\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: , \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: The Data Access Framework (DAF) Initiative leverages the HL7 FHIR standards to standardize access to Meaningful Use Stage 2 structured information both within the organization and from external organizations\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United States of America \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027US\\u0027 \\u003d \\u0027United States of America)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecopyright\\u003c/b\\u003e: Published by ONC under the standard FHIR license (CC0)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epackageId\\u003c/b\\u003e: hl7.fhir.us.daf\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003elicense\\u003c/b\\u003e: CC0-1.0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003efhirVersion\\u003c/b\\u003e: 4.0.1\\u003c/p\\u003e\\u003ch3\\u003eDependsOns\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUri\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/ImplementationGuide/uscore\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eGlobals\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eProfile\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/us/core/StructureDefinition/patient\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003edefinition\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eGroupings\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etest\\u003c/td\\u003e\\u003ctd\\u003eBase package (not broken up into multiple packages)\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eResources\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReference\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eExample[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/test\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eTest Example\\u003c/td\\u003e\\u003ctd\\u003eA test example to show how an implementation guide works\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/us/core/StructureDefinition/patient\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003epage\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: \\u003ca\\u003epatient-example.html\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etitle\\u003c/b\\u003e: Example Patient Page\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003egeneration\\u003c/b\\u003e: html\\u003c/p\\u003e\\u003ch3\\u003ePages\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003ch3\\u003eParameters\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eValue\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eapply\\u003c/td\\u003e\\u003ctd\\u003eversion\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003emanifest\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erendering\\u003c/b\\u003e: \\u003ca\\u003ehttp://hl7.org/fhir/us/daf\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eResources\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eReference\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eExample[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRelativePath\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePatient/test\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/us/core/StructureDefinition/patient\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003epatient-test.html#patient-test\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003ePages\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTitle\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAnchor\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epatient-test.html\\u003c/td\\u003e\\u003ctd\\u003eTest Patient Example\\u003c/td\\u003e\\u003ctd\\u003epatient-test\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eimage\\u003c/b\\u003e: fhir.png\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eother\\u003c/b\\u003e: fhir.css\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/us/daf\",\n \"version\": \"0\",\n \"name\": \"Data Access Framework (DAF)\",\n \"status\": \"draft\",\n \"experimental\": false,\n \"date\": \"2015-01-01\",\n \"publisher\": \"ONC / HL7 Joint project\",\n \"contact\": [\n {\n \"name\": \"ONC\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://www.healthit.gov\"\n }\n ]\n },\n {\n \"name\": \"HL7\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"The Data Access Framework (DAF) Initiative leverages the HL7 FHIR standards to standardize access to Meaningful Use Stage 2 structured information both within the organization and from external organizations\",\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"copyright\": \"Published by ONC under the standard FHIR license (CC0)\",\n \"packageId\": \"hl7.fhir.us.daf\",\n \"license\": \"CC0-1.0\",\n \"fhirVersion\": [\n \"4.0.1\"\n ],\n \"dependsOn\": [\n {\n \"uri\": \"http://hl7.org/fhir/ImplementationGuide/uscore\"\n }\n ],\n \"global\": [\n {\n \"type\": \"Patient\",\n \"profile\": \"http://hl7.org/fhir/us/core/StructureDefinition/patient\"\n }\n ],\n \"definition\": {\n \"grouping\": [\n {\n \"name\": \"test\",\n \"description\": \"Base package (not broken up into multiple packages)\"\n }\n ],\n \"resource\": [\n {\n \"reference\": {\n \"reference\": \"Patient/test\"\n },\n \"name\": \"Test Example\",\n \"description\": \"A test example to show how an implementation guide works\",\n \"exampleCanonical\": \"http://hl7.org/fhir/us/core/StructureDefinition/patient\"\n }\n ],\n \"page\": {\n \"nameUrl\": \"patient-example.html\",\n \"title\": \"Example Patient Page\",\n \"generation\": \"html\",\n \"page\": [\n {\n \"nameUrl\": \"list.html\",\n \"title\": \"Value Set Page\",\n \"generation\": \"html\"\n }\n ]\n },\n \"parameter\": [\n {\n \"code\": \"apply\",\n \"value\": \"version\"\n }\n ]\n },\n \"manifest\": {\n \"rendering\": \"http://hl7.org/fhir/us/daf\",\n \"resource\": [\n {\n \"reference\": {\n \"reference\": \"Patient/test\"\n },\n \"exampleCanonical\": \"http://hl7.org/fhir/us/core/StructureDefinition/patient\",\n \"relativePath\": \"patient-test.html#patient-test\"\n }\n ],\n \"page\": [\n {\n \"name\": \"patient-test.html\",\n \"title\": \"Test Patient Example\",\n \"anchor\": [\n \"patient-test\",\n \"tx\",\n \"uml\"\n ]\n }\n ],\n \"image\": [\n \"fhir.png\"\n ],\n \"other\": [\n \"fhir.css\"\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ImplementationGuide", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImplementationGuide" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImplementationGuide_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImplementationGuide?resource=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&dependency=&description=&experimental=&jurisdiction=&name=&publisher=&status=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImplementationGuide" + ], + "query": [ + { + "key": "resource", + "value": "", + "description": "Location of the resource" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "The implementation guide publication date" + }, + { + "key": "dependency", + "value": "", + "description": "Where to find dependency" + }, + { + "key": "description", + "value": "", + "description": "The description of the implementation guide" + }, + { + "key": "experimental", + "value": "", + "description": "For testing purposes, not real usage" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the implementation guide" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the implementation guide" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the implementation guide" + }, + { + "key": "status", + "value": "", + "description": "The current status of the implementation guide" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the implementation guide" + }, + { + "key": "version", + "value": "", + "description": "The business version of the implementation guide" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ImplementationGuideHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ImplementationGuide/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ImplementationGuide", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Library", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "LibraryHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Library/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Library", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "LibraryHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Library/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Library", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "LibraryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Library/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Library", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "LibraryById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Library\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eLibrary/example\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eIdentifier: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003eChalmydiaScreening_Common\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eVersion: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e2.0.0\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTitle: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eChlamydia Screening Common Library\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eType: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003elogic-library\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003edraft\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDescription: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eCommon Logic for adherence to Chlamydia Screening guidelines\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTopic: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eChlamydia Screening\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eRelated: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003edepends-on\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eResource: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003eLibrary/library-quick-model-definition\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eData Requirements: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cdiv\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003eCondition\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode filter:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003epath: \\u003c/b\\u003e\\n \\u003cspan\\u003ecode\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalueset: \\u003c/b\\u003e\\n \\u003cspan\\u003eOther Female Reproductive Conditions\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/div\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContent: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003etext/cql\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eurl: \\u003c/b\\u003e\\n \\u003cspan\\u003elibrary-example-content.cql\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"value\": \"ChalmydiaScreening_Common\"\n }\n ],\n \"version\": \"2.0.0\",\n \"title\": \"Chlamydia Screening Common Library\",\n \"status\": \"draft\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"logic-library\"\n }\n ]\n },\n \"date\": \"2015-07-22\",\n \"description\": \"Common Logic for adherence to Chlamydia Screening guidelines\",\n \"topic\": [\n {\n \"text\": \"Chlamydia Screening\"\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"depends-on\",\n \"resource\": \"Library/library-quick-model-definition\"\n }\n ],\n \"dataRequirement\": [\n {\n \"type\": \"Condition\",\n \"codeFilter\": [\n {\n \"path\": \"code\",\n \"valueSet\": \"urn:oid:2.16.840.1.113883.3.464.1003.111.12.1006\"\n }\n ]\n }\n ],\n \"content\": [\n {\n \"contentType\": \"text/cql\",\n \"url\": \"library-example-content.cql\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Library/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Library", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "LibraryById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Library/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Library", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Library_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Library\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eLibrary/example\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eIdentifier: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003eChalmydiaScreening_Common\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eVersion: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e2.0.0\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTitle: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eChlamydia Screening Common Library\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eType: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003elogic-library\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003edraft\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDescription: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eCommon Logic for adherence to Chlamydia Screening guidelines\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTopic: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eChlamydia Screening\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eRelated: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003edepends-on\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eResource: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003eLibrary/library-quick-model-definition\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eData Requirements: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cdiv\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003eCondition\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode filter:\\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003epath: \\u003c/b\\u003e\\n \\u003cspan\\u003ecode\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003evalueset: \\u003c/b\\u003e\\n \\u003cspan\\u003eOther Female Reproductive Conditions\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/div\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContent: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003etype: \\u003c/b\\u003e\\n \\u003cspan\\u003etext/cql\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003eurl: \\u003c/b\\u003e\\n \\u003cspan\\u003elibrary-example-content.cql\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"value\": \"ChalmydiaScreening_Common\"\n }\n ],\n \"version\": \"2.0.0\",\n \"title\": \"Chlamydia Screening Common Library\",\n \"status\": \"draft\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"logic-library\"\n }\n ]\n },\n \"date\": \"2015-07-22\",\n \"description\": \"Common Logic for adherence to Chlamydia Screening guidelines\",\n \"topic\": [\n {\n \"text\": \"Chlamydia Screening\"\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"depends-on\",\n \"resource\": \"Library/library-quick-model-definition\"\n }\n ],\n \"dataRequirement\": [\n {\n \"type\": \"Condition\",\n \"codeFilter\": [\n {\n \"path\": \"code\",\n \"valueSet\": \"urn:oid:2.16.840.1.113883.3.464.1003.111.12.1006\"\n }\n ]\n }\n ],\n \"content\": [\n {\n \"contentType\": \"text/cql\",\n \"url\": \"library-example-content.cql\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Library", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Library" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Library_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Library?composed-of=&depends-on=&derived-from=&predecessor=&successor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&effective=&identifier=&jurisdiction=&name=&publisher=&status=&title=&topic=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Library" + ], + "query": [ + { + "key": "composed-of", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "depends-on", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "derived-from", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "predecessor", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "successor", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "The library publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the library" + }, + { + "key": "effective", + "value": "", + "description": "The time during which the library is intended to be in use" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the library" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the library" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the library" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the library" + }, + { + "key": "status", + "value": "", + "description": "The current status of the library" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the library" + }, + { + "key": "topic", + "value": "", + "description": "Topics associated with the module" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the library" + }, + { + "key": "version", + "value": "", + "description": "The business version of the library" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "LibraryHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Library/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Library", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Linkage", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "LinkageHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Linkage/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Linkage", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "LinkageHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Linkage/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Linkage", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "LinkageById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Linkage/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Linkage", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "LinkageById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Linkage\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eSource:\\u003c/b\\u003e Condition/example - \\u003ci\\u003eSevere burn of left ear (Date: 24-May 2012)\\u003c/i\\u003e\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eAlternate:\\u003c/b\\u003e Condition/condition-example - \\u003ci\\u003eSevere burn of left ear (Date: 24-May 2012)\\u003c/i\\u003e\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"author\": {\n \"reference\": \"Practitioner/f201\"\n },\n \"item\": [\n {\n \"type\": \"source\",\n \"resource\": {\n \"reference\": \"Condition/example\",\n \"display\": \"Severe burn of left ear (Date: 24-May 2012)\"\n }\n },\n {\n \"type\": \"alternate\",\n \"resource\": {\n \"reference\": \"Condition/condition-example\",\n \"display\": \"Severe burn of left ear (Date: 24-May 2012)\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Linkage/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Linkage", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "LinkageById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Linkage/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Linkage", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Linkage_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Linkage\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eSource:\\u003c/b\\u003e Condition/example - \\u003ci\\u003eSevere burn of left ear (Date: 24-May 2012)\\u003c/i\\u003e\\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cb\\u003eAlternate:\\u003c/b\\u003e Condition/condition-example - \\u003ci\\u003eSevere burn of left ear (Date: 24-May 2012)\\u003c/i\\u003e\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"author\": {\n \"reference\": \"Practitioner/f201\"\n },\n \"item\": [\n {\n \"type\": \"source\",\n \"resource\": {\n \"reference\": \"Condition/example\",\n \"display\": \"Severe burn of left ear (Date: 24-May 2012)\"\n }\n },\n {\n \"type\": \"alternate\",\n \"resource\": {\n \"reference\": \"Condition/condition-example\",\n \"display\": \"Severe burn of left ear (Date: 24-May 2012)\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Linkage", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Linkage" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Linkage_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Linkage?author=&_id=&_lastUpdated=&_profile=&_security=&_tag=&item=&source=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Linkage" + ], + "query": [ + { + "key": "author", + "value": "", + "description": "Author of the Linkage" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "item", + "value": "", + "description": "Matches on any item in the Linkage" + }, + { + "key": "source", + "value": "", + "description": "Matches on any item in the Linkage with a type of 'source'" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "LinkageHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Linkage/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Linkage", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "List", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ListHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/List/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "List", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ListHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/List/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "List", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ListById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/List/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "List", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ListById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"List\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable\\u003e\\n \\u003cthead\\u003e\\n \\u003ctr\\u003e\\n \\u003cth\\u003eCondition\\u003c/th\\u003e\\n \\u003cth\\u003eSeverity\\u003c/th\\u003e\\n \\u003cth\\u003eDate\\u003c/th\\u003e\\n \\u003cth\\u003eLocation\\u003c/th\\u003e\\n \\u003cth\\u003eStatus\\u003c/th\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/thead\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eBurnt Ear\\u003c/td\\u003e\\n \\u003ctd\\u003eSevere\\u003c/td\\u003e\\n \\u003ctd\\u003e24-May 2012\\u003c/td\\u003e\\n \\u003ctd\\u003eLeft Ear\\u003c/td\\u003e\\n \\u003ctd\\u003edeleted\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eAsthma\\u003c/td\\u003e\\n \\u003ctd\\u003eMild\\u003c/td\\u003e\\n \\u003ctd\\u003e21-Nov 2012\\u003c/td\\u003e\\n \\u003ctd\\u003e--\\u003c/td\\u003e\\n \\u003ctd\\u003eadded\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:uuid:a9fcea7c-fcdf-4d17-a5e0-f26dda030b59\",\n \"value\": \"23974652\"\n }\n ],\n \"status\": \"current\",\n \"mode\": \"changes\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"date\": \"2012-11-25T22:17:00+11:00\",\n \"source\": {\n \"reference\": \"Patient/example\"\n },\n \"entry\": [\n {\n \"flag\": {\n \"text\": \"Deleted due to error\"\n },\n \"deleted\": true,\n \"item\": {\n \"reference\": \"Condition/example\"\n }\n },\n {\n \"flag\": {\n \"text\": \"Added\"\n },\n \"item\": {\n \"reference\": \"Condition/example2\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/List/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "List", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ListById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/List/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "List", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "List_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"List\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable\\u003e\\n \\u003cthead\\u003e\\n \\u003ctr\\u003e\\n \\u003cth\\u003eCondition\\u003c/th\\u003e\\n \\u003cth\\u003eSeverity\\u003c/th\\u003e\\n \\u003cth\\u003eDate\\u003c/th\\u003e\\n \\u003cth\\u003eLocation\\u003c/th\\u003e\\n \\u003cth\\u003eStatus\\u003c/th\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/thead\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eBurnt Ear\\u003c/td\\u003e\\n \\u003ctd\\u003eSevere\\u003c/td\\u003e\\n \\u003ctd\\u003e24-May 2012\\u003c/td\\u003e\\n \\u003ctd\\u003eLeft Ear\\u003c/td\\u003e\\n \\u003ctd\\u003edeleted\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eAsthma\\u003c/td\\u003e\\n \\u003ctd\\u003eMild\\u003c/td\\u003e\\n \\u003ctd\\u003e21-Nov 2012\\u003c/td\\u003e\\n \\u003ctd\\u003e--\\u003c/td\\u003e\\n \\u003ctd\\u003eadded\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:uuid:a9fcea7c-fcdf-4d17-a5e0-f26dda030b59\",\n \"value\": \"23974652\"\n }\n ],\n \"status\": \"current\",\n \"mode\": \"changes\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"date\": \"2012-11-25T22:17:00+11:00\",\n \"source\": {\n \"reference\": \"Patient/example\"\n },\n \"entry\": [\n {\n \"flag\": {\n \"text\": \"Deleted due to error\"\n },\n \"deleted\": true,\n \"item\": {\n \"reference\": \"Condition/example\"\n }\n },\n {\n \"flag\": {\n \"text\": \"Added\"\n },\n \"item\": {\n \"reference\": \"Condition/example2\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/List", + "host": [ + "{{API_URL}}" + ], + "path": [ + "List" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "List_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/List?patient=&encounter=&item=&source=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&identifier=&empty-reason=¬es=&status=&title=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "List" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "encounter", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" + }, + { + "key": "item", + "value": "", + "description": "Actual entry" + }, + { + "key": "source", + "value": "", + "description": "Who and/or what defined the list contents (aka Author)" + }, + { + "key": "subject", + "value": "", + "description": "If all resources have the same subject" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "empty-reason", + "value": "", + "description": "Why list is empty" + }, + { + "key": "notes", + "value": "", + "description": "The annotation - text content" + }, + { + "key": "status", + "value": "", + "description": "current | retired | entered-in-error" + }, + { + "key": "title", + "value": "", + "description": "Descriptive name for the list" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ListHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/List/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "List", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Location", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "LocationHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Location/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Location", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "LocationHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Location/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Location", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "LocationById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Location/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Location", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "LocationById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Location\",\n \"id\": \"1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eBurgers UMC, South Wing, second floor\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"B1-S.F2\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"South Wing, second floor\",\n \"alias\": [\n \"BU MC, SW, F2\",\n \"Burgers University Medical Center, South Wing, second floor\"\n ],\n \"description\": \"Second floor of the Old South Wing, formerly in use by Psychiatry\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"2328\",\n \"use\": \"work\"\n },\n {\n \"system\": \"fax\",\n \"value\": \"2329\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"second wing admissions\"\n },\n {\n \"system\": \"url\",\n \"value\": \"http://sampleorg.com/southwing\",\n \"use\": \"work\"\n }\n ],\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Galapagosweg 91, Building A\"\n ],\n \"city\": \"Den Burg\",\n \"postalCode\": \"9105 PZ\",\n \"country\": \"NLD\"\n },\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"wi\",\n \"display\": \"Wing\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -83.6945691,\n \"latitude\": 42.25475478,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/f001\"\n },\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Location/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Location", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "LocationById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Location/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Location", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Location_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Location\",\n \"id\": \"1\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eBurgers UMC, South Wing, second floor\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"B1-S.F2\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"South Wing, second floor\",\n \"alias\": [\n \"BU MC, SW, F2\",\n \"Burgers University Medical Center, South Wing, second floor\"\n ],\n \"description\": \"Second floor of the Old South Wing, formerly in use by Psychiatry\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"2328\",\n \"use\": \"work\"\n },\n {\n \"system\": \"fax\",\n \"value\": \"2329\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"second wing admissions\"\n },\n {\n \"system\": \"url\",\n \"value\": \"http://sampleorg.com/southwing\",\n \"use\": \"work\"\n }\n ],\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Galapagosweg 91, Building A\"\n ],\n \"city\": \"Den Burg\",\n \"postalCode\": \"9105 PZ\",\n \"country\": \"NLD\"\n },\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"wi\",\n \"display\": \"Wing\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -83.6945691,\n \"latitude\": 42.25475478,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/f001\"\n },\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Location", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Location" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Location_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Location?endpoint=&organization=&partof=&_id=&_lastUpdated=&_profile=&_security=&_tag=&address=&address-city=&address-country=&address-postalcode=&address-state=&address-use=&identifier=&name=&near=&near-distance=&operational-status=&status=&type=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Location" + ], + "query": [ + { + "key": "endpoint", + "value": "", + "description": "Technical endpoints providing access to services operated for the location" + }, + { + "key": "organization", + "value": "", + "description": "Searches for locations that are managed by the provided organization" + }, + { + "key": "partof", + "value": "", + "description": "A location of which this location is a part" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "address", + "value": "", + "description": "A (part of the) address of the location" + }, + { + "key": "address-city", + "value": "", + "description": "A city specified in an address" + }, + { + "key": "address-country", + "value": "", + "description": "A country specified in an address" + }, + { + "key": "address-postalcode", + "value": "", + "description": "A postal code specified in an address" + }, + { + "key": "address-state", + "value": "", + "description": "A state specified in an address" + }, + { + "key": "address-use", + "value": "", + "description": "A use code specified in an address" + }, + { + "key": "identifier", + "value": "", + "description": "An identifier for the location" + }, + { + "key": "name", + "value": "", + "description": "A portion of the location's name or alias" + }, + { + "key": "near", + "value": "", + "description": "The coordinates expressed as [latitude]:[longitude] (using the WGS84 datum, see notes) to find locations near to (servers may search using a square rather than a circle for efficiency)\n\nRequires the near-distance parameter to be provided also" + }, + { + "key": "near-distance", + "value": "", + "description": "A distance quantity to limit the near search to locations within a specific distance\n\nRequires the near parameter to also be included" + }, + { + "key": "operational-status", + "value": "", + "description": "Searches for locations (typically bed/room) that have an operational status (e.g. contaminated, housekeeping)" + }, + { + "key": "status", + "value": "", + "description": "Searches for locations with a specific kind of status" + }, + { + "key": "type", + "value": "", + "description": "A code for the type of location" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "LocationHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Location/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Location", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Measure", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "MeasureHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Measure/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Measure", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MeasureHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Measure/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Measure", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MeasureById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Measure/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Measure", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MeasureById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/Measure/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Measure", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MeasureById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Measure/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Measure", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Measure_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/Measure", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Measure" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Measure_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Measure?composed-of=&depends-on=&derived-from=&predecessor=&successor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&effective=&identifier=&jurisdiction=&name=&publisher=&status=&title=&topic=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Measure" + ], + "query": [ + { + "key": "composed-of", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "depends-on", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "derived-from", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "predecessor", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "successor", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "The measure publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the measure" + }, + { + "key": "effective", + "value": "", + "description": "The time during which the measure is intended to be in use" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the measure" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the measure" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the measure" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the measure" + }, + { + "key": "status", + "value": "", + "description": "The current status of the measure" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the measure" + }, + { + "key": "topic", + "value": "", + "description": "Topics associated with the module" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the measure" + }, + { + "key": "version", + "value": "", + "description": "The business version of the measure" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MeasureHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Measure/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Measure", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Measure Report", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "MeasureReportHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MeasureReport/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MeasureReport", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MeasureReportHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MeasureReport/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MeasureReport", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MeasureReportById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MeasureReport/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MeasureReport", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MeasureReportById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/MeasureReport/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MeasureReport", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MeasureReportById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MeasureReport/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MeasureReport", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MeasureReport_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/MeasureReport", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MeasureReport" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MeasureReport_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MeasureReport?patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MeasureReport" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "The identity of a patient to search for individual measure report results for" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier of the measure report to be returned" + }, + { + "key": "status", + "value": "", + "description": "The status of the measure report" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MeasureReportHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MeasureReport/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MeasureReport", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Media", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "MediaHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Media/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Media", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MediaHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Media/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Media", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MediaById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Media/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Media", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MediaById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Media\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Image \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/media-type code \\u0027image\\u0027 \\u003d \\u0027Image\\u0027, given as \\u0027Image\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emodality\\u003c/b\\u003e: Diagram \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/media-modality code \\u0027diagram\\u0027 \\u003d \\u0027Diagram)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecreated\\u003c/b\\u003e: 17/12/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eissued\\u003c/b\\u003e: 17/12/2017 2:56:18 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoperator\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/xcda-author\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edevice\\u003c/b\\u003e: Acme Camera\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eheight\\u003c/b\\u003e: 145\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ewidth\\u003c/b\\u003e: 126\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eframes\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtent\\u003c/b\\u003e: \\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/media-type\",\n \"code\": \"image\",\n \"display\": \"Image\"\n }\n ]\n },\n \"modality\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/media-modality\",\n \"code\": \"diagram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/xcda\"\n },\n \"createdDateTime\": \"2017-12-17\",\n \"issued\": \"2017-12-17T14:56:18Z\",\n \"operator\": {\n \"reference\": \"Practitioner/xcda-author\"\n },\n \"device\": {\n \"display\": \"Acme Camera\"\n },\n \"height\": 145,\n \"width\": 126,\n \"frames\": 1,\n \"content\": {\n \"id\": \"a1\",\n \"contentType\": \"image/gif\",\n \"data\": \"R0lGODlhfgCRAPcAAAAAAIAAAACAAICAAAAAgIAA gACAgICAgMDAwP8AAAD/AP//AAAA//8A/wD///// /wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAMwAAZgAAmQAAzAAA /wAzAAAzMwAzZgAzmQAzzAAz/wBmAABmMwBmZgBm mQBmzABm/wCZAACZMwCZZgCZmQCZzACZ/wDMAADM MwDMZgDMmQDMzADM/wD/AAD/MwD/ZgD/mQD/zAD/ /zMAADMAMzMAZjMAmTMAzDMA/zMzADMzMzMzZjMz mTMzzDMz/zNmADNmMzNmZjNmmTNmzDNm/zOZADOZ MzOZZjOZmTOZzDOZ/zPMADPMMzPMZjPMmTPMzDPM /zP/ADP/MzP/ZjP/mTP/zDP//2YAAGYAM2YAZmYA mWYAzGYA/2YzAGYzM2YzZmYzmWYzzGYz/2ZmAGZm M2ZmZmZmmWZmzGZm/2aZAGaZM2aZZmaZmWaZzGaZ /2bMAGbMM2bMZmbMmWbMzGbM/2b/AGb/M2b/Zmb/ mWb/zGb//5kAAJkAM5kAZpkAmZkAzJkA/5kzAJkz M5kzZpkzmZkzzJkz/5lmAJlmM5lmZplmmZlmzJlm /5mZAJmZM5mZZpmZmZmZzJmZ/5nMAJnMM5nMZpnM mZnMzJnM/5n/AJn/M5n/Zpn/mZn/zJn//8wAAMwA M8wAZswAmcwAzMwA/8wzAMwzM8wzZswzmcwzzMwz /8xmAMxmM8xmZsxmmcxmzMxm/8yZAMyZM8yZZsyZ mcyZzMyZ/8zMAMzMM8zMZszMmczMzMzM/8z/AMz/ M8z/Zsz/mcz/zMz///8AAP8AM/8AZv8Amf8AzP8A //8zAP8zM/8zZv8zmf8zzP8z//9mAP9mM/9mZv9m mf9mzP9m//+ZAP+ZM/+ZZv+Zmf+ZzP+Z///MAP/M M//MZv/Mmf/MzP/M////AP//M///Zv//mf//zP// /yH5BAEAABAALAAAAAB+AJEAQAj/AP8JHEiwoMGD CBMqXMiwocOHECNKnEixosWLGFHAckaN2jRnsKZh HEmy5EMU0+L5EseNG654KEzKnGkShbN4uFq2xOWR ps+fE5nEy6Wz5a+XQJMqTeisGdGiLuNRi7m0qlJn 06iF7LhxKoqvX2FpnRYSq1eBX62qRYhCKzWzZDeK 3bqR7NSsb99uddZ2r1ZnINuanbrWp82tb8ly/Bjy a1aOKOu+5ZgXZFa7sARzBMl5a9rCJDl29ejxMuDK eb3mJYsSa93GIOW61QgWbEjQGStbrru7o2K3dkXj BUz242WUbj0u9vj1b2KquCn27Rq7I1+9nBkn7gyS K/HBnFd3/y8bUizf6CM76s0qduxp0pvN23UrOnF7 zB7nWiaMXuZhvGJNoxhjpr3G3WMfJfdbgtD1p1Rb xgkHX3uUbeYbdli5dp6DHHbo4YcghijiiCSWeJJG rJloIkoqPeXLNA2q+GFHm+yUSzzxiCQjiG3hVFQu N+74IQry4JSTTjfCImSHyE1TyS9I+iJPZkv21ySE +bE31VTjhZfZfhm2V+VJXLH3WH70MfZVeKfF9Z1i nv3mXldjEiTYmX9tpVhkXrW1JpfX6bVdnosh19xG INVpk3JydafYZjC6RhqMNlHa11u0aQbjl/mVJaB1 McrY16eSSeYle2AmqGp5wIl1KVxj+f8WIDV1/iOY Vote5lt4eZUn6WsI+kZgp6iVxV+tAs064aqUebdr aW55GqZ2AiIWKrIHQahfo3bBeaZ5zq1q17XYMoQl eQt+Jxt56jXrarnwxivvvPTWa++9TJYlGrn4+kdN PJv4kksz92zY709ExqPJkbncw+/BI9mEDy4Mx+MM xD/9+xQ3m+RIK8Yz2STPkS11s8nFIMvEhDw1FoVL xynLdI9KR+bUMMoxR+yML1BxIyWMOY+0kTxQuizV w0E3hOJjBTe9UYO1fZZ0Qlga59hYvgLX3W7GWo20 vLWV5uqjlHZUaVcDbukuZVTe29poqNYnZ2ZzrdbV 0hRmdZh9dX3/raKv5MknG19YVojmVPIJmtlwhBpX bq4V6trd1VhV6t5jfM6XWWVzaRmZ3yO+3WaAi3XG FZfP2vRnYogLp+tec4Ee4qLZ3dfV3XXpHanZMHJV d6WsucprXJiOyaZ+iaH60aJ1JxirRoCF5Wdmfnql J9uUVdma1m7CvTe74mHWLSyNgft6nmaDNSZy5o1m HvPWadW+aN9luVxglpnVeXF6Kxr/88MhX3wcJZsB uS81uDpc+5KDM0VBr3SlAQx1LBSSy1AHT2iSS1u2 E6DYwUtbGTQOacj3mPGg6TeSEZBrWAUnyMzrbVk6 XVyKsxgCwW0/62GMhVKErw12S1D5S0185RQnn8XQ xYUx45NyNOe87gCRPubZj+xeaB+smIl+yllirCho xKmhxExoK1Cv0BSftAVmamhMoxrXyMY2uvGNcIyj HOeoxkXBh44OOZdn8Ggu+DiPjwtJ2CZyUomCTRGO KJFHLljiEnkc8o0Sy0U3WpILoAGSLf9qmc86ckmE /MtHOfEFVjp5EGfc40jieAlgSFmQL27sF/GQx8dY iRaP8EwnL9ERLW1lS5L5whfxyMcubaWworVEHIX0 xzBRcI9NMBJJ9xgmMTW5E19QQ5m0tAlOjOkzeeiS lcwcJFSAeSxSomRjuDT/2y6ncQ9fkMwozMkmVhRW lFTGk5T5sAlgaCawjjWjnJcEYoYWRJU/CUdqbQSX bNYEGRQZjj630qAXO7MmRJ3pOq65DOOiBaqghaVy a4sUcrKYn+ugay+PXFJzgiOesGWISx3sFfRoaEHC qY9ePmzUpCoTnN5JyobF8lx9zJJSEZlqWNK6D0ar taDWsY4zOV2NVj5olq2VVIvCQ1GsjKURBSnnbCJk FbzihxdSqYc1MAyhZZBDPwZ1sKygKiqTHsOqPGFO L8JrX7cgxBmiYk2LagKo9uQ3LKv2zjGcMlbsVLUv I2YRUf+Z5fq2GqzRqO04Z2POlyo4m7KGB3oXsmSd /2Llps7Mh6mVK84FtQW9qllnccLJkFythBgUyo2F AlzTgMIyqECVDkZltSgSB6unZ8Vwc9jZHKUIJ8Ll 8YkvkmLUa3koJPaFdoGeK2Ln9KI6S4GFVMsDV31e M1vQqPZT+uMpcJYY2/V89y9+0tuoKuqp8mhvfKnx 7NNI95fiCIpx1Nmchrj1VbaWtzAOdSLr6MLX+5VH Px+BVIVQdLuXKk8v2pMg69wzFodez0x/Fa+37tQ4 CcbnwAge6Icbg9Ww6gpAALLrXer20mKhuDDGoWlg /Aveq8InizQsjwq7GkQEEVVRsWHQYYIYQ+cFK00G 4o1webxWZEEIsVAEznmH6N1Y4eiUNJaLaRex9UVf wWlSJCRhr+AiZElZsYZoi5xg12eqp3buNEJm3LRQ BcTeSZUx8/pLdk53w9p6CYKE/p+J83NjJuUPeemq 71bbqrjTkTEvjfaQDyFFnXbJr1lshqIKnaja4uHr tWEa4beqRZpJpXcvy3kaxhxD6U/NqaQ0xCr6jJhp FUlYPVl01HrsI8JYPSdpoCXhEG2YUVzrqT2mzpkS KVRAG955u3SJdhITZ766KosyNjQOnZAt6F3d7oQJ +inaJNPrHUXt3fCOt7ylSe962/ve+M63vvkYEAA7\",\n \"creation\": \"2009-09-03\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Media/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Media", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MediaById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Media/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Media", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Media_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Media\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Image \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/media-type code \\u0027image\\u0027 \\u003d \\u0027Image\\u0027, given as \\u0027Image\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emodality\\u003c/b\\u003e: Diagram \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/media-modality code \\u0027diagram\\u0027 \\u003d \\u0027Diagram)\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/xcda\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecreated\\u003c/b\\u003e: 17/12/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eissued\\u003c/b\\u003e: 17/12/2017 2:56:18 PM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eoperator\\u003c/b\\u003e: \\u003ca\\u003ePractitioner/xcda-author\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edevice\\u003c/b\\u003e: Acme Camera\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eheight\\u003c/b\\u003e: 145\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ewidth\\u003c/b\\u003e: 126\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eframes\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtent\\u003c/b\\u003e: \\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/media-type\",\n \"code\": \"image\",\n \"display\": \"Image\"\n }\n ]\n },\n \"modality\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/media-modality\",\n \"code\": \"diagram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/xcda\"\n },\n \"createdDateTime\": \"2017-12-17\",\n \"issued\": \"2017-12-17T14:56:18Z\",\n \"operator\": {\n \"reference\": \"Practitioner/xcda-author\"\n },\n \"device\": {\n \"display\": \"Acme Camera\"\n },\n \"height\": 145,\n \"width\": 126,\n \"frames\": 1,\n \"content\": {\n \"id\": \"a1\",\n \"contentType\": \"image/gif\",\n \"data\": \"R0lGODlhfgCRAPcAAAAAAIAAAACAAICAAAAAgIAA gACAgICAgMDAwP8AAAD/AP//AAAA//8A/wD///// /wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAMwAAZgAAmQAAzAAA /wAzAAAzMwAzZgAzmQAzzAAz/wBmAABmMwBmZgBm mQBmzABm/wCZAACZMwCZZgCZmQCZzACZ/wDMAADM MwDMZgDMmQDMzADM/wD/AAD/MwD/ZgD/mQD/zAD/ /zMAADMAMzMAZjMAmTMAzDMA/zMzADMzMzMzZjMz mTMzzDMz/zNmADNmMzNmZjNmmTNmzDNm/zOZADOZ MzOZZjOZmTOZzDOZ/zPMADPMMzPMZjPMmTPMzDPM /zP/ADP/MzP/ZjP/mTP/zDP//2YAAGYAM2YAZmYA mWYAzGYA/2YzAGYzM2YzZmYzmWYzzGYz/2ZmAGZm M2ZmZmZmmWZmzGZm/2aZAGaZM2aZZmaZmWaZzGaZ /2bMAGbMM2bMZmbMmWbMzGbM/2b/AGb/M2b/Zmb/ mWb/zGb//5kAAJkAM5kAZpkAmZkAzJkA/5kzAJkz M5kzZpkzmZkzzJkz/5lmAJlmM5lmZplmmZlmzJlm /5mZAJmZM5mZZpmZmZmZzJmZ/5nMAJnMM5nMZpnM mZnMzJnM/5n/AJn/M5n/Zpn/mZn/zJn//8wAAMwA M8wAZswAmcwAzMwA/8wzAMwzM8wzZswzmcwzzMwz /8xmAMxmM8xmZsxmmcxmzMxm/8yZAMyZM8yZZsyZ mcyZzMyZ/8zMAMzMM8zMZszMmczMzMzM/8z/AMz/ M8z/Zsz/mcz/zMz///8AAP8AM/8AZv8Amf8AzP8A //8zAP8zM/8zZv8zmf8zzP8z//9mAP9mM/9mZv9m mf9mzP9m//+ZAP+ZM/+ZZv+Zmf+ZzP+Z///MAP/M M//MZv/Mmf/MzP/M////AP//M///Zv//mf//zP// /yH5BAEAABAALAAAAAB+AJEAQAj/AP8JHEiwoMGD CBMqXMiwocOHECNKnEixosWLGFHAckaN2jRnsKZh HEmy5EMU0+L5EseNG654KEzKnGkShbN4uFq2xOWR ps+fE5nEy6Wz5a+XQJMqTeisGdGiLuNRi7m0qlJn 06iF7LhxKoqvX2FpnRYSq1eBX62qRYhCKzWzZDeK 3bqR7NSsb99uddZ2r1ZnINuanbrWp82tb8ly/Bjy a1aOKOu+5ZgXZFa7sARzBMl5a9rCJDl29ejxMuDK eb3mJYsSa93GIOW61QgWbEjQGStbrru7o2K3dkXj BUz242WUbj0u9vj1b2KquCn27Rq7I1+9nBkn7gyS K/HBnFd3/y8bUizf6CM76s0qduxp0pvN23UrOnF7 zB7nWiaMXuZhvGJNoxhjpr3G3WMfJfdbgtD1p1Rb xgkHX3uUbeYbdli5dp6DHHbo4YcghijiiCSWeJJG rJloIkoqPeXLNA2q+GFHm+yUSzzxiCQjiG3hVFQu N+74IQry4JSTTjfCImSHyE1TyS9I+iJPZkv21ySE +bE31VTjhZfZfhm2V+VJXLH3WH70MfZVeKfF9Z1i nv3mXldjEiTYmX9tpVhkXrW1JpfX6bVdnosh19xG INVpk3JydafYZjC6RhqMNlHa11u0aQbjl/mVJaB1 McrY16eSSeYle2AmqGp5wIl1KVxj+f8WIDV1/iOY Vote5lt4eZUn6WsI+kZgp6iVxV+tAs064aqUebdr aW55GqZ2AiIWKrIHQahfo3bBeaZ5zq1q17XYMoQl eQt+Jxt56jXrarnwxivvvPTWa++9TJYlGrn4+kdN PJv4kksz92zY709ExqPJkbncw+/BI9mEDy4Mx+MM xD/9+xQ3m+RIK8Yz2STPkS11s8nFIMvEhDw1FoVL xynLdI9KR+bUMMoxR+yML1BxIyWMOY+0kTxQuizV w0E3hOJjBTe9UYO1fZZ0Qlga59hYvgLX3W7GWo20 vLWV5uqjlHZUaVcDbukuZVTe29poqNYnZ2ZzrdbV 0hRmdZh9dX3/raKv5MknG19YVojmVPIJmtlwhBpX bq4V6trd1VhV6t5jfM6XWWVzaRmZ3yO+3WaAi3XG FZfP2vRnYogLp+tec4Ee4qLZ3dfV3XXpHanZMHJV d6WsucprXJiOyaZ+iaH60aJ1JxirRoCF5Wdmfnql J9uUVdma1m7CvTe74mHWLSyNgft6nmaDNSZy5o1m HvPWadW+aN9luVxglpnVeXF6Kxr/88MhX3wcJZsB uS81uDpc+5KDM0VBr3SlAQx1LBSSy1AHT2iSS1u2 E6DYwUtbGTQOacj3mPGg6TeSEZBrWAUnyMzrbVk6 XVyKsxgCwW0/62GMhVKErw12S1D5S0185RQnn8XQ xYUx45NyNOe87gCRPubZj+xeaB+smIl+yllirCho xKmhxExoK1Cv0BSftAVmamhMoxrXyMY2uvGNcIyj HOeoxkXBh44OOZdn8Ggu+DiPjwtJ2CZyUomCTRGO KJFHLljiEnkc8o0Sy0U3WpILoAGSLf9qmc86ckmE /MtHOfEFVjp5EGfc40jieAlgSFmQL27sF/GQx8dY iRaP8EwnL9ERLW1lS5L5whfxyMcubaWworVEHIX0 xzBRcI9NMBJJ9xgmMTW5E19QQ5m0tAlOjOkzeeiS lcwcJFSAeSxSomRjuDT/2y6ncQ9fkMwozMkmVhRW lFTGk5T5sAlgaCawjjWjnJcEYoYWRJU/CUdqbQSX bNYEGRQZjj630qAXO7MmRJ3pOq65DOOiBaqghaVy a4sUcrKYn+ugay+PXFJzgiOesGWISx3sFfRoaEHC qY9ePmzUpCoTnN5JyobF8lx9zJJSEZlqWNK6D0ar taDWsY4zOV2NVj5olq2VVIvCQ1GsjKURBSnnbCJk FbzihxdSqYc1MAyhZZBDPwZ1sKygKiqTHsOqPGFO L8JrX7cgxBmiYk2LagKo9uQ3LKv2zjGcMlbsVLUv I2YRUf+Z5fq2GqzRqO04Z2POlyo4m7KGB3oXsmSd /2Llps7Mh6mVK84FtQW9qllnccLJkFythBgUyo2F AlzTgMIyqECVDkZltSgSB6unZ8Vwc9jZHKUIJ8Ll 8YkvkmLUa3koJPaFdoGeK2Ln9KI6S4GFVMsDV31e M1vQqPZT+uMpcJYY2/V89y9+0tuoKuqp8mhvfKnx 7NNI95fiCIpx1Nmchrj1VbaWtzAOdSLr6MLX+5VH Px+BVIVQdLuXKk8v2pMg69wzFodez0x/Fa+37tQ4 CcbnwAge6Icbg9Ww6gpAALLrXer20mKhuDDGoWlg /Aveq8InizQsjwq7GkQEEVVRsWHQYYIYQ+cFK00G 4o1webxWZEEIsVAEznmH6N1Y4eiUNJaLaRex9UVf wWlSJCRhr+AiZElZsYZoi5xg12eqp3buNEJm3LRQ BcTeSZUx8/pLdk53w9p6CYKE/p+J83NjJuUPeemq 71bbqrjTkTEvjfaQDyFFnXbJr1lshqIKnaja4uHr tWEa4beqRZpJpXcvy3kaxhxD6U/NqaQ0xCr6jJhp FUlYPVl01HrsI8JYPSdpoCXhEG2YUVzrqT2mzpkS KVRAG955u3SJdhITZ766KosyNjQOnZAt6F3d7oQJ +inaJNPrHUXt3fCOt7ylSe962/ve+M63vvkYEAA7\",\n \"creation\": \"2009-09-03\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Media", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Media" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Media_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Media?based-on=&context=&device=&operator=&patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&date=&identifier=&site=&subtype=&type=&view=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Media" + ], + "query": [ + { + "key": "based-on", + "value": "", + "description": "Procedure that caused this media to be created" + }, + { + "key": "context", + "value": "", + "description": "Encounter / Episode associated with media" + }, + { + "key": "device", + "value": "", + "description": "Observing Device" + }, + { + "key": "operator", + "value": "", + "description": "The person who generated the image" + }, + { + "key": "patient", + "value": "", + "description": "Who/What this Media is a record of" + }, + { + "key": "subject", + "value": "", + "description": "Who/What this Media is a record of" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "created", + "value": "", + "description": "Date attachment was first created" + }, + { + "key": "date", + "value": "", + "description": "When Media was collected" + }, + { + "key": "identifier", + "value": "", + "description": "Identifier(s) for the image" + }, + { + "key": "site", + "value": "", + "description": "Body part in media" + }, + { + "key": "subtype", + "value": "", + "description": "The type of acquisition equipment/process" + }, + { + "key": "type", + "value": "", + "description": "photo | video | audio" + }, + { + "key": "view", + "value": "", + "description": "Imaging view, e.g. Lateral or Antero-posterior" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MediaHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Media/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Media", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Medication", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "MedicationHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Medication/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Medication", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Medication/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Medication", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MedicationById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Medication/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Medication", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\",\n \"_display\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n }\n ]\n },\n \"isBrand\": \"\",\n \"package\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"container\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Medication/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Medication", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Medication/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Medication", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Medication_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\",\n \"_display\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n }\n ]\n },\n \"isBrand\": \"\",\n \"package\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"container\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Medication", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Medication" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Medication_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Medication?ingredient=&manufacturer=&package-item=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&container=&form=&ingredient-code=&over-the-counter=&package-item-code=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Medication" + ], + "query": [ + { + "key": "ingredient", + "value": "", + "description": "The product contained" + }, + { + "key": "manufacturer", + "value": "", + "description": "Manufacturer of the item" + }, + { + "key": "package-item", + "value": "", + "description": "The item in the package" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Medication](medication.html): Codes that identify this medication\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication code\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine code" + }, + { + "key": "container", + "value": "", + "description": "E.g. box, vial, blister-pack" + }, + { + "key": "form", + "value": "", + "description": "powder | tablets | capsule +" + }, + { + "key": "ingredient-code", + "value": "", + "description": "The product contained" + }, + { + "key": "over-the-counter", + "value": "", + "description": "True if medication does not require a prescription" + }, + { + "key": "package-item-code", + "value": "", + "description": "The item in the package" + }, + { + "key": "status", + "value": "", + "description": "active | inactive | entered-in-error" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Medication/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Medication", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Medication Administration", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "MedicationAdministrationHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationAdministration/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationAdministration", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationAdministrationHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationAdministration/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationAdministration", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MedicationAdministrationById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationAdministration/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationAdministration", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationAdministrationById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"status\": \"\",\n \"medicationReference\": {\n \"reference\": \"\"\n },\n \"patient\": {\n \"reference\": \"\"\n },\n \"effectiveTimePeriod\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"practitioner\": {\n \"reference\": \"\"\n },\n \"prescription\": {\n \"reference\": \"\"\n },\n \"dosage\": {\n \"route\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"quantity\": {\n \"value\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n }\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/MedicationAdministration/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationAdministration", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationAdministrationById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationAdministration/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationAdministration", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MedicationAdministration_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"status\": \"\",\n \"medicationReference\": {\n \"reference\": \"\"\n },\n \"patient\": {\n \"reference\": \"\"\n },\n \"effectiveTimePeriod\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"practitioner\": {\n \"reference\": \"\"\n },\n \"prescription\": {\n \"reference\": \"\"\n },\n \"dosage\": {\n \"route\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"quantity\": {\n \"value\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n }\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/MedicationAdministration", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationAdministration" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationAdministration_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationAdministration?context=&device=&medication=&patient=&performer=&prescription=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&effective-time=&identifier=¬-given=&reason-given=&reason-not-given=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationAdministration" + ], + "query": [ + { + "key": "context", + "value": "", + "description": "Return administrations that share this encounter or episode of care" + }, + { + "key": "device", + "value": "", + "description": "Return administrations with this administration device identity" + }, + { + "key": "medication", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication reference\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication resource\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication reference\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine resource" + }, + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient\r\n* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for\r\n* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.\r\n* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for" + }, + { + "key": "performer", + "value": "", + "description": "The identify of the individual who administered the medication" + }, + { + "key": "prescription", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationAdministration](medicationadministration.html): The identity of a prescription to list administrations from\r\n* [MedicationDispense](medicationdispense.html): The identity of a prescription to list dispenses from" + }, + { + "key": "subject", + "value": "", + "description": "The identify of the individual or group to list administrations for" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Medication](medication.html): Codes that identify this medication\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication code\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine code" + }, + { + "key": "effective-time", + "value": "", + "description": "Date administration happened (or did not happen)" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier\r\n* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier\r\n* [MedicationStatement](medicationstatement.html): Return statements with this external identifier\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with this external identifier" + }, + { + "key": "not-given", + "value": "", + "description": "Administrations that were not made" + }, + { + "key": "reason-given", + "value": "", + "description": "Reasons for administering the medication" + }, + { + "key": "reason-not-given", + "value": "", + "description": "Reasons for not administering the medication" + }, + { + "key": "status", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Status of the prescription\r\n* [MedicationAdministration](medicationadministration.html): MedicationAdministration event status (for example one of active/paused/completed/nullified)\r\n* [MedicationStatement](medicationstatement.html): Return statements that match the given status\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with a specified dispense status" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationAdministrationHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationAdministration/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationAdministration", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Medication Dispense", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "MedicationDispenseHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationDispense/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationDispense", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationDispenseHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationDispense/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationDispense", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MedicationDispenseById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationDispense/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationDispense", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationDispenseById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"status\": \"\",\n \"medicationReference\": {\n \"reference\": \"\",\n \"_reference\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n },\n \"display\": \"\"\n },\n \"patient\": {\n \"reference\": \"\"\n },\n \"dispenser\": {\n \"reference\": \"\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"\"\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"quantity\": {\n \"value\": \"\",\n \"unit\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n },\n \"daysSupply\": {\n \"value\": \"\",\n \"unit\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n },\n \"whenPrepared\": \"\",\n \"whenHandedOver\": \"\",\n \"dosageInstruction\": [\n {\n \"additionalInstructions\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"timing\": {\n \"repeat\": {\n \"frequency\": {\n \"value\": \"\"\n },\n \"period\": {\n \"value\": \"\"\n },\n \"periodUnit\": {\n \"value\": \"\"\n }\n }\n },\n \"siteCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": \"\",\n \"unit\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n }\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/MedicationDispense/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationDispense", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationDispenseById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationDispense/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationDispense", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MedicationDispense_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"status\": \"\",\n \"medicationReference\": {\n \"reference\": \"\",\n \"_reference\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n },\n \"display\": \"\"\n },\n \"patient\": {\n \"reference\": \"\"\n },\n \"dispenser\": {\n \"reference\": \"\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"\"\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"quantity\": {\n \"value\": \"\",\n \"unit\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n },\n \"daysSupply\": {\n \"value\": \"\",\n \"unit\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n },\n \"whenPrepared\": \"\",\n \"whenHandedOver\": \"\",\n \"dosageInstruction\": [\n {\n \"additionalInstructions\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"timing\": {\n \"repeat\": {\n \"frequency\": {\n \"value\": \"\"\n },\n \"period\": {\n \"value\": \"\"\n },\n \"periodUnit\": {\n \"value\": \"\"\n }\n }\n },\n \"siteCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": \"\",\n \"unit\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n }\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/MedicationDispense", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationDispense" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationDispense_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationDispense?medication=&patient=&prescription=&context=&destination=&performer=&receiver=&responsibleparty=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&status=&type=&whenhandedover=&whenprepared=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationDispense" + ], + "query": [ + { + "key": "medication", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication reference\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication resource\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication reference\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine resource" + }, + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient\r\n* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for\r\n* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.\r\n* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for" + }, + { + "key": "prescription", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationAdministration](medicationadministration.html): The identity of a prescription to list administrations from\r\n* [MedicationDispense](medicationdispense.html): The identity of a prescription to list dispenses from" + }, + { + "key": "context", + "value": "", + "description": "Returns dispenses with a specific context (episode or episode of care)" + }, + { + "key": "destination", + "value": "", + "description": "Return dispenses that should be sent to a specific destination" + }, + { + "key": "performer", + "value": "", + "description": "Return dispenses performed by a specific individual" + }, + { + "key": "receiver", + "value": "", + "description": "The identity of a receiver to list dispenses for" + }, + { + "key": "responsibleparty", + "value": "", + "description": "Return dispenses with the specified responsible party" + }, + { + "key": "subject", + "value": "", + "description": "The identity of a patient to list dispenses for" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Medication](medication.html): Codes that identify this medication\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication code\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine code" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier\r\n* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier\r\n* [MedicationStatement](medicationstatement.html): Return statements with this external identifier\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with this external identifier" + }, + { + "key": "status", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Status of the prescription\r\n* [MedicationAdministration](medicationadministration.html): MedicationAdministration event status (for example one of active/paused/completed/nullified)\r\n* [MedicationStatement](medicationstatement.html): Return statements that match the given status\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with a specified dispense status" + }, + { + "key": "type", + "value": "", + "description": "Return dispenses of a specific type" + }, + { + "key": "whenhandedover", + "value": "", + "description": "Returns dispenses handed over on this date" + }, + { + "key": "whenprepared", + "value": "", + "description": "Returns dispenses prepared on this date" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationDispenseHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationDispense/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationDispense", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Medication Request", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "MedicationRequestHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationRequest/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationRequest", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationRequestHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationRequest/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationRequest", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MedicationRequestById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationRequestById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/MedicationRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationRequestById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MedicationRequest_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/MedicationRequest", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationRequest" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationRequest_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationRequest?medication=&patient=&context=&intended-dispenser=&requester=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&status=&authoredon=&category=&date=&intent=&priority=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationRequest" + ], + "query": [ + { + "key": "medication", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication reference\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication resource\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication reference\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine resource" + }, + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient\r\n* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for\r\n* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.\r\n* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for" + }, + { + "key": "context", + "value": "", + "description": "Return prescriptions with this encounter or episode of care identifier" + }, + { + "key": "intended-dispenser", + "value": "", + "description": "Returns prescriptions intended to be dispensed by this Organization" + }, + { + "key": "requester", + "value": "", + "description": "Returns prescriptions prescribed by this prescriber" + }, + { + "key": "subject", + "value": "", + "description": "The identity of a patient to list orders for" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Medication](medication.html): Codes that identify this medication\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication code\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine code" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier\r\n* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier\r\n* [MedicationStatement](medicationstatement.html): Return statements with this external identifier\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with this external identifier" + }, + { + "key": "status", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Status of the prescription\r\n* [MedicationAdministration](medicationadministration.html): MedicationAdministration event status (for example one of active/paused/completed/nullified)\r\n* [MedicationStatement](medicationstatement.html): Return statements that match the given status\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with a specified dispense status" + }, + { + "key": "authoredon", + "value": "", + "description": "Return prescriptions written on this date" + }, + { + "key": "category", + "value": "", + "description": "Returns prescriptions with different categories" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Returns medication request to be administered on a specific date" + }, + { + "key": "intent", + "value": "", + "description": "Returns prescriptions with different intents" + }, + { + "key": "priority", + "value": "", + "description": "Returns prescriptions with different priorities" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationRequestHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationRequest/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationRequest", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Medication Statement", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "MedicationStatementHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationStatement/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationStatement", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationStatementHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationStatement/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationStatement", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MedicationStatementById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationStatement/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationStatement", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationStatementById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"status\": \"\",\n \"medicationReference\": {\n \"reference\": \"\",\n \"_reference\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n },\n \"patient\": {\n \"reference\": \"\"\n },\n \"effectiveDateTime\": \"\",\n \"informationSource\": {\n \"reference\": \"\"\n },\n \"dateAsserted\": \"\",\n \"wasNotTaken\": \"\",\n \"reasonForUseCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"note\": [\n {\n \"text\": \"\"\n }\n ],\n \"dosage\": [\n {\n \"text\": \"\",\n \"asNeededBoolean\": \"\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": {\n \"value\": \"\"\n },\n \"period\": {\n \"value\": \"\"\n },\n \"periodUnit\": {\n \"value\": \"\"\n }\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"quantityQuantity\": {\n \"value\": \"\"\n },\n \"maxDosePerPeriod\": {\n \"numerator\": {\n \"value\": \"\",\n \"unit\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n },\n \"denominator\": {\n \"value\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n }\n }\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/MedicationStatement/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationStatement", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationStatementById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationStatement/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationStatement", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MedicationStatement_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"status\": \"\",\n \"medicationReference\": {\n \"reference\": \"\",\n \"_reference\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n },\n \"patient\": {\n \"reference\": \"\"\n },\n \"effectiveDateTime\": \"\",\n \"informationSource\": {\n \"reference\": \"\"\n },\n \"dateAsserted\": \"\",\n \"wasNotTaken\": \"\",\n \"reasonForUseCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"note\": [\n {\n \"text\": \"\"\n }\n ],\n \"dosage\": [\n {\n \"text\": \"\",\n \"asNeededBoolean\": \"\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": {\n \"value\": \"\"\n },\n \"period\": {\n \"value\": \"\"\n },\n \"periodUnit\": {\n \"value\": \"\"\n }\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"quantityQuantity\": {\n \"value\": \"\"\n },\n \"maxDosePerPeriod\": {\n \"numerator\": {\n \"value\": \"\",\n \"unit\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n },\n \"denominator\": {\n \"value\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n }\n }\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/MedicationStatement", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationStatement" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationStatement_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationStatement?medication=&patient=&context=&part-of=&source=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&status=&category=&effective=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationStatement" + ], + "query": [ + { + "key": "medication", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication reference\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication resource\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication reference\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine resource" + }, + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient\r\n* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for\r\n* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.\r\n* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for" + }, + { + "key": "context", + "value": "", + "description": "Returns statements for a specific context (episode or episode of Care)." + }, + { + "key": "part-of", + "value": "", + "description": "Returns statements that are part of another event." + }, + { + "key": "source", + "value": "", + "description": "Who or where the information in the statement came from" + }, + { + "key": "subject", + "value": "", + "description": "The identity of a patient, animal or group to list statements for" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Medication](medication.html): Codes that identify this medication\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication code\r\n* [MedicationDispense](medicationdispense.html): Return dispenses of this medicine code" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier\r\n* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier\r\n* [MedicationStatement](medicationstatement.html): Return statements with this external identifier\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with this external identifier" + }, + { + "key": "status", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Status of the prescription\r\n* [MedicationAdministration](medicationadministration.html): MedicationAdministration event status (for example one of active/paused/completed/nullified)\r\n* [MedicationStatement](medicationstatement.html): Return statements that match the given status\r\n* [MedicationDispense](medicationdispense.html): Return dispenses with a specified dispense status" + }, + { + "key": "category", + "value": "", + "description": "Returns statements of this category of medicationstatement" + }, + { + "key": "effective", + "value": "", + "description": "Date when patient was taking (or not taking) the medication" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MedicationStatementHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MedicationStatement/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MedicationStatement", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Message Definition", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "MessageDefinitionHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MessageDefinition/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageDefinition", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MessageDefinitionHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MessageDefinition/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageDefinition", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MessageDefinitionById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MessageDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MessageDefinitionById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"MessageDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eMessage definition base example\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/MessageDefinition/example\",\n \"name\": \"EXAMPLE\",\n \"title\": \"Message definition base example\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2016-11-09\",\n \"publisher\": \"Health Level Seven, Int\\u0027l\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org\"\n }\n ]\n }\n ],\n \"purpose\": \"Defines a base example for other MessageDefinition instances.\",\n \"eventCoding\": {\n \"system\": \"http://example.org/fhir/message-events\",\n \"code\": \"admin-notify\"\n },\n \"category\": \"notification\"\n}" + }, + "url": { + "raw": "{{API_URL}}/MessageDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MessageDefinitionById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MessageDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MessageDefinition_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"MessageDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eMessage definition base example\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/MessageDefinition/example\",\n \"name\": \"EXAMPLE\",\n \"title\": \"Message definition base example\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2016-11-09\",\n \"publisher\": \"Health Level Seven, Int\\u0027l\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org\"\n }\n ]\n }\n ],\n \"purpose\": \"Defines a base example for other MessageDefinition instances.\",\n \"eventCoding\": {\n \"system\": \"http://example.org/fhir/message-events\",\n \"code\": \"admin-notify\"\n },\n \"category\": \"notification\"\n}" + }, + "url": { + "raw": "{{API_URL}}/MessageDefinition", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageDefinition" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MessageDefinition_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MessageDefinition?_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&date=&description=&event=&focus=&identifier=&jurisdiction=&name=&publisher=&status=&title=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageDefinition" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "category", + "value": "", + "description": "The behavior associated with the message" + }, + { + "key": "date", + "value": "", + "description": "The message definition publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the message definition" + }, + { + "key": "event", + "value": "", + "description": "The event that triggers the message" + }, + { + "key": "focus", + "value": "", + "description": "A resource that is a permitted focus of the message" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the message definition" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the message definition" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the message definition" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the message definition" + }, + { + "key": "status", + "value": "", + "description": "The current status of the message definition" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the message definition" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the message definition" + }, + { + "key": "version", + "value": "", + "description": "The business version of the message definition" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MessageDefinitionHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MessageDefinition/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageDefinition", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Message Header", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "MessageHeaderHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MessageHeader/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageHeader", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MessageHeaderHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MessageHeader/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageHeader", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MessageHeaderById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MessageHeader/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageHeader", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MessageHeaderById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"MessageHeader\",\n \"id\": \"1cbdfb97-5859-48a4-8301-d54eab818d68\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eUpdate Person resource for Peter James CHALMERS (Jim), MRN: 12345 (Acme Healthcare)\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"eventCoding\": {\n \"system\": \"http://example.org/fhir/message-events\",\n \"code\": \"admin-notify\"\n },\n \"destination\": [\n {\n \"name\": \"Acme Message Gateway\",\n \"target\": {\n \"reference\": \"Device/example\"\n },\n \"endpoint\": \"llp:10.11.12.14:5432\",\n \"receiver\": {\n \"reference\": \"http://acme.com/ehr/fhir/Practitioner/2323-33-4\"\n }\n }\n ],\n \"sender\": {\n \"reference\": \"Organization/1\"\n },\n \"enterer\": {\n \"reference\": \"Practitioner/example\"\n },\n \"author\": {\n \"reference\": \"Practitioner/example\"\n },\n \"source\": {\n \"name\": \"Acme Central Patient Registry\",\n \"software\": \"FooBar Patient Manager\",\n \"version\": \"3.1.45.AABB\",\n \"contact\": {\n \"system\": \"phone\",\n \"value\": \"+1 (555) 123 4567\"\n },\n \"endpoint\": \"llp:10.11.12.13:5432\"\n },\n \"reason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/message-reasons-encounter\",\n \"code\": \"admit\"\n }\n ]\n },\n \"response\": {\n \"identifier\": \"5015fe84-8e76-4526-89d8-44b322e8d4fb\",\n \"code\": \"ok\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/example\"\n }\n ],\n \"definition\": \"http:////acme.com/ehr/fhir/messagedefinition/patientrequest\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/MessageHeader/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageHeader", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MessageHeaderById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MessageHeader/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageHeader", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "MessageHeader_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"MessageHeader\",\n \"id\": \"1cbdfb97-5859-48a4-8301-d54eab818d68\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eUpdate Person resource for Peter James CHALMERS (Jim), MRN: 12345 (Acme Healthcare)\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"eventCoding\": {\n \"system\": \"http://example.org/fhir/message-events\",\n \"code\": \"admin-notify\"\n },\n \"destination\": [\n {\n \"name\": \"Acme Message Gateway\",\n \"target\": {\n \"reference\": \"Device/example\"\n },\n \"endpoint\": \"llp:10.11.12.14:5432\",\n \"receiver\": {\n \"reference\": \"http://acme.com/ehr/fhir/Practitioner/2323-33-4\"\n }\n }\n ],\n \"sender\": {\n \"reference\": \"Organization/1\"\n },\n \"enterer\": {\n \"reference\": \"Practitioner/example\"\n },\n \"author\": {\n \"reference\": \"Practitioner/example\"\n },\n \"source\": {\n \"name\": \"Acme Central Patient Registry\",\n \"software\": \"FooBar Patient Manager\",\n \"version\": \"3.1.45.AABB\",\n \"contact\": {\n \"system\": \"phone\",\n \"value\": \"+1 (555) 123 4567\"\n },\n \"endpoint\": \"llp:10.11.12.13:5432\"\n },\n \"reason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/message-reasons-encounter\",\n \"code\": \"admit\"\n }\n ]\n },\n \"response\": {\n \"identifier\": \"5015fe84-8e76-4526-89d8-44b322e8d4fb\",\n \"code\": \"ok\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/example\"\n }\n ],\n \"definition\": \"http:////acme.com/ehr/fhir/messagedefinition/patientrequest\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/MessageHeader", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageHeader" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MessageHeader_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MessageHeader?author=&enterer=&focus=&receiver=&responsible=&sender=&target=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&destination=&destination-uri=&event=&response-id=&source=&source-uri=×tamp=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageHeader" + ], + "query": [ + { + "key": "author", + "value": "", + "description": "The source of the decision" + }, + { + "key": "enterer", + "value": "", + "description": "The source of the data entry" + }, + { + "key": "focus", + "value": "", + "description": "The actual content of the message" + }, + { + "key": "receiver", + "value": "", + "description": "Intended \"real-world\" recipient for the data" + }, + { + "key": "responsible", + "value": "", + "description": "Final responsibility for event" + }, + { + "key": "sender", + "value": "", + "description": "Real world sender of the message" + }, + { + "key": "target", + "value": "", + "description": "Particular delivery destination within the destination" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "ok | transient-error | fatal-error" + }, + { + "key": "destination", + "value": "", + "description": "Name of system" + }, + { + "key": "destination-uri", + "value": "", + "description": "Actual destination address or id" + }, + { + "key": "event", + "value": "", + "description": "Code for the event this message represents" + }, + { + "key": "response-id", + "value": "", + "description": "Id of original message" + }, + { + "key": "source", + "value": "", + "description": "Name of system" + }, + { + "key": "source-uri", + "value": "", + "description": "Actual message source address or id" + }, + { + "key": "timestamp", + "value": "", + "description": "Time that the message was sent" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "MessageHeaderHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/MessageHeader/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "MessageHeader", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Naming System", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "NamingSystemHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/NamingSystem/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NamingSystem", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "NamingSystemHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/NamingSystem/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NamingSystem", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "NamingSystemById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/NamingSystem/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NamingSystem", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "NamingSystemById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"NamingSystem\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\n \\u003cp\\u003e\\n \\u003cb\\u003eSNOMED CT\\u003c/b\\u003e\\n \\u003c/p\\u003e\\n \\n \\u003cp\\u003e oid: 2.16.840.1.113883.6.96\\u003c/p\\u003e\\n \\n \\u003cp\\u003e uri: http://snomed.info/sct\\u003c/p\\u003e\\n \\n \\u003c/div\\u003e\"\n },\n \"name\": \"SNOMED CT\",\n \"status\": \"active\",\n \"kind\": \"codesystem\",\n \"date\": \"2014-12-13\",\n \"publisher\": \"HL7 International on behalf of IHTSDO\",\n \"contact\": [\n {\n \"name\": \"FHIR project team\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"responsible\": \"IHTSDO \\u0026 affiliates\",\n \"description\": \"SNOMED CT is a concept-based, scientifically validated terminology that provides a unique and permanent concept identifier that can be included in multiple HL7 data types including CD and CE. The concepts are managed to avoid \\\"semantic drift\\\" so the meaning remains constant. If the concept is found to be ambiguous or the meaning changes, the concept is inactivated but still retained and the identifier is never reused. SNOMED CT\\u0027s concepts are interrelated hierarchically and using description logic. SNOMED CT concepts have a unique \\\"fully-specified name\\\", a preferred term, and, optionally, synonyms. The description languages include English and Spanish.\",\n \"uniqueId\": [\n {\n \"type\": \"oid\",\n \"value\": \"2.16.840.1.113883.6.96\"\n },\n {\n \"type\": \"uri\",\n \"value\": \"http://snomed.info/sct\",\n \"preferred\": true\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/NamingSystem/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NamingSystem", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "NamingSystemById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/NamingSystem/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NamingSystem", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "NamingSystem_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"NamingSystem\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\n \\u003cp\\u003e\\n \\u003cb\\u003eSNOMED CT\\u003c/b\\u003e\\n \\u003c/p\\u003e\\n \\n \\u003cp\\u003e oid: 2.16.840.1.113883.6.96\\u003c/p\\u003e\\n \\n \\u003cp\\u003e uri: http://snomed.info/sct\\u003c/p\\u003e\\n \\n \\u003c/div\\u003e\"\n },\n \"name\": \"SNOMED CT\",\n \"status\": \"active\",\n \"kind\": \"codesystem\",\n \"date\": \"2014-12-13\",\n \"publisher\": \"HL7 International on behalf of IHTSDO\",\n \"contact\": [\n {\n \"name\": \"FHIR project team\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"responsible\": \"IHTSDO \\u0026 affiliates\",\n \"description\": \"SNOMED CT is a concept-based, scientifically validated terminology that provides a unique and permanent concept identifier that can be included in multiple HL7 data types including CD and CE. The concepts are managed to avoid \\\"semantic drift\\\" so the meaning remains constant. If the concept is found to be ambiguous or the meaning changes, the concept is inactivated but still retained and the identifier is never reused. SNOMED CT\\u0027s concepts are interrelated hierarchically and using description logic. SNOMED CT concepts have a unique \\\"fully-specified name\\\", a preferred term, and, optionally, synonyms. The description languages include English and Spanish.\",\n \"uniqueId\": [\n {\n \"type\": \"oid\",\n \"value\": \"2.16.840.1.113883.6.96\"\n },\n {\n \"type\": \"uri\",\n \"value\": \"http://snomed.info/sct\",\n \"preferred\": true\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/NamingSystem", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NamingSystem" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "NamingSystem_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/NamingSystem?replaced-by=&_id=&_lastUpdated=&_profile=&_security=&_tag=&contact=&date=&description=&id-type=&jurisdiction=&kind=&name=&period=&publisher=&responsible=&status=&telecom=&type=&value=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NamingSystem" + ], + "query": [ + { + "key": "replaced-by", + "value": "", + "description": "Use this instead" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "contact", + "value": "", + "description": "Name of an individual to contact" + }, + { + "key": "date", + "value": "", + "description": "The naming system publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the naming system" + }, + { + "key": "id-type", + "value": "", + "description": "oid | uuid | uri | other" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the naming system" + }, + { + "key": "kind", + "value": "", + "description": "codesystem | identifier | root" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the naming system" + }, + { + "key": "period", + "value": "", + "description": "When is identifier valid?" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the naming system" + }, + { + "key": "responsible", + "value": "", + "description": "Who maintains system namespace?" + }, + { + "key": "status", + "value": "", + "description": "The current status of the naming system" + }, + { + "key": "telecom", + "value": "", + "description": "Contact details for individual or organization" + }, + { + "key": "type", + "value": "", + "description": "e.g. driver, provider, patient, bank etc." + }, + { + "key": "value", + "value": "", + "description": "The unique identifier" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "NamingSystemHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/NamingSystem/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NamingSystem", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Nutrition Order", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "NutritionOrderHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/NutritionOrder/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NutritionOrder", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "NutritionOrderHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/NutritionOrder/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NutritionOrder", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "NutritionOrderById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/NutritionOrder/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NutritionOrder", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "NutritionOrderById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"_id\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n },\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"status\": \"\",\n \"patient\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"encounter\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"dateTime\": \"\",\n \"orderer\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"allergyIntolerance\": [\n {\n \"reference\": \"\",\n \"display\": \"\"\n }\n ],\n \"foodPreferenceModifier\": [\n {\n \"coding\": [\n {\n \"system\": {\n \"value\": \"\"\n },\n \"code\": {\n \"value\": \"\"\n }\n }\n ]\n }\n ],\n \"excludeFoodModifier\": [\n {\n \"coding\": [\n {\n \"system\": \"\",\n \"version\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"oralDiet\": {\n \"type\": [\n {\n \"text\": \"\",\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"nutrient\": [\n {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"modifier\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"amount\": {\n \"value\": \"\",\n \"unit\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n }\n }\n ],\n \"instruction\": \"\",\n \"_instruction\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/NutritionOrder/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NutritionOrder", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "NutritionOrderById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/NutritionOrder/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NutritionOrder", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "NutritionOrder_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"_id\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n },\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"status\": \"\",\n \"patient\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"encounter\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"dateTime\": \"\",\n \"orderer\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"allergyIntolerance\": [\n {\n \"reference\": \"\",\n \"display\": \"\"\n }\n ],\n \"foodPreferenceModifier\": [\n {\n \"coding\": [\n {\n \"system\": {\n \"value\": \"\"\n },\n \"code\": {\n \"value\": \"\"\n }\n }\n ]\n }\n ],\n \"excludeFoodModifier\": [\n {\n \"coding\": [\n {\n \"system\": \"\",\n \"version\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"oralDiet\": {\n \"type\": [\n {\n \"text\": \"\",\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ],\n \"nutrient\": [\n {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"modifier\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"amount\": {\n \"value\": \"\",\n \"unit\": \"\",\n \"system\": \"\",\n \"code\": \"\"\n }\n }\n ],\n \"instruction\": \"\",\n \"_instruction\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/NutritionOrder", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NutritionOrder" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "NutritionOrder_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/NutritionOrder?patient=&encounter=&provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&additive=&datetime=&formula=&oraldiet=&status=&supplement=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NutritionOrder" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "encounter", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" + }, + { + "key": "provider", + "value": "", + "description": "The identify of the provider who placed the nutrition order" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "additive", + "value": "", + "description": "Type of module component to add to the feeding" + }, + { + "key": "datetime", + "value": "", + "description": "Return nutrition orders requested on this date" + }, + { + "key": "formula", + "value": "", + "description": "Type of enteral or infant formula" + }, + { + "key": "oraldiet", + "value": "", + "description": "Type of diet that can be consumed orally (i.e., take via the mouth)." + }, + { + "key": "status", + "value": "", + "description": "Status of the nutrition order." + }, + { + "key": "supplement", + "value": "", + "description": "Type of supplement product requested" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "NutritionOrderHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/NutritionOrder/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "NutritionOrder", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Observation", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ObservationHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Observation/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Observation", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ObservationHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Observation/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Observation", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ObservationById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Observation/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Observation", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ObservationById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Observation\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Vital Signs \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/observation-category code \\u0027vital-signs\\u0027 \\u003d \\u0027Vital Signs\\u0027, given as \\u0027Vital Signs\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Body Weight \\u003cspan\\u003e(Details : {LOINC code \\u002729463-7\\u0027 \\u003d \\u0027Body weight\\u0027, given as \\u0027Body Weight\\u0027}; {LOINC code \\u00273141-9\\u0027 \\u003d \\u0027Body weight Measured\\u0027, given as \\u0027Body weight Measured\\u0027}; {SNOMED CT code \\u002727113001\\u0027 \\u003d \\u0027Body weight\\u0027, given as \\u0027Body weight\\u0027}; {http://acme.org/devices/clinical-codes code \\u0027body-weight\\u0027 \\u003d \\u0027body-weight\\u0027, given as \\u0027Body Weight\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eeffective\\u003c/b\\u003e: 28/03/2016\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 185 lbs\\u003cspan\\u003e (Details: UCUM code [lb_av] \\u003d \\u0027lb_av\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body Weight\"\n },\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"3141-9\",\n \"display\": \"Body weight Measured\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"27113001\",\n \"display\": \"Body weight\"\n },\n {\n \"system\": \"http://acme.org/devices/clinical-codes\",\n \"code\": \"body-weight\",\n \"display\": \"Body Weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"effectiveDateTime\": \"2016-03-28\",\n \"valueQuantity\": {\n \"value\": 185,\n \"unit\": \"lbs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[lb_av]\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Observation/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Observation", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ObservationById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Observation/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Observation", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Observation_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Observation\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: final\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Vital Signs \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/observation-category code \\u0027vital-signs\\u0027 \\u003d \\u0027Vital Signs\\u0027, given as \\u0027Vital Signs\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: Body Weight \\u003cspan\\u003e(Details : {LOINC code \\u002729463-7\\u0027 \\u003d \\u0027Body weight\\u0027, given as \\u0027Body Weight\\u0027}; {LOINC code \\u00273141-9\\u0027 \\u003d \\u0027Body weight Measured\\u0027, given as \\u0027Body weight Measured\\u0027}; {SNOMED CT code \\u002727113001\\u0027 \\u003d \\u0027Body weight\\u0027, given as \\u0027Body weight\\u0027}; {http://acme.org/devices/clinical-codes code \\u0027body-weight\\u0027 \\u003d \\u0027body-weight\\u0027, given as \\u0027Body Weight\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePatient/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eencounter\\u003c/b\\u003e: \\u003ca\\u003eEncounter/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eeffective\\u003c/b\\u003e: 28/03/2016\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003evalue\\u003c/b\\u003e: 185 lbs\\u003cspan\\u003e (Details: UCUM code [lb_av] \\u003d \\u0027lb_av\\u0027)\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body Weight\"\n },\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"3141-9\",\n \"display\": \"Body weight Measured\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"27113001\",\n \"display\": \"Body weight\"\n },\n {\n \"system\": \"http://acme.org/devices/clinical-codes\",\n \"code\": \"body-weight\",\n \"display\": \"Body Weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"effectiveDateTime\": \"2016-03-28\",\n \"valueQuantity\": {\n \"value\": 185,\n \"unit\": \"lbs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[lb_av]\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Observation", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Observation" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Observation_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Observation?patient=&encounter=&based-on=&context=&device=&performer=&related-target=&specimen=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&identifier=&category=&code-value-concept=&code-value-date=&code-value-quantity=&code-value-string=&combo-code=&combo-code-value-concept=&combo-code-value-quantity=&combo-data-absent-reason=&combo-value-concept=&combo-value-quantity=&component-code=&component-code-value-concept=&component-code-value-quantity=&component-data-absent-reason=&component-value-concept=&component-value-quantity=&data-absent-reason=&method=&related=&related-type=&status=&value-concept=&value-date=&value-quantity=&value-string=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Observation" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "encounter", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" + }, + { + "key": "based-on", + "value": "", + "description": "Reference to the test or procedure request." + }, + { + "key": "context", + "value": "", + "description": "Healthcare event (Episode-of-care or Encounter) related to the observation" + }, + { + "key": "device", + "value": "", + "description": "The Device that generated the observation data." + }, + { + "key": "performer", + "value": "", + "description": "Who performed the observation" + }, + { + "key": "related-target", + "value": "", + "description": "Resource that is related to this one" + }, + { + "key": "specimen", + "value": "", + "description": "Specimen used for this observation" + }, + { + "key": "subject", + "value": "", + "description": "The subject that the observation is about" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "category", + "value": "", + "description": "The classification of the type of observation" + }, + { + "key": "code-value-concept", + "value": "", + "description": "Code and coded value parameter pair" + }, + { + "key": "code-value-date", + "value": "", + "description": "Code and date/time value parameter pair" + }, + { + "key": "code-value-quantity", + "value": "", + "description": "Code and quantity value parameter pair" + }, + { + "key": "code-value-string", + "value": "", + "description": "Code and string value parameter pair" + }, + { + "key": "combo-code", + "value": "", + "description": "The code of the observation type or component type" + }, + { + "key": "combo-code-value-concept", + "value": "", + "description": "Code and coded value parameter pair, including in components" + }, + { + "key": "combo-code-value-quantity", + "value": "", + "description": "Code and quantity value parameter pair, including in components" + }, + { + "key": "combo-data-absent-reason", + "value": "", + "description": "The reason why the expected value in the element Observation.value[x] or Observation.component.value[x] is missing." + }, + { + "key": "combo-value-concept", + "value": "", + "description": "The value or component value of the observation, if the value is a CodeableConcept" + }, + { + "key": "combo-value-quantity", + "value": "", + "description": "The value or component value of the observation, if the value is a Quantity, or a SampledData (just search on the bounds of the values in sampled data)" + }, + { + "key": "component-code", + "value": "", + "description": "The component code of the observation type" + }, + { + "key": "component-code-value-concept", + "value": "", + "description": "Component code and component coded value parameter pair" + }, + { + "key": "component-code-value-quantity", + "value": "", + "description": "Component code and component quantity value parameter pair" + }, + { + "key": "component-data-absent-reason", + "value": "", + "description": "The reason why the expected value in the element Observation.component.value[x] is missing." + }, + { + "key": "component-value-concept", + "value": "", + "description": "The value of the component observation, if the value is a CodeableConcept" + }, + { + "key": "component-value-quantity", + "value": "", + "description": "The value of the component observation, if the value is a Quantity, or a SampledData (just search on the bounds of the values in sampled data)" + }, + { + "key": "data-absent-reason", + "value": "", + "description": "The reason why the expected value in the element Observation.value[x] is missing." + }, + { + "key": "method", + "value": "", + "description": "The method used for the observation" + }, + { + "key": "related", + "value": "", + "description": "Related Observations - search on related-type and related-target together" + }, + { + "key": "related-type", + "value": "", + "description": "has-member | derived-from | sequel-to | replaces | qualified-by | interfered-by" + }, + { + "key": "status", + "value": "", + "description": "The status of the observation" + }, + { + "key": "value-concept", + "value": "", + "description": "The value of the observation, if the value is a CodeableConcept" + }, + { + "key": "value-date", + "value": "", + "description": "The value of the observation, if the value is a date or period of time" + }, + { + "key": "value-quantity", + "value": "", + "description": "The value of the observation, if the value is a Quantity, or a SampledData (just search on the bounds of the values in sampled data)" + }, + { + "key": "value-string", + "value": "", + "description": "The value of the observation, if the value is a string, and also searches in CodeableConcept.text" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ObservationHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Observation/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Observation", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Operation Definition", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "OperationDefinitionHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/OperationDefinition/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationDefinition", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OperationDefinitionHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/OperationDefinition/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationDefinition", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "OperationDefinitionById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/OperationDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OperationDefinitionById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"OperationDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://h7.org/fhir/OperationDefinition/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: B\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Populate Questionnaire\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ekind\\u003c/b\\u003e: operation\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 04/08/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: Acme Healthcare Services\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Limited implementation of the Populate Questionnaire implementation\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United Kingdom of Great Britain and Northern Ireland (the) \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027GB\\u0027 \\u003d \\u0027United Kingdom of Great Britain and Northern Ireland\\u0027, given as \\u0027United Kingdom of Great Britain and Northern Ireland (the)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: populate\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecomment\\u003c/b\\u003e: Only implemented for Labs and Medications so far\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebase\\u003c/b\\u003e: \\u003ca\\u003eOperationDefinition/Questionnaire-populate\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e: Questionnaire\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esystem\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einstance\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparameter\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: subject\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euse\\u003c/b\\u003e: in\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emin\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emax\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The resource that is to be the *QuestionnaireResponse.subject*. The [[[QuestionnaireResponse]]] instance will reference the provided subject. In addition, if the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Reference\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparameter\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: local\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euse\\u003c/b\\u003e: in\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emin\\u003c/b\\u003e: 0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emax\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: If the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Reference\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparameter\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: return\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euse\\u003c/b\\u003e: out\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emin\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emax\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The partially (or fully)-populated set of answers for the specified Questionnaire\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: QuestionnaireResponse\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eoverload\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparameterName\\u003c/b\\u003e: subject, local\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eoverload\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparameterName\\u003c/b\\u003e: subject\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecomment\\u003c/b\\u003e: local defaults to false when not passed as a parameter\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://h7.org/fhir/OperationDefinition/example\",\n \"version\": \"B\",\n \"name\": \"Populate Questionnaire\",\n \"status\": \"draft\",\n \"kind\": \"operation\",\n \"date\": \"2015-08-04\",\n \"publisher\": \"Acme Healthcare Services\",\n \"contact\": [\n {\n \"name\": \"System Administrator\",\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"beep@coyote.acme.com\"\n }\n ]\n }\n ],\n \"description\": \"Limited implementation of the Populate Questionnaire implementation\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://build.fhir.org/codesystem-usage-context-type\",\n \"code\": \"venue\",\n \"display\": \"Clinical Venue\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"IMP\",\n \"display\": \"inpatient encounter\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"GB\",\n \"display\": \"United Kingdom of Great Britain and Northern Ireland (the)\"\n }\n ]\n }\n ],\n \"code\": \"populate\",\n \"comment\": \"Only implemented for Labs and Medications so far\",\n \"base\": \"OperationDefinition/Questionnaire-populate\",\n \"resource\": [\n \"Questionnaire\"\n ],\n \"system\": false,\n \"type\": false,\n \"instance\": true,\n \"parameter\": [\n {\n \"name\": \"subject\",\n \"use\": \"in\",\n \"min\": 1,\n \"max\": \"1\",\n \"documentation\": \"The resource that is to be the *QuestionnaireResponse.subject*. The [[[QuestionnaireResponse]]] instance will reference the provided subject. In addition, if the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\",\n \"type\": \"Reference\"\n },\n {\n \"name\": \"local\",\n \"use\": \"in\",\n \"min\": 0,\n \"max\": \"1\",\n \"documentation\": \"If the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\",\n \"type\": \"Reference\"\n },\n {\n \"name\": \"return\",\n \"use\": \"out\",\n \"min\": 1,\n \"max\": \"1\",\n \"documentation\": \"The partially (or fully)-populated set of answers for the specified Questionnaire\",\n \"type\": \"QuestionnaireResponse\"\n }\n ],\n \"overload\": [\n {\n \"parameterName\": [\n \"subject\",\n \"local\"\n ]\n },\n {\n \"parameterName\": [\n \"subject\"\n ],\n \"comment\": \"local defaults to false when not passed as a parameter\"\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/OperationDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OperationDefinitionById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/OperationDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "OperationDefinition_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"OperationDefinition\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://h7.org/fhir/OperationDefinition/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: B\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Populate Questionnaire\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ekind\\u003c/b\\u003e: operation\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 04/08/2015\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: Acme Healthcare Services\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Limited implementation of the Populate Questionnaire implementation\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United Kingdom of Great Britain and Northern Ireland (the) \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027GB\\u0027 \\u003d \\u0027United Kingdom of Great Britain and Northern Ireland\\u0027, given as \\u0027United Kingdom of Great Britain and Northern Ireland (the)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: populate\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecomment\\u003c/b\\u003e: Only implemented for Labs and Medications so far\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebase\\u003c/b\\u003e: \\u003ca\\u003eOperationDefinition/Questionnaire-populate\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e: Questionnaire\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esystem\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003einstance\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparameter\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: subject\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euse\\u003c/b\\u003e: in\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emin\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emax\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The resource that is to be the *QuestionnaireResponse.subject*. The [[[QuestionnaireResponse]]] instance will reference the provided subject. In addition, if the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Reference\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparameter\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: local\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euse\\u003c/b\\u003e: in\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emin\\u003c/b\\u003e: 0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emax\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: If the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Reference\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparameter\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: return\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euse\\u003c/b\\u003e: out\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emin\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003emax\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: The partially (or fully)-populated set of answers for the specified Questionnaire\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: QuestionnaireResponse\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eoverload\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparameterName\\u003c/b\\u003e: subject, local\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eoverload\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eparameterName\\u003c/b\\u003e: subject\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecomment\\u003c/b\\u003e: local defaults to false when not passed as a parameter\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://h7.org/fhir/OperationDefinition/example\",\n \"version\": \"B\",\n \"name\": \"Populate Questionnaire\",\n \"status\": \"draft\",\n \"kind\": \"operation\",\n \"date\": \"2015-08-04\",\n \"publisher\": \"Acme Healthcare Services\",\n \"contact\": [\n {\n \"name\": \"System Administrator\",\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"beep@coyote.acme.com\"\n }\n ]\n }\n ],\n \"description\": \"Limited implementation of the Populate Questionnaire implementation\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://build.fhir.org/codesystem-usage-context-type\",\n \"code\": \"venue\",\n \"display\": \"Clinical Venue\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"IMP\",\n \"display\": \"inpatient encounter\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"GB\",\n \"display\": \"United Kingdom of Great Britain and Northern Ireland (the)\"\n }\n ]\n }\n ],\n \"code\": \"populate\",\n \"comment\": \"Only implemented for Labs and Medications so far\",\n \"base\": \"OperationDefinition/Questionnaire-populate\",\n \"resource\": [\n \"Questionnaire\"\n ],\n \"system\": false,\n \"type\": false,\n \"instance\": true,\n \"parameter\": [\n {\n \"name\": \"subject\",\n \"use\": \"in\",\n \"min\": 1,\n \"max\": \"1\",\n \"documentation\": \"The resource that is to be the *QuestionnaireResponse.subject*. The [[[QuestionnaireResponse]]] instance will reference the provided subject. In addition, if the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\",\n \"type\": \"Reference\"\n },\n {\n \"name\": \"local\",\n \"use\": \"in\",\n \"min\": 0,\n \"max\": \"1\",\n \"documentation\": \"If the *local* parameter is set to true, server information about the specified subject will be used to populate the instance.\",\n \"type\": \"Reference\"\n },\n {\n \"name\": \"return\",\n \"use\": \"out\",\n \"min\": 1,\n \"max\": \"1\",\n \"documentation\": \"The partially (or fully)-populated set of answers for the specified Questionnaire\",\n \"type\": \"QuestionnaireResponse\"\n }\n ],\n \"overload\": [\n {\n \"parameterName\": [\n \"subject\",\n \"local\"\n ]\n },\n {\n \"parameterName\": [\n \"subject\"\n ],\n \"comment\": \"local defaults to false when not passed as a parameter\"\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/OperationDefinition", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationDefinition" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OperationDefinition_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/OperationDefinition?base=¶m-profile=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&description=&instance=&jurisdiction=&kind=&name=&publisher=&status=&system=&type=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationDefinition" + ], + "query": [ + { + "key": "base", + "value": "", + "description": "Marks this as a profile of the base" + }, + { + "key": "param-profile", + "value": "", + "description": "Profile on the type" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Name used to invoke the operation" + }, + { + "key": "date", + "value": "", + "description": "The operation definition publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the operation definition" + }, + { + "key": "instance", + "value": "", + "description": "Invoke on an instance?" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the operation definition" + }, + { + "key": "kind", + "value": "", + "description": "operation | query" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the operation definition" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the operation definition" + }, + { + "key": "status", + "value": "", + "description": "The current status of the operation definition" + }, + { + "key": "system", + "value": "", + "description": "Invoke at the system level?" + }, + { + "key": "type", + "value": "", + "description": "Invole at the type level?" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the operation definition" + }, + { + "key": "version", + "value": "", + "description": "The business version of the operation definition" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OperationDefinitionHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/OperationDefinition/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationDefinition", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Operation Outcome", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "OperationOutcomeHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/OperationOutcome/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationOutcome", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OperationOutcomeHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/OperationOutcome/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationOutcome", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "OperationOutcomeById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/OperationOutcome/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationOutcome", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OperationOutcomeById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"OperationOutcome\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eThe code \\u0026quot;W\\u0026quot; is not known and not legal Patient.gender.\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"issue\": [\n {\n \"severity\": \"error\",\n \"code\": \"code-invalid\",\n \"details\": {\n \"text\": \"The code \\\"W\\\" is not known and not legal in this context\"\n },\n \"diagnostics\": \"Acme.Interop.FHIRProcessors.Patient.processGender line 2453\",\n \"location\": [\n \"/f:Patient/f:gender\"\n ],\n \"expression\": [\n \"Patient.gender\"\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/OperationOutcome/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationOutcome", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OperationOutcomeById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/OperationOutcome/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationOutcome", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "OperationOutcome_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"OperationOutcome\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eThe code \\u0026quot;W\\u0026quot; is not known and not legal Patient.gender.\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"issue\": [\n {\n \"severity\": \"error\",\n \"code\": \"code-invalid\",\n \"details\": {\n \"text\": \"The code \\\"W\\\" is not known and not legal in this context\"\n },\n \"diagnostics\": \"Acme.Interop.FHIRProcessors.Patient.processGender line 2453\",\n \"location\": [\n \"/f:Patient/f:gender\"\n ],\n \"expression\": [\n \"Patient.gender\"\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/OperationOutcome", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationOutcome" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OperationOutcome_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/OperationOutcome?_id=&_lastUpdated=&_profile=&_security=&_tag=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationOutcome" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OperationOutcomeHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/OperationOutcome/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "OperationOutcome", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Organization", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "OrganizationHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Organization/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Organization", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OrganizationHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Organization/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Organization", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "OrganizationById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Organization/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Organization", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OrganizationById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Organization\",\n \"id\": \"hl7\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n Health Level Seven International\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\t3300 Washtenaw Avenue, Suite 227\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\tAnn Arbor, MI 48104\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\tUSA\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\t(+1) 734-677-7777 (phone)\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\t(+1) 734-677-6622 (fax)\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\tE-mail: \\n \\u003ca href\\u003d\\\"mailto:hq@HL7.org\\\"\\u003ehq@HL7.org\\u003c/a\\u003e\\n \\n \\u003c/div\\u003e\"\n },\n \"name\": \"Health Level Seven International\",\n \"alias\": [\n \"HL7 International\"\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"(+1) 734-677-7777\"\n },\n {\n \"system\": \"fax\",\n \"value\": \"(+1) 734-677-6622\"\n },\n {\n \"system\": \"email\",\n \"value\": \"hq@HL7.org\"\n }\n ],\n \"address\": [\n {\n \"line\": [\n \"3300 Washtenaw Avenue, Suite 227\"\n ],\n \"city\": \"Ann Arbor\",\n \"state\": \"MI\",\n \"postalCode\": \"48104\",\n \"country\": \"USA\"\n }\n ],\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Organization/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Organization", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OrganizationById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Organization/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Organization", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Organization_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Organization\",\n \"id\": \"hl7\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n Health Level Seven International\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\t3300 Washtenaw Avenue, Suite 227\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\tAnn Arbor, MI 48104\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\tUSA\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\t(+1) 734-677-7777 (phone)\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\t(+1) 734-677-6622 (fax)\\n \\u003cbr/\\u003e\\n\\t\\t\\t\\tE-mail: \\n \\u003ca href\\u003d\\\"mailto:hq@HL7.org\\\"\\u003ehq@HL7.org\\u003c/a\\u003e\\n \\n \\u003c/div\\u003e\"\n },\n \"name\": \"Health Level Seven International\",\n \"alias\": [\n \"HL7 International\"\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"(+1) 734-677-7777\"\n },\n {\n \"system\": \"fax\",\n \"value\": \"(+1) 734-677-6622\"\n },\n {\n \"system\": \"email\",\n \"value\": \"hq@HL7.org\"\n }\n ],\n \"address\": [\n {\n \"line\": [\n \"3300 Washtenaw Avenue, Suite 227\"\n ],\n \"city\": \"Ann Arbor\",\n \"state\": \"MI\",\n \"postalCode\": \"48104\",\n \"country\": \"USA\"\n }\n ],\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Organization", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Organization" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Organization_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Organization?endpoint=&partof=&_id=&_lastUpdated=&_profile=&_security=&_tag=&active=&address=&address-city=&address-country=&address-postalcode=&address-state=&address-use=&identifier=&name=&phonetic=&type=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Organization" + ], + "query": [ + { + "key": "endpoint", + "value": "", + "description": "Technical endpoints providing access to services operated for the organization" + }, + { + "key": "partof", + "value": "", + "description": "An organization of which this organization forms a part" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "active", + "value": "", + "description": "A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text" + }, + { + "key": "address", + "value": "", + "description": "A (part of the) address of the organization" + }, + { + "key": "address-city", + "value": "", + "description": "A city specified in an address" + }, + { + "key": "address-country", + "value": "", + "description": "A country specified in an address" + }, + { + "key": "address-postalcode", + "value": "", + "description": "A postal code specified in an address" + }, + { + "key": "address-state", + "value": "", + "description": "A state specified in an address" + }, + { + "key": "address-use", + "value": "", + "description": "A use code specified in an address" + }, + { + "key": "identifier", + "value": "", + "description": "Any identifier for the organization (not the accreditation issuer's identifier)" + }, + { + "key": "name", + "value": "", + "description": "A portion of the organization's name or alias" + }, + { + "key": "phonetic", + "value": "", + "description": "A portion of the organization's name using some kind of phonetic matching algorithm" + }, + { + "key": "type", + "value": "", + "description": "A code for the type of organization" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "OrganizationHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Organization/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Organization", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Parameters", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ParametersHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Parameters/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Parameters", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ParametersHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Parameters/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Parameters", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ParametersById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Parameters/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Parameters", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ParametersById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Parameters\",\n \"parameter\": [\n {\n \"name\": \"exact\",\n \"valueBoolean\": true\n },\n {\n \"name\": \"property\",\n \"part\": [\n {\n \"name\": \"code\",\n \"valueCode\": \"focus\"\n },\n {\n \"name\": \"value\",\n \"valueCode\": \"top\"\n }\n ]\n },\n {\n \"name\": \"patient\",\n \"resource\": {\n \"resourceType\": \"Patient\",\n \"id\": \"example\",\n \"name\": [\n {\n \"use\": \"official\",\n \"family\": \"Chalmers\",\n \"given\": [\n \"Peter\",\n \"James\"\n ]\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Parameters/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Parameters", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ParametersById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Parameters/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Parameters", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Parameters_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Parameters\",\n \"parameter\": [\n {\n \"name\": \"exact\",\n \"valueBoolean\": true\n },\n {\n \"name\": \"property\",\n \"part\": [\n {\n \"name\": \"code\",\n \"valueCode\": \"focus\"\n },\n {\n \"name\": \"value\",\n \"valueCode\": \"top\"\n }\n ]\n },\n {\n \"name\": \"patient\",\n \"resource\": {\n \"resourceType\": \"Patient\",\n \"id\": \"example\",\n \"name\": [\n {\n \"use\": \"official\",\n \"family\": \"Chalmers\",\n \"given\": [\n \"Peter\",\n \"James\"\n ]\n }\n ]\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Parameters", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Parameters" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Parameters_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Parameters?_id=&_lastUpdated=&_profile=&_security=&_tag=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Parameters" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ParametersHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Parameters/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Parameters", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Patient", + "item": [ + { + "name": "POST Patient", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "POST", + "header": [ + { + "key": "Content-Type", + "name": "Content-Type", + "value": "application/json", + "type": "text" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Patient\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"

\"\n },\n \"active\": true,\n \"name\": [\n {\n \"family\": \"Smith\",\n \"given\": [\"Emily\"]\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1995-09-24\",\n \"managingOrganization\": {\n \"reference\": \"Organization/2.16.840.1.113883.19.5\",\n \"display\": \"Good Health Clinic\"\n }\n}\n", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{API_URL}}/Patient", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Patient" + ] + } + }, + "response": [] + }, + { + "name": "PUT Patient", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "name": "Content-Type", + "value": "application/json", + "type": "text" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Patient\",\n \"id\": \"20d066e0-6b73-4c0a-ab56-ef0f195f17cc\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"

\"\n },\n \"active\": true,\n \"name\": [\n {\n \"family\": \"Smith\",\n \"given\": [\"Emily\"]\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1996-09-24\",\n \"managingOrganization\": {\n \"reference\": \"Organization/2.16.840.1.113883.19.5\",\n \"display\": \"Good Health Clinic\"\n }\n}\n", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{API_URL}}/Patient/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Patient", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "20d066e0-6b73-4c0a-ab56-ef0f195f17cc" + } + ] + } + }, + "response": [] + }, + { + "name": "GET Patient", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Content-Type", + "name": "Content-Type", + "type": "text", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Patient/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Patient", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "20d066e0-6b73-4c0a-ab56-ef0f195f17cc" + } + ] + } + }, + "response": [] + }, + { + "name": "DELETE Patient", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "DELETE", + "header": [ + { + "key": "Content-Type", + "name": "Content-Type", + "type": "text", + "value": "application/json" + }, + { + "key": "x-api-key", + "type": "text", + "value": "{{API_KEY}}" + } + ], + "url": { + "raw": "{{API_URL}}/Patient/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Patient", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "20d066e0-6b73-4c0a-ab56-ef0f195f17cc" + } + ] + } + }, + "response": [] + }, + { + "name": "GET Patient History Version", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Content-Type", + "name": "Content-Type", + "type": "text", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Patient/:id/_history/:versionId", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Patient", + ":id", + "_history", + ":versionId" + ], + "variable": [ + { + "key": "id", + "value": "20d066e0-6b73-4c0a-ab56-ef0f195f17cc" + }, + { + "key": "versionId", + "value": "1" + } + ] + } + }, + "response": [] + }, + { + "name": "Search Patient", + "request": { + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Patient?gender=female", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Patient" + ], + "query": [ + { + "key": "gender", + "value": "female" + }, + { + "key": "name", + "value": "john", + "disabled": true + }, + { + "key": "managingOrganization", + "value": "health", + "disabled": true + }, + { + "key": "_getpagesoffset", + "value": "5", + "disabled": true + }, + { + "key": "_count", + "value": "1", + "disabled": true + } + ] + } + }, + "response": [] + } + ], + "protocolProfileBehavior": {} + }, + { + "name": "Payment Notice", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "PaymentNoticeHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PaymentNotice/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentNotice", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PaymentNoticeHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PaymentNotice/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentNotice", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "PaymentNoticeById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PaymentNotice/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentNotice", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PaymentNoticeById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"PaymentNotice\",\n \"id\": \"77654\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the PaymentNotice\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://benefitsinc.com/paymentnotice\",\n \"value\": \"776543\"\n }\n ],\n \"status\": \"active\",\n \"request\": {\n \"reference\": \"http://benefitsinc.com/fhir/claim/12345\"\n },\n \"response\": {\n \"reference\": \"http://benefitsinc.com/fhir/claimresponse/CR12345\"\n },\n \"created\": \"2014-08-16\",\n \"provider\": {\n \"reference\": \"Organization/1\"\n },\n \"payment\": {\n \"reference\": \"PaymentReconciliation/ER2500\"\n },\n \"paymentDate\": \"2014-08-15\",\n \"payee\": {\n \"reference\": \"Organization/1\"\n },\n \"recipient\": {\n \"identifier\": {\n \"system\": \"http://regulators.gov\",\n \"value\": \"AB123\"\n }\n },\n \"amount\": {\n \"value\": 12500.00,\n \"currency\": \"USD\"\n },\n \"paymentStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/paymentstatus\",\n \"code\": \"paid\"\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/PaymentNotice/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentNotice", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PaymentNoticeById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PaymentNotice/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentNotice", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "PaymentNotice_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"PaymentNotice\",\n \"id\": \"77654\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the PaymentNotice\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://benefitsinc.com/paymentnotice\",\n \"value\": \"776543\"\n }\n ],\n \"status\": \"active\",\n \"request\": {\n \"reference\": \"http://benefitsinc.com/fhir/claim/12345\"\n },\n \"response\": {\n \"reference\": \"http://benefitsinc.com/fhir/claimresponse/CR12345\"\n },\n \"created\": \"2014-08-16\",\n \"provider\": {\n \"reference\": \"Organization/1\"\n },\n \"payment\": {\n \"reference\": \"PaymentReconciliation/ER2500\"\n },\n \"paymentDate\": \"2014-08-15\",\n \"payee\": {\n \"reference\": \"Organization/1\"\n },\n \"recipient\": {\n \"identifier\": {\n \"system\": \"http://regulators.gov\",\n \"value\": \"AB123\"\n }\n },\n \"amount\": {\n \"value\": 12500.00,\n \"currency\": \"USD\"\n },\n \"paymentStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/paymentstatus\",\n \"code\": \"paid\"\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/PaymentNotice", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentNotice" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PaymentNotice_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PaymentNotice?organization=&provider=&request=&response=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&identifier=&payment-status=&statusdate=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentNotice" + ], + "query": [ + { + "key": "organization", + "value": "", + "description": "The organization who generated this resource" + }, + { + "key": "provider", + "value": "", + "description": "The reference to the provider" + }, + { + "key": "request", + "value": "", + "description": "The Claim" + }, + { + "key": "response", + "value": "", + "description": "The ClaimResponse" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "created", + "value": "", + "description": "Creation date fro the notice" + }, + { + "key": "identifier", + "value": "", + "description": "The business identifier of the notice" + }, + { + "key": "payment-status", + "value": "", + "description": "The type of payment notice" + }, + { + "key": "statusdate", + "value": "", + "description": "The date of the payment action" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PaymentNoticeHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PaymentNotice/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentNotice", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Payment Reconciliation", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "PaymentReconciliationHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PaymentReconciliation/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentReconciliation", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PaymentReconciliationHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PaymentReconciliation/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentReconciliation", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "PaymentReconciliationById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PaymentReconciliation/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentReconciliation", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PaymentReconciliationById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"PaymentReconciliation\",\n \"id\": \"ER2500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the PaymentReconciliation\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/enrollmentresponse\",\n \"value\": \"781234\"\n }\n ],\n \"status\": \"active\",\n \"period\": {\n \"start\": \"2014-08-16\",\n \"end\": \"2014-08-31\"\n },\n \"created\": \"2014-08-16\",\n \"paymentIssuer\": {\n \"reference\": \"Organization/2\"\n },\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/eligibility/225476332402\"\n },\n \"requestor\": {\n \"reference\": \"Organization/1\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"2014 August mid-month settlement.\",\n \"paymentDate\": \"2014-08-01\",\n \"paymentAmount\": {\n \"value\": 7000.00,\n \"currency\": \"USD\"\n },\n \"paymentIdentifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018\",\n \"value\": \"10-12345\"\n },\n \"detail\": [\n {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018/detail\",\n \"value\": \"10-12345-001\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payment-type\",\n \"code\": \"payment\"\n }\n ]\n },\n \"request\": {\n \"identifier\": {\n \"system\": \"http://happyvalleyclinic.com/claim\",\n \"value\": \"AB12345\"\n }\n },\n \"submitter\": {\n \"reference\": \"Organization/1\"\n },\n \"response\": {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/fhir/claimresponse\",\n \"value\": \"CR20140815-AB12345\"\n }\n },\n \"date\": \"2014-08-16\",\n \"payee\": {\n \"reference\": \"Organization/1\"\n },\n \"amount\": {\n \"value\": 3500.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018/detail\",\n \"value\": \"10-12345-002\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payment-type\",\n \"code\": \"payment\"\n }\n ]\n },\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/oralhealthclaim/225476332699\"\n },\n \"date\": \"2014-08-12\",\n \"amount\": {\n \"value\": 4000.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018/detail\",\n \"value\": \"10-12345-003\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payment-type\",\n \"code\": \"advance\"\n }\n ]\n },\n \"date\": \"2014-08-16\",\n \"amount\": {\n \"value\": -1500.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"formCode\": {\n \"coding\": [\n {\n \"system\": \"http://ncforms.org/formid\",\n \"code\": \"PAYREC/2016/01B\"\n }\n ]\n },\n \"processNote\": [\n {\n \"type\": \"display\",\n \"text\": \"Due to the year end holiday the cutoff for submissions for December will be the 28th.\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/PaymentReconciliation/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentReconciliation", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PaymentReconciliationById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PaymentReconciliation/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentReconciliation", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "PaymentReconciliation_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"PaymentReconciliation\",\n \"id\": \"ER2500\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eA human-readable rendering of the PaymentReconciliation\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.BenefitsInc.com/fhir/enrollmentresponse\",\n \"value\": \"781234\"\n }\n ],\n \"status\": \"active\",\n \"period\": {\n \"start\": \"2014-08-16\",\n \"end\": \"2014-08-31\"\n },\n \"created\": \"2014-08-16\",\n \"paymentIssuer\": {\n \"reference\": \"Organization/2\"\n },\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/eligibility/225476332402\"\n },\n \"requestor\": {\n \"reference\": \"Organization/1\"\n },\n \"outcome\": \"complete\",\n \"disposition\": \"2014 August mid-month settlement.\",\n \"paymentDate\": \"2014-08-01\",\n \"paymentAmount\": {\n \"value\": 7000.00,\n \"currency\": \"USD\"\n },\n \"paymentIdentifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018\",\n \"value\": \"10-12345\"\n },\n \"detail\": [\n {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018/detail\",\n \"value\": \"10-12345-001\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payment-type\",\n \"code\": \"payment\"\n }\n ]\n },\n \"request\": {\n \"identifier\": {\n \"system\": \"http://happyvalleyclinic.com/claim\",\n \"value\": \"AB12345\"\n }\n },\n \"submitter\": {\n \"reference\": \"Organization/1\"\n },\n \"response\": {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/fhir/claimresponse\",\n \"value\": \"CR20140815-AB12345\"\n }\n },\n \"date\": \"2014-08-16\",\n \"payee\": {\n \"reference\": \"Organization/1\"\n },\n \"amount\": {\n \"value\": 3500.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018/detail\",\n \"value\": \"10-12345-002\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payment-type\",\n \"code\": \"payment\"\n }\n ]\n },\n \"request\": {\n \"reference\": \"http://www.BenefitsInc.com/fhir/oralhealthclaim/225476332699\"\n },\n \"date\": \"2014-08-12\",\n \"amount\": {\n \"value\": 4000.00,\n \"currency\": \"USD\"\n }\n },\n {\n \"identifier\": {\n \"system\": \"http://www.BenefitsInc.com/payment/2018/detail\",\n \"value\": \"10-12345-003\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/payment-type\",\n \"code\": \"advance\"\n }\n ]\n },\n \"date\": \"2014-08-16\",\n \"amount\": {\n \"value\": -1500.00,\n \"currency\": \"USD\"\n }\n }\n ],\n \"formCode\": {\n \"coding\": [\n {\n \"system\": \"http://ncforms.org/formid\",\n \"code\": \"PAYREC/2016/01B\"\n }\n ]\n },\n \"processNote\": [\n {\n \"type\": \"display\",\n \"text\": \"Due to the year end holiday the cutoff for submissions for December will be the 28th.\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/PaymentReconciliation", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentReconciliation" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PaymentReconciliation_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PaymentReconciliation?organization=&request=&request-organization=&request-provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&created=&disposition=&identifier=&outcome=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentReconciliation" + ], + "query": [ + { + "key": "organization", + "value": "", + "description": "The organization who generated this resource" + }, + { + "key": "request", + "value": "", + "description": "The reference to the claim" + }, + { + "key": "request-organization", + "value": "", + "description": "The organization who generated this resource" + }, + { + "key": "request-provider", + "value": "", + "description": "The reference to the provider who sumbitted the claim" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "created", + "value": "", + "description": "The creation date" + }, + { + "key": "disposition", + "value": "", + "description": "The contents of the disposition message" + }, + { + "key": "identifier", + "value": "", + "description": "The business identifier of the Explanation of Benefit" + }, + { + "key": "outcome", + "value": "", + "description": "The processing outcome" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PaymentReconciliationHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PaymentReconciliation/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PaymentReconciliation", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Person", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "PersonHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Person/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Person", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PersonHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Person/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Person", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "PersonById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Person/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Person", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PersonById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Person\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eName\\u003c/td\\u003e\\n \\u003ctd\\u003ePeter James \\u003cb\\u003eChalmers\\u003c/b\\u003e (\\u0026quot;Jim\\u0026quot;)\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eAddress\\u003c/td\\u003e\\n \\u003ctd\\u003e534 Erewhon, Pleasantville, Vic, 3999\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eContacts\\u003c/td\\u003e\\n \\u003ctd\\u003eHome: unknown. Work: (03) 5555 6473\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eId\\u003c/td\\u003e\\n \\u003ctd\\u003eMRN: 12345 (Acme Healthcare)\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"MR\"\n }\n ]\n },\n \"system\": \"urn:oid:1.2.36.146.595.217.0.1\",\n \"value\": \"12345\",\n \"period\": {\n \"start\": \"2001-05-06\"\n },\n \"assigner\": {\n \"display\": \"Acme Healthcare\"\n }\n }\n ],\n \"name\": [\n {\n \"use\": \"official\",\n \"family\": \"Chalmers\",\n \"given\": [\n \"Peter\",\n \"James\"\n ]\n },\n {\n \"use\": \"usual\",\n \"given\": [\n \"Jim\"\n ]\n }\n ],\n \"telecom\": [\n {\n \"use\": \"home\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"(03) 5555 6473\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"Jim@example.org\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"male\",\n \"birthDate\": \"1974-12-25\",\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"534 Erewhon St\"\n ],\n \"city\": \"PleasantVille\",\n \"state\": \"Vic\",\n \"postalCode\": \"3999\"\n }\n ],\n \"active\": true,\n \"link\": [\n {\n \"target\": {\n \"reference\": \"RelatedPerson/peter\",\n \"display\": \"Peter Chalmers\"\n }\n },\n {\n \"target\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Person/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Person", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PersonById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Person/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Person", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Person_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Person\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eName\\u003c/td\\u003e\\n \\u003ctd\\u003ePeter James \\u003cb\\u003eChalmers\\u003c/b\\u003e (\\u0026quot;Jim\\u0026quot;)\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eAddress\\u003c/td\\u003e\\n \\u003ctd\\u003e534 Erewhon, Pleasantville, Vic, 3999\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eContacts\\u003c/td\\u003e\\n \\u003ctd\\u003eHome: unknown. Work: (03) 5555 6473\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eId\\u003c/td\\u003e\\n \\u003ctd\\u003eMRN: 12345 (Acme Healthcare)\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"MR\"\n }\n ]\n },\n \"system\": \"urn:oid:1.2.36.146.595.217.0.1\",\n \"value\": \"12345\",\n \"period\": {\n \"start\": \"2001-05-06\"\n },\n \"assigner\": {\n \"display\": \"Acme Healthcare\"\n }\n }\n ],\n \"name\": [\n {\n \"use\": \"official\",\n \"family\": \"Chalmers\",\n \"given\": [\n \"Peter\",\n \"James\"\n ]\n },\n {\n \"use\": \"usual\",\n \"given\": [\n \"Jim\"\n ]\n }\n ],\n \"telecom\": [\n {\n \"use\": \"home\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"(03) 5555 6473\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"Jim@example.org\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"male\",\n \"birthDate\": \"1974-12-25\",\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"534 Erewhon St\"\n ],\n \"city\": \"PleasantVille\",\n \"state\": \"Vic\",\n \"postalCode\": \"3999\"\n }\n ],\n \"active\": true,\n \"link\": [\n {\n \"target\": {\n \"reference\": \"RelatedPerson/peter\",\n \"display\": \"Peter Chalmers\"\n }\n },\n {\n \"target\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Person", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Person" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Person_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Person?link=&organization=&patient=&practitioner=&relatedperson=&_id=&_lastUpdated=&_profile=&_security=&_tag=&address=&address-city=&address-country=&address-postalcode=&address-state=&address-use=&birthdate=&email=&gender=&phone=&phonetic=&telecom=&identifier=&name=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Person" + ], + "query": [ + { + "key": "link", + "value": "", + "description": "Any link has this Patient, Person, RelatedPerson or Practitioner reference" + }, + { + "key": "organization", + "value": "", + "description": "The organization at which this person record is being managed" + }, + { + "key": "patient", + "value": "", + "description": "The Person links to this Patient" + }, + { + "key": "practitioner", + "value": "", + "description": "The Person links to this Practitioner" + }, + { + "key": "relatedperson", + "value": "", + "description": "The Person links to this RelatedPerson" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "address", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Practitioner](practitioner.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Person](person.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Patient](patient.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text" + }, + { + "key": "address-city", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A city specified in an address\r\n* [Practitioner](practitioner.html): A city specified in an address\r\n* [Person](person.html): A city specified in an address\r\n* [Patient](patient.html): A city specified in an address" + }, + { + "key": "address-country", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A country specified in an address\r\n* [Practitioner](practitioner.html): A country specified in an address\r\n* [Person](person.html): A country specified in an address\r\n* [Patient](patient.html): A country specified in an address" + }, + { + "key": "address-postalcode", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A postal code specified in an address\r\n* [Practitioner](practitioner.html): A postalCode specified in an address\r\n* [Person](person.html): A postal code specified in an address\r\n* [Patient](patient.html): A postalCode specified in an address" + }, + { + "key": "address-state", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A state specified in an address\r\n* [Practitioner](practitioner.html): A state specified in an address\r\n* [Person](person.html): A state specified in an address\r\n* [Patient](patient.html): A state specified in an address" + }, + { + "key": "address-use", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A use code specified in an address\r\n* [Practitioner](practitioner.html): A use code specified in an address\r\n* [Person](person.html): A use code specified in an address\r\n* [Patient](patient.html): A use code specified in an address" + }, + { + "key": "birthdate", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): The Related Person's date of birth\r\n* [Person](person.html): The person's date of birth\r\n* [Patient](patient.html): The patient's date of birth" + }, + { + "key": "email", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in an email contact\r\n* [RelatedPerson](relatedperson.html): A value in an email contact\r\n* [Practitioner](practitioner.html): A value in an email contact\r\n* [Person](person.html): A value in an email contact\r\n* [Patient](patient.html): A value in an email contact" + }, + { + "key": "gender", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): Gender of the related person\r\n* [Practitioner](practitioner.html): Gender of the practitioner\r\n* [Person](person.html): The gender of the person\r\n* [Patient](patient.html): Gender of the patient" + }, + { + "key": "phone", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in a phone contact\r\n* [RelatedPerson](relatedperson.html): A value in a phone contact\r\n* [Practitioner](practitioner.html): A value in a phone contact\r\n* [Person](person.html): A value in a phone contact\r\n* [Patient](patient.html): A value in a phone contact" + }, + { + "key": "phonetic", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Practitioner](practitioner.html): A portion of either family or given name using some kind of phonetic matching algorithm\r\n* [Person](person.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Patient](patient.html): A portion of either family or given name using some kind of phonetic matching algorithm" + }, + { + "key": "telecom", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): The value in any kind of contact\r\n* [RelatedPerson](relatedperson.html): The value in any kind of contact\r\n* [Practitioner](practitioner.html): The value in any kind of contact\r\n* [Person](person.html): The value in any kind of contact\r\n* [Patient](patient.html): The value in any kind of telecom details of the patient" + }, + { + "key": "identifier", + "value": "", + "description": "A person Identifier" + }, + { + "key": "name", + "value": "", + "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PersonHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Person/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Person", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Plan Definition", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "PlanDefinitionHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PlanDefinition/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PlanDefinition", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PlanDefinitionHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PlanDefinition/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PlanDefinition", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "PlanDefinitionById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PlanDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PlanDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PlanDefinitionById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"PlanDefinition\",\n \"id\": \"low-suicide-risk-order-set\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003ePlanDefinition/low-suicide-risk-order-set\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eIdentifier: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003emmi:low-suicide-risk-order-set\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTitle: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eLow Suicide Risk Order Set\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003edraft\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDescription: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eOrders to be applied to a patient characterized as low suicide risk.\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003ePurpose: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eThis order set helps ensure consistent application of appropriate orders for the care of low suicide risk patients.\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eUsage: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eThis order set should be applied after assessing a patient for suicide risk, when the findings of that assessment indicate the patient has low suicide risk.\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003eage\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttps://meshb.nlm.nih.gov\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003eD000328\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eAdult\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e87512008\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eMild major depression\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e40379007\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eMajor depression, recurrent, mild\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e394687007\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eLow suicide risk\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e225337009\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicide risk assessment\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003euser\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e309343006\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003ePhysician\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003evenue\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e440655000\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eOutpatient environment\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTopic: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicide risk assessment\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContributor: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003e\\n \\u003cspan\\u003eauthor\\u003c/span\\u003e:\\n \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 50px; padding-right: 25px;\\\"\\u003eMotive Medical Intelligence\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eLibrary: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003eLibrary/suiciderisk-orderset-logic\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicideRiskLogic\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ch2\\u003eActions\\u003c/h2\\u003e\\n \\u003cp style\\u003d\\\"width: 100%;\\\" class\\u003d\\\"hierarchy\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicide Risk Assessment and Outpatient Management\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eConsults and Referrals\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eRefer to outpatient mental health program for evaluation and treatment of mental health conditions now\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cb\\u003econdition: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e#referralToMentalHealthCare\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003edescription: \\u003c/b\\u003e\\n \\u003cspan\\u003erefer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003ecategory: \\u003c/b\\u003e\\n \\u003cspan\\u003ereferral\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eMedications\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eFirst-Line Antidepressants\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eSelective Serotonin Reuptake Inhibitors (Choose a mazimum of one or document reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003ecitalopram 20 mg tablet 1 tablet oral 1 time daily now (30 table; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003econdition: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 150px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 175px;\\\"\\u003e#citalopramPrescription\\u003c/span\\u003e\\n \\u003cspan/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 150px;\\\"\\u003e\\n \\u003cb\\u003ecategory: \\u003c/b\\u003e\\n \\u003cspan\\u003edrug\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan/\\u003e\\n \\u003cspan/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eescitalopram 10 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003efluoxetine 20 mg capsule 1 capsule oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eparoxetine 20 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003esertraline 50 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eDopamine Norepinephrine Reuptake Inhibitors (Choose a maximum of one or document reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eSerotonin Norepinephrine Reuptake Inhibitors (Choose a maximum of one or doument reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eNorepinephrine-Serotonin Modulators (Choose a maximum of one or document reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"ActivityDefinition\",\n \"id\": \"referralToMentalHealthCare\",\n \"status\": \"draft\",\n \"description\": \"refer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\",\n \"kind\": \"ServiceRequest\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"306206005\"\n }\n ],\n \"text\": \"Referral to service (procedure)\"\n },\n \"timingTiming\": {\n \"_event\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/cqf-expression\",\n \"valueExpression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Now()\"\n }\n }\n ]\n }\n ]\n },\n \"participant\": [\n {\n \"type\": \"practitioner\"\n }\n ]\n },\n {\n \"resourceType\": \"ActivityDefinition\",\n \"id\": \"citalopramPrescription\",\n \"status\": \"draft\",\n \"kind\": \"MedicationRequest\",\n \"productReference\": {\n \"reference\": \"#citalopramMedication\"\n },\n \"dosage\": [\n {\n \"text\": \"1 tablet oral 1 time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"code\": \"26643006\",\n \"display\": \"Oral route (qualifier value)\"\n }\n ],\n \"text\": \"Oral route (qualifier value)\"\n },\n \"doseAndRate\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n \"code\": \"ordered\",\n \"display\": \"Ordered\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": 1,\n \"unit\": \"{tbl}\"\n }\n }\n ]\n }\n ],\n \"dynamicValue\": [\n {\n \"path\": \"dispenseRequest.numberOfRepeatsAllowed\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"3\"\n }\n },\n {\n \"path\": \"dispenseRequest.quantity\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"30 \\u0027{tbl}\\u0027\"\n }\n }\n ]\n },\n {\n \"resourceType\": \"Medication\",\n \"id\": \"citalopramMedication\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"200371\"\n }\n ],\n \"text\": \"citalopram\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"385055001\",\n \"display\": \"Tablet dose form\"\n }\n ],\n \"text\": \"Tablet dose form\"\n },\n \"ingredient\": [\n {\n \"itemReference\": {\n \"reference\": \"#citalopramSubstance\"\n },\n \"strength\": {\n \"numerator\": {\n \"value\": 20,\n \"unit\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"{tbl}\"\n }\n }\n }\n ]\n },\n {\n \"resourceType\": \"Substance\",\n \"id\": \"citalopramSubstance\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"2556\"\n }\n ],\n \"text\": \"citalopram\"\n }\n }\n ],\n \"url\": \"http://motivemi.com/artifacts/PlanDefinition/low-suicide-risk-order-set\",\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://motivemi.com/artifacts\",\n \"value\": \"mmi:low-suicide-risk-order-set\"\n }\n ],\n \"version\": \"1.0.0\",\n \"name\": \"LowSuicideRiskOrderSet\",\n \"title\": \"Low Suicide Risk Order Set\",\n \"status\": \"active\",\n \"experimental\": true,\n \"date\": \"2015-08-15\",\n \"publisher\": \"Motive Medical Intelligence\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"description\": \"Orders to be applied to a patient characterized as low suicide risk.\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"https://meshb.nlm.nih.gov\",\n \"code\": \"D000328\",\n \"display\": \"Adult\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"87512008\",\n \"display\": \"Mild major depression\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40379007\",\n \"display\": \"Major depression, recurrent, mild\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394687007\",\n \"display\": \"Low suicide risk\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"225337009\",\n \"display\": \"Suicide risk assessment\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"user\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"309343006\",\n \"display\": \"Physician\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"venue\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"440655000\",\n \"display\": \"Outpatient environment\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"This order set helps ensure consistent application of appropriate orders for the care of low suicide risk patients.\",\n \"usage\": \"This order set should be applied after assessing a patient for suicide risk, when the findings of that assessment indicate the patient has low suicide risk.\",\n \"copyright\": \"© Copyright 2016 Motive Medical Intelligence. All rights reserved.\",\n \"approvalDate\": \"2016-03-12\",\n \"lastReviewDate\": \"2016-08-15\",\n \"effectivePeriod\": {\n \"start\": \"2016-01-01\",\n \"end\": \"2017-12-31\"\n },\n \"topic\": [\n {\n \"text\": \"Suicide risk assessment\"\n }\n ],\n \"author\": [\n {\n \"name\": \"Motive Medical Intelligence\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"derived-from\",\n \"display\": \"Practice Guideline for the Treatment of Patients with Major Depressive Disorder\",\n \"url\": \"http://psychiatryonline.org/pb/assets/raw/sitewide/practice_guidelines/guidelines/mdd.pdf\"\n },\n {\n \"type\": \"composed-of\",\n \"resource\": \"ActivityDefinition/referralPrimaryCareMentalHealth\"\n },\n {\n \"type\": \"composed-of\",\n \"resource\": \"ActivityDefinition/citalopramPrescription\"\n }\n ],\n \"library\": [\n \"Library/suiciderisk-orderset-logic\"\n ],\n \"action\": [\n {\n \"title\": \"Suicide Risk Assessment and Outpatient Management\",\n \"action\": [\n {\n \"title\": \"Consults and Referrals\",\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"any\",\n \"action\": [\n {\n \"textEquivalent\": \"Refer to outpatient mental health program for evaluation and treatment of mental health conditions now\",\n \"definitionCanonical\": \"#referralToMentalHealthCare\",\n \"dynamicValue\": [\n {\n \"path\": \"timing.event\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Now()\"\n }\n },\n {\n \"path\": \"specialty\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Code \\u0027261QM0850X\\u0027 from SuicideRiskLogic.\\\"NUCC Provider Taxonomy\\\" display \\u0027Adult Mental Health\\u0027\"\n }\n },\n {\n \"path\": \"occurrenceDateTime\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.ServiceRequestFulfillmentTime\"\n }\n },\n {\n \"path\": \"subject\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Patient\"\n }\n },\n {\n \"path\": \"requester.agent\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Practitioner\"\n }\n },\n {\n \"path\": \"reasonCode\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessmentScore\"\n }\n },\n {\n \"path\": \"reasonReference\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessment\"\n }\n }\n ]\n }\n ]\n },\n {\n \"title\": \"Medications\",\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"at-most-one\",\n \"action\": [\n {\n \"title\": \"First-Line Antidepressants\",\n \"documentation\": [\n {\n \"type\": \"citation\",\n \"document\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/cqf-qualityOfEvidence\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/evidence-quality\",\n \"code\": \"high\"\n }\n ],\n \"text\": \"High Quality\"\n }\n }\n ],\n \"contentType\": \"text/html\",\n \"url\": \"http://psychiatryonline.org/pb/assets/raw/sitewide/practice_guidelines/guidelines/mdd.pdf\",\n \"title\": \"Practice Guideline for the Treatment of Patients with Major Depressive Disorder\"\n }\n }\n ],\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"at-most-one\",\n \"action\": [\n {\n \"title\": \"Selective Serotonin Reuptake Inhibitors (Choose a mazimum of one or document reasons for exception)\",\n \"documentation\": [\n {\n \"type\": \"citation\",\n \"document\": {\n \"contentType\": \"text/html\",\n \"url\": \"http://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid\\u003d6daeb45c-451d-b135-bf8f-2d6dff4b6b01\",\n \"title\": \"National Library of Medicine. DailyMed website. CITALOPRAM- citalopram hydrobromide tablet, film coated.\"\n }\n }\n ],\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"at-most-one\",\n \"action\": [\n {\n \"textEquivalent\": \"citalopram 20 mg tablet 1 tablet oral 1 time daily now (30 table; 3 refills)\",\n \"definitionCanonical\": \"#citalopramPrescription\",\n \"dynamicValue\": [\n {\n \"path\": \"status\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"\\u0027draft\\u0027\"\n }\n },\n {\n \"path\": \"patient\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Patient\"\n }\n },\n {\n \"path\": \"prescriber\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Practitioner\"\n }\n },\n {\n \"path\": \"reasonCode\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessmentScore\"\n }\n },\n {\n \"path\": \"reasonReference\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessment\"\n }\n }\n ]\n },\n {\n \"textEquivalent\": \"escitalopram 10 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\"\n },\n {\n \"textEquivalent\": \"fluoxetine 20 mg capsule 1 capsule oral 1 time daily now (30 tablet; 3 refills)\"\n },\n {\n \"textEquivalent\": \"paroxetine 20 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\"\n },\n {\n \"textEquivalent\": \"sertraline 50 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\"\n }\n ]\n },\n {\n \"textEquivalent\": \"Dopamine Norepinephrine Reuptake Inhibitors (Choose a maximum of one or document reasons for exception)\"\n },\n {\n \"textEquivalent\": \"Serotonin Norepinephrine Reuptake Inhibitors (Choose a maximum of one or doument reasons for exception)\"\n },\n {\n \"textEquivalent\": \"Norepinephrine-Serotonin Modulators (Choose a maximum of one or document reasons for exception)\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/PlanDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PlanDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PlanDefinitionById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PlanDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PlanDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "PlanDefinition_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"PlanDefinition\",\n \"id\": \"low-suicide-risk-order-set\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eId: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003ePlanDefinition/low-suicide-risk-order-set\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eIdentifier: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cspan\\u003emmi:low-suicide-risk-order-set\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTitle: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eLow Suicide Risk Order Set\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eStatus: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003edraft\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eDescription: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eOrders to be applied to a patient characterized as low suicide risk.\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003ePurpose: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eThis order set helps ensure consistent application of appropriate orders for the care of low suicide risk patients.\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eUsage: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003eThis order set should be applied after assessing a patient for suicide risk, when the findings of that assessment indicate the patient has low suicide risk.\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003eage\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttps://meshb.nlm.nih.gov\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003eD000328\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eAdult\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e87512008\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eMild major depression\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e40379007\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eMajor depression, recurrent, mild\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e394687007\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eLow suicide risk\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003efocus\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e225337009\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicide risk assessment\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003euser\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e309343006\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003ePhysician\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContext: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr style\\u003d\\\"vertical-align: top;\\\"\\u003e\\n \\u003ctd style\\u003d\\\"padding-right: 25px;\\\"\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://terminology.hl7.org/CodeSystem/usage-context-type\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003evenue\\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003cp style\\u003d\\\"padding-left: 25px; margin-top: 5px; margin-bottom: 5px;\\\"\\u003e\\n \\u003cb\\u003evalue: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003esystem: \\u003c/b\\u003e\\n \\u003cspan\\u003ehttp://snomed.info/sct\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003ecode: \\u003c/b\\u003e\\n \\u003cspan\\u003e440655000\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eOutpatient environment\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eTopic: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicide risk assessment\\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eContributor: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003e\\n \\u003cspan\\u003eauthor\\u003c/span\\u003e:\\n \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 50px; padding-right: 25px;\\\"\\u003eMotive Medical Intelligence\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ctable class\\u003d\\\"grid dict\\\"\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e\\n \\u003cb\\u003eLibrary: \\u003c/b\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cspan\\u003eLibrary/suiciderisk-orderset-logic\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd style\\u003d\\\"padding-left: 25px; padding-right: 25px;\\\"\\u003e\\n \\u003cb\\u003edisplay: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicideRiskLogic\\u003c/span\\u003e\\n \\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/table\\u003e\\n \\u003cp/\\u003e\\n \\u003ch2\\u003eActions\\u003c/h2\\u003e\\n \\u003cp style\\u003d\\\"width: 100%;\\\" class\\u003d\\\"hierarchy\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eSuicide Risk Assessment and Outpatient Management\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 25px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eConsults and Referrals\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eRefer to outpatient mental health program for evaluation and treatment of mental health conditions now\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cb\\u003econdition: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e#referralToMentalHealthCare\\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003edescription: \\u003c/b\\u003e\\n \\u003cspan\\u003erefer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003ecategory: \\u003c/b\\u003e\\n \\u003cspan\\u003ereferral\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eMedications\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 50px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eFirst-Line Antidepressants\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003etitle: \\u003c/b\\u003e\\n \\u003cspan\\u003eSelective Serotonin Reuptake Inhibitors (Choose a mazimum of one or document reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003ecitalopram 20 mg tablet 1 tablet oral 1 time daily now (30 table; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003econdition: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 150px;\\\"\\u003e\\n \\u003cb\\u003ereference: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 175px;\\\"\\u003e#citalopramPrescription\\u003c/span\\u003e\\n \\u003cspan/\\u003e\\n \\u003cspan\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 150px;\\\"\\u003e\\n \\u003cb\\u003ecategory: \\u003c/b\\u003e\\n \\u003cspan\\u003edrug\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan/\\u003e\\n \\u003cspan/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eescitalopram 10 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003efluoxetine 20 mg capsule 1 capsule oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eparoxetine 20 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003esertraline 50 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 125px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eDopamine Norepinephrine Reuptake Inhibitors (Choose a maximum of one or document reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eSerotonin Norepinephrine Reuptake Inhibitors (Choose a maximum of one or doument reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 75px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan\\u003e\\n \\u003cb\\u003eStep: \\u003c/b\\u003e\\n \\u003cbr/\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"\\u003e\\n \\u003cb\\u003etext: \\u003c/b\\u003e\\n \\u003cspan\\u003eNorepinephrine-Serotonin Modulators (Choose a maximum of one or document reasons for exception)\\u003c/span\\u003e\\n \\u003cbr/\\u003e\\n \\u003c/span\\u003e\\n \\u003cspan style\\u003d\\\"padding-left: 100px;\\\"/\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/span\\u003e\\n \\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"ActivityDefinition\",\n \"id\": \"referralToMentalHealthCare\",\n \"status\": \"draft\",\n \"description\": \"refer to primary care mental-health integrated care program for evaluation and treatment of mental health conditions now\",\n \"kind\": \"ServiceRequest\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"306206005\"\n }\n ],\n \"text\": \"Referral to service (procedure)\"\n },\n \"timingTiming\": {\n \"_event\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/cqf-expression\",\n \"valueExpression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Now()\"\n }\n }\n ]\n }\n ]\n },\n \"participant\": [\n {\n \"type\": \"practitioner\"\n }\n ]\n },\n {\n \"resourceType\": \"ActivityDefinition\",\n \"id\": \"citalopramPrescription\",\n \"status\": \"draft\",\n \"kind\": \"MedicationRequest\",\n \"productReference\": {\n \"reference\": \"#citalopramMedication\"\n },\n \"dosage\": [\n {\n \"text\": \"1 tablet oral 1 time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"code\": \"26643006\",\n \"display\": \"Oral route (qualifier value)\"\n }\n ],\n \"text\": \"Oral route (qualifier value)\"\n },\n \"doseAndRate\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n \"code\": \"ordered\",\n \"display\": \"Ordered\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": 1,\n \"unit\": \"{tbl}\"\n }\n }\n ]\n }\n ],\n \"dynamicValue\": [\n {\n \"path\": \"dispenseRequest.numberOfRepeatsAllowed\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"3\"\n }\n },\n {\n \"path\": \"dispenseRequest.quantity\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"30 \\u0027{tbl}\\u0027\"\n }\n }\n ]\n },\n {\n \"resourceType\": \"Medication\",\n \"id\": \"citalopramMedication\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"200371\"\n }\n ],\n \"text\": \"citalopram\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"385055001\",\n \"display\": \"Tablet dose form\"\n }\n ],\n \"text\": \"Tablet dose form\"\n },\n \"ingredient\": [\n {\n \"itemReference\": {\n \"reference\": \"#citalopramSubstance\"\n },\n \"strength\": {\n \"numerator\": {\n \"value\": 20,\n \"unit\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"{tbl}\"\n }\n }\n }\n ]\n },\n {\n \"resourceType\": \"Substance\",\n \"id\": \"citalopramSubstance\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"2556\"\n }\n ],\n \"text\": \"citalopram\"\n }\n }\n ],\n \"url\": \"http://motivemi.com/artifacts/PlanDefinition/low-suicide-risk-order-set\",\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://motivemi.com/artifacts\",\n \"value\": \"mmi:low-suicide-risk-order-set\"\n }\n ],\n \"version\": \"1.0.0\",\n \"name\": \"LowSuicideRiskOrderSet\",\n \"title\": \"Low Suicide Risk Order Set\",\n \"status\": \"active\",\n \"experimental\": true,\n \"date\": \"2015-08-15\",\n \"publisher\": \"Motive Medical Intelligence\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"description\": \"Orders to be applied to a patient characterized as low suicide risk.\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"https://meshb.nlm.nih.gov\",\n \"code\": \"D000328\",\n \"display\": \"Adult\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"87512008\",\n \"display\": \"Mild major depression\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40379007\",\n \"display\": \"Major depression, recurrent, mild\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"394687007\",\n \"display\": \"Low suicide risk\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"225337009\",\n \"display\": \"Suicide risk assessment\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"user\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"309343006\",\n \"display\": \"Physician\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"venue\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"440655000\",\n \"display\": \"Outpatient environment\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"This order set helps ensure consistent application of appropriate orders for the care of low suicide risk patients.\",\n \"usage\": \"This order set should be applied after assessing a patient for suicide risk, when the findings of that assessment indicate the patient has low suicide risk.\",\n \"copyright\": \"© Copyright 2016 Motive Medical Intelligence. All rights reserved.\",\n \"approvalDate\": \"2016-03-12\",\n \"lastReviewDate\": \"2016-08-15\",\n \"effectivePeriod\": {\n \"start\": \"2016-01-01\",\n \"end\": \"2017-12-31\"\n },\n \"topic\": [\n {\n \"text\": \"Suicide risk assessment\"\n }\n ],\n \"author\": [\n {\n \"name\": \"Motive Medical Intelligence\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"415-362-4007\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"info@motivemi.com\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"relatedArtifact\": [\n {\n \"type\": \"derived-from\",\n \"display\": \"Practice Guideline for the Treatment of Patients with Major Depressive Disorder\",\n \"url\": \"http://psychiatryonline.org/pb/assets/raw/sitewide/practice_guidelines/guidelines/mdd.pdf\"\n },\n {\n \"type\": \"composed-of\",\n \"resource\": \"ActivityDefinition/referralPrimaryCareMentalHealth\"\n },\n {\n \"type\": \"composed-of\",\n \"resource\": \"ActivityDefinition/citalopramPrescription\"\n }\n ],\n \"library\": [\n \"Library/suiciderisk-orderset-logic\"\n ],\n \"action\": [\n {\n \"title\": \"Suicide Risk Assessment and Outpatient Management\",\n \"action\": [\n {\n \"title\": \"Consults and Referrals\",\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"any\",\n \"action\": [\n {\n \"textEquivalent\": \"Refer to outpatient mental health program for evaluation and treatment of mental health conditions now\",\n \"definitionCanonical\": \"#referralToMentalHealthCare\",\n \"dynamicValue\": [\n {\n \"path\": \"timing.event\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Now()\"\n }\n },\n {\n \"path\": \"specialty\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"Code \\u0027261QM0850X\\u0027 from SuicideRiskLogic.\\\"NUCC Provider Taxonomy\\\" display \\u0027Adult Mental Health\\u0027\"\n }\n },\n {\n \"path\": \"occurrenceDateTime\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.ServiceRequestFulfillmentTime\"\n }\n },\n {\n \"path\": \"subject\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Patient\"\n }\n },\n {\n \"path\": \"requester.agent\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Practitioner\"\n }\n },\n {\n \"path\": \"reasonCode\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessmentScore\"\n }\n },\n {\n \"path\": \"reasonReference\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessment\"\n }\n }\n ]\n }\n ]\n },\n {\n \"title\": \"Medications\",\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"at-most-one\",\n \"action\": [\n {\n \"title\": \"First-Line Antidepressants\",\n \"documentation\": [\n {\n \"type\": \"citation\",\n \"document\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/cqf-qualityOfEvidence\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/evidence-quality\",\n \"code\": \"high\"\n }\n ],\n \"text\": \"High Quality\"\n }\n }\n ],\n \"contentType\": \"text/html\",\n \"url\": \"http://psychiatryonline.org/pb/assets/raw/sitewide/practice_guidelines/guidelines/mdd.pdf\",\n \"title\": \"Practice Guideline for the Treatment of Patients with Major Depressive Disorder\"\n }\n }\n ],\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"at-most-one\",\n \"action\": [\n {\n \"title\": \"Selective Serotonin Reuptake Inhibitors (Choose a mazimum of one or document reasons for exception)\",\n \"documentation\": [\n {\n \"type\": \"citation\",\n \"document\": {\n \"contentType\": \"text/html\",\n \"url\": \"http://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid\\u003d6daeb45c-451d-b135-bf8f-2d6dff4b6b01\",\n \"title\": \"National Library of Medicine. DailyMed website. CITALOPRAM- citalopram hydrobromide tablet, film coated.\"\n }\n }\n ],\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"at-most-one\",\n \"action\": [\n {\n \"textEquivalent\": \"citalopram 20 mg tablet 1 tablet oral 1 time daily now (30 table; 3 refills)\",\n \"definitionCanonical\": \"#citalopramPrescription\",\n \"dynamicValue\": [\n {\n \"path\": \"status\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"\\u0027draft\\u0027\"\n }\n },\n {\n \"path\": \"patient\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Patient\"\n }\n },\n {\n \"path\": \"prescriber\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.Practitioner\"\n }\n },\n {\n \"path\": \"reasonCode\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessmentScore\"\n }\n },\n {\n \"path\": \"reasonReference\",\n \"expression\": {\n \"language\": \"text/cql\",\n \"expression\": \"SuicideRiskLogic.RiskAssessment\"\n }\n }\n ]\n },\n {\n \"textEquivalent\": \"escitalopram 10 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\"\n },\n {\n \"textEquivalent\": \"fluoxetine 20 mg capsule 1 capsule oral 1 time daily now (30 tablet; 3 refills)\"\n },\n {\n \"textEquivalent\": \"paroxetine 20 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\"\n },\n {\n \"textEquivalent\": \"sertraline 50 mg tablet 1 tablet oral 1 time daily now (30 tablet; 3 refills)\"\n }\n ]\n },\n {\n \"textEquivalent\": \"Dopamine Norepinephrine Reuptake Inhibitors (Choose a maximum of one or document reasons for exception)\"\n },\n {\n \"textEquivalent\": \"Serotonin Norepinephrine Reuptake Inhibitors (Choose a maximum of one or doument reasons for exception)\"\n },\n {\n \"textEquivalent\": \"Norepinephrine-Serotonin Modulators (Choose a maximum of one or document reasons for exception)\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/PlanDefinition", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PlanDefinition" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PlanDefinition_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PlanDefinition?composed-of=&depends-on=&derived-from=&predecessor=&successor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&effective=&identifier=&jurisdiction=&name=&publisher=&status=&title=&topic=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PlanDefinition" + ], + "query": [ + { + "key": "composed-of", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "depends-on", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "derived-from", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "predecessor", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "successor", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "The plan definition publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the plan definition" + }, + { + "key": "effective", + "value": "", + "description": "The time during which the plan definition is intended to be in use" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the plan definition" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the plan definition" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the plan definition" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the plan definition" + }, + { + "key": "status", + "value": "", + "description": "The current status of the plan definition" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the plan definition" + }, + { + "key": "topic", + "value": "", + "description": "Topics associated with the module" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the plan definition" + }, + { + "key": "version", + "value": "", + "description": "The business version of the plan definition" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PlanDefinitionHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PlanDefinition/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PlanDefinition", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Practitioner", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "PractitionerHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Practitioner/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Practitioner", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PractitionerHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Practitioner/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Practitioner", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "PractitionerById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Practitioner/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Practitioner", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PractitionerById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Practitioner\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eDr Adam Careful is a Referring Practitioner for Acme Hospital from 1-Jan 2012 to 31-Mar\\n 2012\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.acme.org/practitioners\",\n \"value\": \"23\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"family\": \"Careful\",\n \"given\": [\n \"Adam\"\n ],\n \"prefix\": [\n \"Dr\"\n ]\n }\n ],\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"534 Erewhon St\"\n ],\n \"city\": \"PleasantVille\",\n \"state\": \"Vic\",\n \"postalCode\": \"3999\"\n }\n ],\n \"qualification\": [\n {\n \"identifier\": [\n {\n \"system\": \"http://example.org/UniversityIdentifier\",\n \"value\": \"12345\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360/2.7\",\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"period\": {\n \"start\": \"1995\"\n },\n \"issuer\": {\n \"display\": \"Example University\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Practitioner/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Practitioner", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PractitionerById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Practitioner/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Practitioner", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Practitioner_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Practitioner\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eDr Adam Careful is a Referring Practitioner for Acme Hospital from 1-Jan 2012 to 31-Mar\\n 2012\\u003c/p\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.acme.org/practitioners\",\n \"value\": \"23\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"family\": \"Careful\",\n \"given\": [\n \"Adam\"\n ],\n \"prefix\": [\n \"Dr\"\n ]\n }\n ],\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"534 Erewhon St\"\n ],\n \"city\": \"PleasantVille\",\n \"state\": \"Vic\",\n \"postalCode\": \"3999\"\n }\n ],\n \"qualification\": [\n {\n \"identifier\": [\n {\n \"system\": \"http://example.org/UniversityIdentifier\",\n \"value\": \"12345\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360/2.7\",\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"period\": {\n \"start\": \"1995\"\n },\n \"issuer\": {\n \"display\": \"Example University\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Practitioner", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Practitioner" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Practitioner_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Practitioner?_id=&_lastUpdated=&_profile=&_security=&_tag=&address=&address-city=&address-country=&address-postalcode=&address-state=&address-use=&email=&family=&gender=&given=&phone=&phonetic=&telecom=&active=&communication=&identifier=&name=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Practitioner" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "address", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Practitioner](practitioner.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Person](person.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Patient](patient.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text" + }, + { + "key": "address-city", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A city specified in an address\r\n* [Practitioner](practitioner.html): A city specified in an address\r\n* [Person](person.html): A city specified in an address\r\n* [Patient](patient.html): A city specified in an address" + }, + { + "key": "address-country", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A country specified in an address\r\n* [Practitioner](practitioner.html): A country specified in an address\r\n* [Person](person.html): A country specified in an address\r\n* [Patient](patient.html): A country specified in an address" + }, + { + "key": "address-postalcode", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A postal code specified in an address\r\n* [Practitioner](practitioner.html): A postalCode specified in an address\r\n* [Person](person.html): A postal code specified in an address\r\n* [Patient](patient.html): A postalCode specified in an address" + }, + { + "key": "address-state", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A state specified in an address\r\n* [Practitioner](practitioner.html): A state specified in an address\r\n* [Person](person.html): A state specified in an address\r\n* [Patient](patient.html): A state specified in an address" + }, + { + "key": "address-use", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A use code specified in an address\r\n* [Practitioner](practitioner.html): A use code specified in an address\r\n* [Person](person.html): A use code specified in an address\r\n* [Patient](patient.html): A use code specified in an address" + }, + { + "key": "email", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in an email contact\r\n* [RelatedPerson](relatedperson.html): A value in an email contact\r\n* [Practitioner](practitioner.html): A value in an email contact\r\n* [Person](person.html): A value in an email contact\r\n* [Patient](patient.html): A value in an email contact" + }, + { + "key": "family", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Practitioner](practitioner.html): A portion of the family name\r\n* [Patient](patient.html): A portion of the family name of the patient" + }, + { + "key": "gender", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): Gender of the related person\r\n* [Practitioner](practitioner.html): Gender of the practitioner\r\n* [Person](person.html): The gender of the person\r\n* [Patient](patient.html): Gender of the patient" + }, + { + "key": "given", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Practitioner](practitioner.html): A portion of the given name\r\n* [Patient](patient.html): A portion of the given name of the patient" + }, + { + "key": "phone", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in a phone contact\r\n* [RelatedPerson](relatedperson.html): A value in a phone contact\r\n* [Practitioner](practitioner.html): A value in a phone contact\r\n* [Person](person.html): A value in a phone contact\r\n* [Patient](patient.html): A value in a phone contact" + }, + { + "key": "phonetic", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Practitioner](practitioner.html): A portion of either family or given name using some kind of phonetic matching algorithm\r\n* [Person](person.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Patient](patient.html): A portion of either family or given name using some kind of phonetic matching algorithm" + }, + { + "key": "telecom", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): The value in any kind of contact\r\n* [RelatedPerson](relatedperson.html): The value in any kind of contact\r\n* [Practitioner](practitioner.html): The value in any kind of contact\r\n* [Person](person.html): The value in any kind of contact\r\n* [Patient](patient.html): The value in any kind of telecom details of the patient" + }, + { + "key": "active", + "value": "", + "description": "Whether the practitioner record is active" + }, + { + "key": "communication", + "value": "", + "description": "One of the languages that the practitioner can communicate with" + }, + { + "key": "identifier", + "value": "", + "description": "A practitioner's Identifier" + }, + { + "key": "name", + "value": "", + "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PractitionerHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Practitioner/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Practitioner", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Practitioner Role", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "PractitionerRoleHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PractitionerRole/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PractitionerRole", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PractitionerRoleHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PractitionerRole/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PractitionerRole", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "PractitionerRoleById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PractitionerRole/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PractitionerRole", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PractitionerRoleById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"PractitionerRole\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003e\\n\\t\\t\\t\\tDr Adam Careful is a Referring Practitioner for Acme Hospital from 1-Jan 2012 to 31-Mar\\n\\t\\t\\t\\t2012\\n\\t\\t\\t\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.acme.org/practitioners\",\n \"value\": \"23\"\n }\n ],\n \"active\": true,\n \"period\": {\n \"start\": \"2012-01-01\",\n \"end\": \"2012-03-31\"\n },\n \"practitioner\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"organization\": {\n \"reference\": \"Organization/f001\"\n },\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0286\",\n \"code\": \"RP\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"408443003\",\n \"display\": \"General medical practice\"\n }\n ]\n }\n ],\n \"location\": [\n {\n \"reference\": \"Location/1\",\n \"display\": \"South Wing, second floor\"\n }\n ],\n \"healthcareService\": [\n {\n \"reference\": \"HealthcareService/example\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"(03) 5555 6473\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"adam.southern@example.org\",\n \"use\": \"work\"\n }\n ],\n \"availableTime\": [\n {\n \"daysOfWeek\": [\n \"mon\",\n \"tue\",\n \"wed\"\n ],\n \"availableStartTime\": \"09:00:00\",\n \"availableEndTime\": \"16:30:00\"\n },\n {\n \"daysOfWeek\": [\n \"thu\",\n \"fri\"\n ],\n \"availableStartTime\": \"09:00:00\",\n \"availableEndTime\": \"12:00:00\"\n }\n ],\n \"notAvailable\": [\n {\n \"description\": \"Adam will be on extended leave during May 2017\",\n \"during\": {\n \"start\": \"2017-05-01\",\n \"end\": \"2017-05-20\"\n }\n }\n ],\n \"availabilityExceptions\": \"Adam is generally unavailable on public holidays and during the Christmas/New Year break\",\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/PractitionerRole/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PractitionerRole", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PractitionerRoleById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PractitionerRole/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PractitionerRole", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "PractitionerRole_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"PractitionerRole\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003e\\n\\t\\t\\t\\tDr Adam Careful is a Referring Practitioner for Acme Hospital from 1-Jan 2012 to 31-Mar\\n\\t\\t\\t\\t2012\\n\\t\\t\\t\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.acme.org/practitioners\",\n \"value\": \"23\"\n }\n ],\n \"active\": true,\n \"period\": {\n \"start\": \"2012-01-01\",\n \"end\": \"2012-03-31\"\n },\n \"practitioner\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Adam Careful\"\n },\n \"organization\": {\n \"reference\": \"Organization/f001\"\n },\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0286\",\n \"code\": \"RP\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"408443003\",\n \"display\": \"General medical practice\"\n }\n ]\n }\n ],\n \"location\": [\n {\n \"reference\": \"Location/1\",\n \"display\": \"South Wing, second floor\"\n }\n ],\n \"healthcareService\": [\n {\n \"reference\": \"HealthcareService/example\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"(03) 5555 6473\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"adam.southern@example.org\",\n \"use\": \"work\"\n }\n ],\n \"availableTime\": [\n {\n \"daysOfWeek\": [\n \"mon\",\n \"tue\",\n \"wed\"\n ],\n \"availableStartTime\": \"09:00:00\",\n \"availableEndTime\": \"16:30:00\"\n },\n {\n \"daysOfWeek\": [\n \"thu\",\n \"fri\"\n ],\n \"availableStartTime\": \"09:00:00\",\n \"availableEndTime\": \"12:00:00\"\n }\n ],\n \"notAvailable\": [\n {\n \"description\": \"Adam will be on extended leave during May 2017\",\n \"during\": {\n \"start\": \"2017-05-01\",\n \"end\": \"2017-05-20\"\n }\n }\n ],\n \"availabilityExceptions\": \"Adam is generally unavailable on public holidays and during the Christmas/New Year break\",\n \"endpoint\": [\n {\n \"reference\": \"Endpoint/example\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/PractitionerRole", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PractitionerRole" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PractitionerRole_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PractitionerRole?endpoint=&location=&organization=&practitioner=&service=&_id=&_lastUpdated=&_profile=&_security=&_tag=&email=&phone=&telecom=&active=&date=&identifier=&role=&specialty=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PractitionerRole" + ], + "query": [ + { + "key": "endpoint", + "value": "", + "description": "Technical endpoints providing access to services operated for the practitioner with this role" + }, + { + "key": "location", + "value": "", + "description": "One of the locations at which this practitioner provides care" + }, + { + "key": "organization", + "value": "", + "description": "The identity of the organization the practitioner represents / acts on behalf of" + }, + { + "key": "practitioner", + "value": "", + "description": "Practitioner that is able to provide the defined services for the organation" + }, + { + "key": "service", + "value": "", + "description": "The list of healthcare services that this worker provides for this role's Organization/Location(s)" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "email", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in an email contact\r\n* [RelatedPerson](relatedperson.html): A value in an email contact\r\n* [Practitioner](practitioner.html): A value in an email contact\r\n* [Person](person.html): A value in an email contact\r\n* [Patient](patient.html): A value in an email contact" + }, + { + "key": "phone", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in a phone contact\r\n* [RelatedPerson](relatedperson.html): A value in a phone contact\r\n* [Practitioner](practitioner.html): A value in a phone contact\r\n* [Person](person.html): A value in a phone contact\r\n* [Patient](patient.html): A value in a phone contact" + }, + { + "key": "telecom", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): The value in any kind of contact\r\n* [RelatedPerson](relatedperson.html): The value in any kind of contact\r\n* [Practitioner](practitioner.html): The value in any kind of contact\r\n* [Person](person.html): The value in any kind of contact\r\n* [Patient](patient.html): The value in any kind of telecom details of the patient" + }, + { + "key": "active", + "value": "", + "description": "Whether this practitioner's record is in active use" + }, + { + "key": "date", + "value": "", + "description": "The period during which the practitioner is authorized to perform in these role(s)" + }, + { + "key": "identifier", + "value": "", + "description": "A practitioner's Identifier" + }, + { + "key": "role", + "value": "", + "description": "The practitioner can perform this role at for the organization" + }, + { + "key": "specialty", + "value": "", + "description": "The practitioner has this specialty at an organization" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "PractitionerRoleHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/PractitionerRole/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "PractitionerRole", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Procedure", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ProcedureHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Procedure/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Procedure", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcedureHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Procedure/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Procedure", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ProcedureById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Procedure/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Procedure", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcedureById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Procedure\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eRoutine Appendectomy\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80146002\",\n \"display\": \"Appendectomy (Procedure)\"\n }\n ],\n \"text\": \"Appendectomy\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"performedDateTime\": \"2013-04-05\",\n \"recorder\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Cecil Surgeon\"\n },\n \"asserter\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Cecil Surgeon\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Cecil Surgeon\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Generalized abdominal pain 24 hours. Localized in RIF with rebound and guarding\"\n }\n ],\n \"followUp\": [\n {\n \"text\": \"ROS 5 days - 2013-04-10\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Routine Appendectomy. Appendix was inflamed and in retro-caecal position\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Procedure/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Procedure", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcedureById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Procedure/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Procedure", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Procedure_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Procedure\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eRoutine Appendectomy\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80146002\",\n \"display\": \"Appendectomy (Procedure)\"\n }\n ],\n \"text\": \"Appendectomy\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"performedDateTime\": \"2013-04-05\",\n \"recorder\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Cecil Surgeon\"\n },\n \"asserter\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Cecil Surgeon\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/example\",\n \"display\": \"Dr Cecil Surgeon\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Generalized abdominal pain 24 hours. Localized in RIF with rebound and guarding\"\n }\n ],\n \"followUp\": [\n {\n \"text\": \"ROS 5 days - 2013-04-10\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Routine Appendectomy. Appendix was inflamed and in retro-caecal position\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Procedure", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Procedure" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Procedure_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Procedure?patient=&encounter=&based-on=&context=&definition=&location=&part-of=&performer=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&identifier=&category=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Procedure" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "encounter", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" + }, + { + "key": "based-on", + "value": "", + "description": "A request for this procedure" + }, + { + "key": "context", + "value": "", + "description": "Encounter or episode associated with the procedure" + }, + { + "key": "definition", + "value": "", + "description": "Instantiates protocol or definition" + }, + { + "key": "location", + "value": "", + "description": "Where the procedure happened" + }, + { + "key": "part-of", + "value": "", + "description": "Part of referenced event" + }, + { + "key": "performer", + "value": "", + "description": "The reference to the practitioner" + }, + { + "key": "subject", + "value": "", + "description": "Search by subject" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "category", + "value": "", + "description": "Classification of the procedure" + }, + { + "key": "status", + "value": "", + "description": "preparation | in-progress | suspended | aborted | completed | entered-in-error | unknown" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcedureHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Procedure/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Procedure", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Procedure Request", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ProcedureRequestHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcedureRequest/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcedureRequest", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcedureRequestHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcedureRequest/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcedureRequest", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ProcedureRequestById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcedureRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcedureRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcedureRequestById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"subject\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"reference\": \"\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ProcedureRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcedureRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcedureRequestById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcedureRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcedureRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ProcedureRequest_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"subject\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"reference\": \"\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ProcedureRequest", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcedureRequest" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcedureRequest_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcedureRequest?patient=&encounter=&based-on=&context=&definition=&performer=&replaces=&requester=&specimen=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&identifier=&authored=&body-site=&intent=&occurrence=&performer-type=&priority=&requisition=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcedureRequest" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "encounter", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" + }, + { + "key": "based-on", + "value": "", + "description": "What request fulfills" + }, + { + "key": "context", + "value": "", + "description": "Encounter or Episode during which request was created" + }, + { + "key": "definition", + "value": "", + "description": "Protocol or definition" + }, + { + "key": "performer", + "value": "", + "description": "Requested perfomer" + }, + { + "key": "replaces", + "value": "", + "description": "What request replaces" + }, + { + "key": "requester", + "value": "", + "description": "Individual making the request" + }, + { + "key": "specimen", + "value": "", + "description": "Specimen to be tested" + }, + { + "key": "subject", + "value": "", + "description": "Search by subject" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [List](list.html): What the purpose of this list is\r\n* [ProcedureRequest](procedurerequest.html): What is being requested/ordered\r\n* [Observation](observation.html): The code of the observation type\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [Condition](condition.html): Code for the condition" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "authored", + "value": "", + "description": "Date request signed" + }, + { + "key": "body-site", + "value": "", + "description": "Where procedure is going to be done" + }, + { + "key": "intent", + "value": "", + "description": "proposal | plan | order +" + }, + { + "key": "occurrence", + "value": "", + "description": "When procedure should occur" + }, + { + "key": "performer-type", + "value": "", + "description": "Performer role" + }, + { + "key": "priority", + "value": "", + "description": "routine | urgent | asap | stat" + }, + { + "key": "requisition", + "value": "", + "description": "Composite Request ID" + }, + { + "key": "status", + "value": "", + "description": "draft | active | suspended | completed | entered-in-error | cancelled" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcedureRequestHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcedureRequest/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcedureRequest", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Process Request", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ProcessRequestHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcessRequest/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessRequest", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcessRequestHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcessRequest/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessRequest", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ProcessRequestById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcessRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcessRequestById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"action\": \"\",\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"created\": \"\",\n \"organizationReference\": {\n \"reference\": \"\"\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ProcessRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcessRequestById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcessRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ProcessRequest_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"action\": \"\",\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"created\": \"\",\n \"organizationReference\": {\n \"reference\": \"\"\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ProcessRequest", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessRequest" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcessRequest_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcessRequest?organization=&provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&action=&identifier=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessRequest" + ], + "query": [ + { + "key": "organization", + "value": "", + "description": "The organization who generated this request" + }, + { + "key": "provider", + "value": "", + "description": "The provider who regenerated this request" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "action", + "value": "", + "description": "The action requested by this resource" + }, + { + "key": "identifier", + "value": "", + "description": "The business identifier of the ProcessRequest" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcessRequestHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcessRequest/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessRequest", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Process Response", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ProcessResponseHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcessResponse/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessResponse", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcessResponseHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcessResponse/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessResponse", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ProcessResponseById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcessResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcessResponseById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"requestReference\": {\n \"reference\": \"\"\n },\n \"outcome\": {\n \"system\": \"\",\n \"code\": \"\"\n },\n \"disposition\": \"\",\n \"created\": \"\",\n \"organizationReference\": {\n \"reference\": \"\"\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ProcessResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcessResponseById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcessResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ProcessResponse_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"requestReference\": {\n \"reference\": \"\"\n },\n \"outcome\": {\n \"system\": \"\",\n \"code\": \"\"\n },\n \"disposition\": \"\",\n \"created\": \"\",\n \"organizationReference\": {\n \"reference\": \"\"\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ProcessResponse", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessResponse" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcessResponse_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcessResponse?organization=&request=&request-organization=&request-provider=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessResponse" + ], + "query": [ + { + "key": "organization", + "value": "", + "description": "The organization who generated this resource" + }, + { + "key": "request", + "value": "", + "description": "The reference to the claim" + }, + { + "key": "request-organization", + "value": "", + "description": "The Organization who is responsible the request transaction" + }, + { + "key": "request-provider", + "value": "", + "description": "The Provider who is responsible the request transaction" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "The business identifier of the Explanation of Benefit" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProcessResponseHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ProcessResponse/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ProcessResponse", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Provenance", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ProvenanceHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Provenance/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Provenance", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProvenanceHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Provenance/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Provenance", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ProvenanceById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Provenance/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Provenance", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProvenanceById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Provenance\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eprocedure record authored on 27-June 2015 by Harold Hippocrates, MD Content extracted from XDS managed CDA Referral received 26-June as authorized by a referenced Consent.\\u003c/div\\u003e\"\n },\n \"target\": [\n {\n \"reference\": \"Procedure/example/_history/1\"\n }\n ],\n \"occurredPeriod\": {\n \"start\": \"2015-06-27\",\n \"end\": \"2015-06-28\"\n },\n \"recorded\": \"2015-06-27T08:39:24+10:00\",\n \"policy\": [\n \"http://acme.com/fhir/Consent/25\"\n ],\n \"location\": {\n \"reference\": \"Location/1\"\n },\n \"reason\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Referral\"\n }\n ]\n }\n ],\n \"agent\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"AUT\"\n }\n ]\n },\n \"who\": {\n \"reference\": \"Practitioner/xcda-author\"\n }\n },\n {\n \"id\": \"a1\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"DEV\"\n }\n ]\n },\n \"who\": {\n \"reference\": \"Device/software\"\n }\n }\n ],\n \"entity\": [\n {\n \"role\": \"source\",\n \"what\": {\n \"reference\": \"DocumentReference/example\",\n \"display\": \"CDA Document in XDS repository\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Provenance/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Provenance", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProvenanceById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Provenance/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Provenance", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Provenance_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Provenance\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eprocedure record authored on 27-June 2015 by Harold Hippocrates, MD Content extracted from XDS managed CDA Referral received 26-June as authorized by a referenced Consent.\\u003c/div\\u003e\"\n },\n \"target\": [\n {\n \"reference\": \"Procedure/example/_history/1\"\n }\n ],\n \"occurredPeriod\": {\n \"start\": \"2015-06-27\",\n \"end\": \"2015-06-28\"\n },\n \"recorded\": \"2015-06-27T08:39:24+10:00\",\n \"policy\": [\n \"http://acme.com/fhir/Consent/25\"\n ],\n \"location\": {\n \"reference\": \"Location/1\"\n },\n \"reason\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Referral\"\n }\n ]\n }\n ],\n \"agent\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"AUT\"\n }\n ]\n },\n \"who\": {\n \"reference\": \"Practitioner/xcda-author\"\n }\n },\n {\n \"id\": \"a1\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"DEV\"\n }\n ]\n },\n \"who\": {\n \"reference\": \"Device/software\"\n }\n }\n ],\n \"entity\": [\n {\n \"role\": \"source\",\n \"what\": {\n \"reference\": \"DocumentReference/example\",\n \"display\": \"CDA Document in XDS repository\"\n }\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Provenance", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Provenance" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Provenance_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Provenance?agent=&entity-ref=&location=&patient=&target=&_id=&_lastUpdated=&_profile=&_security=&_tag=&agent-role=&end=&entity-id=&recorded=&signature-type=&start=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Provenance" + ], + "query": [ + { + "key": "agent", + "value": "", + "description": "Who participated" + }, + { + "key": "entity-ref", + "value": "", + "description": "Identity of entity" + }, + { + "key": "location", + "value": "", + "description": "Where the activity occurred, if relevant" + }, + { + "key": "patient", + "value": "", + "description": "Target Reference(s) (usually version specific)" + }, + { + "key": "target", + "value": "", + "description": "Target Reference(s) (usually version specific)" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "agent-role", + "value": "", + "description": "What the agents role was" + }, + { + "key": "end", + "value": "", + "description": "End time with inclusive boundary, if not ongoing" + }, + { + "key": "entity-id", + "value": "", + "description": "Identity of entity" + }, + { + "key": "recorded", + "value": "", + "description": "When the activity was recorded / updated" + }, + { + "key": "signature-type", + "value": "", + "description": "Indication of the reason the entity signed the object(s)" + }, + { + "key": "start", + "value": "", + "description": "Starting time with inclusive boundary" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ProvenanceHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Provenance/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Provenance", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Questionnaire", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "QuestionnaireHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Questionnaire/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Questionnaire", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "QuestionnaireHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Questionnaire/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Questionnaire", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "QuestionnaireById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Questionnaire/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Questionnaire", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "QuestionnaireById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Questionnaire\",\n \"id\": \"3141\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cpre\\u003e\\n 1.Comorbidity?\\n 1.1 Cardial Comorbidity\\n 1.1.1 Angina?\\n 1.1.2 MI?\\n 1.2 Vascular Comorbidity?\\n ...\\n Histopathology\\n Abdominal\\n pT category?\\n ...\\n \\u003c/pre\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/Questionnaire/3141\",\n \"title\": \"Cancer Quality Forum Questionnaire 2012\",\n \"status\": \"draft\",\n \"subjectType\": [\n \"Patient\"\n ],\n \"date\": \"2012-01\",\n \"item\": [\n {\n \"linkId\": \"1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"COMORBIDITY\"\n }\n ],\n \"type\": \"group\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMORB\"\n }\n ],\n \"prefix\": \"1\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\",\n \"item\": [\n {\n \"linkId\": \"1.1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"CARDIAL\"\n }\n ],\n \"type\": \"group\",\n \"enableWhen\": [\n {\n \"question\": \"1.1\",\n \"operator\": \"\\u003d\",\n \"answerCoding\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0136\",\n \"code\": \"Y\"\n }\n }\n ],\n \"item\": [\n {\n \"linkId\": \"1.1.1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMORBCAR\"\n }\n ],\n \"prefix\": \"1.1\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\",\n \"item\": [\n {\n \"linkId\": \"1.1.1.1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMCAR00\",\n \"display\": \"Angina Pectoris\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"194828000\",\n \"display\": \"Angina (disorder)\"\n }\n ],\n \"prefix\": \"1.1.1\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\"\n },\n {\n \"linkId\": \"1.1.1.1.2\",\n \"code\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"22298006\",\n \"display\": \"Myocardial infarction (disorder)\"\n }\n ],\n \"prefix\": \"1.1.2\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\"\n }\n ]\n },\n {\n \"linkId\": \"1.1.1.2\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMORBVAS\"\n }\n ],\n \"prefix\": \"1.2\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\"\n }\n ]\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"HISTOPATHOLOGY\"\n }\n ],\n \"type\": \"group\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"ABDOMINAL\"\n }\n ],\n \"type\": \"group\",\n \"item\": [\n {\n \"linkId\": \"2.1.2\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"STADPT\",\n \"display\": \"pT category\"\n }\n ],\n \"type\": \"choice\"\n }\n ]\n }\n ]\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/Questionnaire/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Questionnaire", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "QuestionnaireById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Questionnaire/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Questionnaire", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Questionnaire_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Questionnaire\",\n \"id\": \"3141\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cpre\\u003e\\n 1.Comorbidity?\\n 1.1 Cardial Comorbidity\\n 1.1.1 Angina?\\n 1.1.2 MI?\\n 1.2 Vascular Comorbidity?\\n ...\\n Histopathology\\n Abdominal\\n pT category?\\n ...\\n \\u003c/pre\\u003e\\n \\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/Questionnaire/3141\",\n \"title\": \"Cancer Quality Forum Questionnaire 2012\",\n \"status\": \"draft\",\n \"subjectType\": [\n \"Patient\"\n ],\n \"date\": \"2012-01\",\n \"item\": [\n {\n \"linkId\": \"1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"COMORBIDITY\"\n }\n ],\n \"type\": \"group\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMORB\"\n }\n ],\n \"prefix\": \"1\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\",\n \"item\": [\n {\n \"linkId\": \"1.1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"CARDIAL\"\n }\n ],\n \"type\": \"group\",\n \"enableWhen\": [\n {\n \"question\": \"1.1\",\n \"operator\": \"\\u003d\",\n \"answerCoding\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0136\",\n \"code\": \"Y\"\n }\n }\n ],\n \"item\": [\n {\n \"linkId\": \"1.1.1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMORBCAR\"\n }\n ],\n \"prefix\": \"1.1\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\",\n \"item\": [\n {\n \"linkId\": \"1.1.1.1.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMCAR00\",\n \"display\": \"Angina Pectoris\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"194828000\",\n \"display\": \"Angina (disorder)\"\n }\n ],\n \"prefix\": \"1.1.1\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\"\n },\n {\n \"linkId\": \"1.1.1.1.2\",\n \"code\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"22298006\",\n \"display\": \"Myocardial infarction (disorder)\"\n }\n ],\n \"prefix\": \"1.1.2\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\"\n }\n ]\n },\n {\n \"linkId\": \"1.1.1.2\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"COMORBVAS\"\n }\n ],\n \"prefix\": \"1.2\",\n \"type\": \"choice\",\n \"answerValueSet\": \"http://hl7.org/fhir/ValueSet/yesnodontknow\"\n }\n ]\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"HISTOPATHOLOGY\"\n }\n ],\n \"type\": \"group\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/sections\",\n \"code\": \"ABDOMINAL\"\n }\n ],\n \"type\": \"group\",\n \"item\": [\n {\n \"linkId\": \"2.1.2\",\n \"code\": [\n {\n \"system\": \"http://example.org/system/code/questions\",\n \"code\": \"STADPT\",\n \"display\": \"pT category\"\n }\n ],\n \"type\": \"choice\"\n }\n ]\n }\n ]\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/Questionnaire", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Questionnaire" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Questionnaire_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Questionnaire?_id=&_lastUpdated=&_profile=&_security=&_tag=&code=&date=&description=&effective=&identifier=&jurisdiction=&name=&publisher=&status=&title=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Questionnaire" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "code", + "value": "", + "description": "A code that corresponds to one of its items in the questionnaire" + }, + { + "key": "date", + "value": "", + "description": "The questionnaire publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the questionnaire" + }, + { + "key": "effective", + "value": "", + "description": "The time during which the questionnaire is intended to be in use" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the questionnaire" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the questionnaire" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the questionnaire" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the questionnaire" + }, + { + "key": "status", + "value": "", + "description": "The current status of the questionnaire" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the questionnaire" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the questionnaire" + }, + { + "key": "version", + "value": "", + "description": "The business version of the questionnaire" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "QuestionnaireHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Questionnaire/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Questionnaire", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Questionnaire Response", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "QuestionnaireResponseHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/QuestionnaireResponse/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "QuestionnaireResponse", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "QuestionnaireResponseHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/QuestionnaireResponse/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "QuestionnaireResponse", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "QuestionnaireResponseById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/QuestionnaireResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "QuestionnaireResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "QuestionnaireResponseById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"id\": \"3141\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cpre\\u003e\\n Comorbidity? YES\\n Cardial Comorbidity? YES\\n Angina? YES\\n MI? NO\\n Vascular Comorbidity?\\n (no answers)\\n ...\\n Histopathology\\n Abdominal\\n pT category: 1a\\n ...\\n \\u003c/pre\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Patient\",\n \"id\": \"patsub\",\n \"identifier\": [\n {\n \"system\": \"http://cancer.questionnaire.org/systems/id/patientnr\",\n \"value\": \"A34442332\"\n },\n {\n \"type\": {\n \"text\": \"Dutch BSN\"\n },\n \"system\": \"urn:oid:2.16.840.1.113883.2.4.6.3\",\n \"value\": \"188912345\"\n }\n ],\n \"gender\": \"male\",\n \"birthDate\": \"1972-11-30\"\n },\n {\n \"resourceType\": \"ServiceRequest\",\n \"id\": \"order\",\n \"status\": \"unknown\",\n \"intent\": \"order\",\n \"subject\": {\n \"reference\": \"#patsub\"\n },\n \"requester\": {\n \"reference\": \"Practitioner/example\"\n }\n },\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"questauth\",\n \"identifier\": [\n {\n \"type\": {\n \"text\": \"AUMC, Den Helder\"\n },\n \"system\": \"http://cancer.questionnaire.org/systems/id/org\",\n \"value\": \"AUMC\"\n }\n ]\n }\n ],\n \"identifier\": {\n \"system\": \"http://example.org/fhir/NamingSystem/questionnaire-ids\",\n \"value\": \"Q12349876\"\n },\n \"basedOn\": [\n {\n \"reference\": \"#order\"\n }\n ],\n \"partOf\": [\n {\n \"reference\": \"Procedure/f201\"\n }\n ],\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"#patsub\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"authored\": \"2013-02-19T14:15:00-05:00\",\n \"author\": {\n \"reference\": \"#questauth\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"1\",\n \"display\": \"Yes\"\n },\n \"item\": [\n {\n \"linkId\": \"1.1.1\",\n \"item\": [\n {\n \"linkId\": \"1.1.1.1\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"1\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.1.1.2\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"1\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.1.1.3\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"0\"\n }\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/QuestionnaireResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "QuestionnaireResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "QuestionnaireResponseById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/QuestionnaireResponse/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "QuestionnaireResponse", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "QuestionnaireResponse_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"id\": \"3141\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cpre\\u003e\\n Comorbidity? YES\\n Cardial Comorbidity? YES\\n Angina? YES\\n MI? NO\\n Vascular Comorbidity?\\n (no answers)\\n ...\\n Histopathology\\n Abdominal\\n pT category: 1a\\n ...\\n \\u003c/pre\\u003e\\n \\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Patient\",\n \"id\": \"patsub\",\n \"identifier\": [\n {\n \"system\": \"http://cancer.questionnaire.org/systems/id/patientnr\",\n \"value\": \"A34442332\"\n },\n {\n \"type\": {\n \"text\": \"Dutch BSN\"\n },\n \"system\": \"urn:oid:2.16.840.1.113883.2.4.6.3\",\n \"value\": \"188912345\"\n }\n ],\n \"gender\": \"male\",\n \"birthDate\": \"1972-11-30\"\n },\n {\n \"resourceType\": \"ServiceRequest\",\n \"id\": \"order\",\n \"status\": \"unknown\",\n \"intent\": \"order\",\n \"subject\": {\n \"reference\": \"#patsub\"\n },\n \"requester\": {\n \"reference\": \"Practitioner/example\"\n }\n },\n {\n \"resourceType\": \"Practitioner\",\n \"id\": \"questauth\",\n \"identifier\": [\n {\n \"type\": {\n \"text\": \"AUMC, Den Helder\"\n },\n \"system\": \"http://cancer.questionnaire.org/systems/id/org\",\n \"value\": \"AUMC\"\n }\n ]\n }\n ],\n \"identifier\": {\n \"system\": \"http://example.org/fhir/NamingSystem/questionnaire-ids\",\n \"value\": \"Q12349876\"\n },\n \"basedOn\": [\n {\n \"reference\": \"#order\"\n }\n ],\n \"partOf\": [\n {\n \"reference\": \"Procedure/f201\"\n }\n ],\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"#patsub\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"authored\": \"2013-02-19T14:15:00-05:00\",\n \"author\": {\n \"reference\": \"#questauth\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"1\",\n \"display\": \"Yes\"\n },\n \"item\": [\n {\n \"linkId\": \"1.1.1\",\n \"item\": [\n {\n \"linkId\": \"1.1.1.1\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"1\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.1.1.2\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"1\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.1.1.3\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://cancer.questionnaire.org/system/code/yesno\",\n \"code\": \"0\"\n }\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/QuestionnaireResponse", + "host": [ + "{{API_URL}}" + ], + "path": [ + "QuestionnaireResponse" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "QuestionnaireResponse_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/QuestionnaireResponse?author=&based-on=&context=&parent=&patient=&questionnaire=&source=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&authored=&identifier=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "QuestionnaireResponse" + ], + "query": [ + { + "key": "author", + "value": "", + "description": "The author of the questionnaire response" + }, + { + "key": "based-on", + "value": "", + "description": "Plan/proposal/order fulfilled by this questionnaire response" + }, + { + "key": "context", + "value": "", + "description": "Encounter or episode associated with the questionnaire response" + }, + { + "key": "parent", + "value": "", + "description": "Procedure or observation this questionnaire response was performed as a part of" + }, + { + "key": "patient", + "value": "", + "description": "The patient that is the subject of the questionnaire response" + }, + { + "key": "questionnaire", + "value": "", + "description": "The questionnaire the answers are provided for" + }, + { + "key": "source", + "value": "", + "description": "The individual providing the information reflected in the questionnaire respose" + }, + { + "key": "subject", + "value": "", + "description": "The subject of the questionnaire response" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "authored", + "value": "", + "description": "When the questionnaire response was last changed" + }, + { + "key": "identifier", + "value": "", + "description": "The unique identifier for the questionnaire response" + }, + { + "key": "status", + "value": "", + "description": "The status of the questionnaire response" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "QuestionnaireResponseHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/QuestionnaireResponse/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "QuestionnaireResponse", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Referral Request", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ReferralRequestHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ReferralRequest/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ReferralRequest", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ReferralRequestHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ReferralRequest/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ReferralRequest", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ReferralRequestById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ReferralRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ReferralRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ReferralRequestById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"status\": \"\",\n \"category\": \"\",\n \"type\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"priority\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"patient\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"authored\": \"\",\n \"requester\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"specialty\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"recipient\": [\n {\n \"reference\": \"\",\n \"display\": \"\"\n }\n ],\n \"reason\": {\n \"text\": \"\"\n },\n \"description\": \"\",\n \"serviceRequested\": [\n {\n \"text\": \"\",\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/ReferralRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ReferralRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ReferralRequestById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ReferralRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ReferralRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ReferralRequest_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ],\n \"status\": \"\",\n \"category\": \"\",\n \"type\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"priority\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"patient\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"authored\": \"\",\n \"requester\": {\n \"reference\": \"\",\n \"display\": \"\"\n },\n \"specialty\": {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n },\n \"recipient\": [\n {\n \"reference\": \"\",\n \"display\": \"\"\n }\n ],\n \"reason\": {\n \"text\": \"\"\n },\n \"description\": \"\",\n \"serviceRequested\": [\n {\n \"text\": \"\",\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ]\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/ReferralRequest", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ReferralRequest" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ReferralRequest_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ReferralRequest?patient=&based-on=&context=&definition=&encounter=&recipient=&replaces=&requester=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&type=&authored-on=&group-identifier=&identifier=&intent=&occurrence-date=&priority=&service=&specialty=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ReferralRequest" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "based-on", + "value": "", + "description": "Request being fulfilled" + }, + { + "key": "context", + "value": "", + "description": "Part of encounter or episode of care" + }, + { + "key": "definition", + "value": "", + "description": "Instantiates protocol or definition" + }, + { + "key": "encounter", + "value": "", + "description": "Originating encounter" + }, + { + "key": "recipient", + "value": "", + "description": "The person that the referral was sent to" + }, + { + "key": "replaces", + "value": "", + "description": "Request(s) replaced by this request" + }, + { + "key": "requester", + "value": "", + "description": "Individual making the request" + }, + { + "key": "subject", + "value": "", + "description": "Patient referred to care or transfer" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "type", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): The type of the referral\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)" + }, + { + "key": "authored-on", + "value": "", + "description": "Creation or activation date" + }, + { + "key": "group-identifier", + "value": "", + "description": "Part of common request" + }, + { + "key": "identifier", + "value": "", + "description": "Business identifier" + }, + { + "key": "intent", + "value": "", + "description": "Proposal, plan or order" + }, + { + "key": "occurrence-date", + "value": "", + "description": "When the service(s) requested in the referral should occur" + }, + { + "key": "priority", + "value": "", + "description": "The priority assigned to the referral" + }, + { + "key": "service", + "value": "", + "description": "Actions requested as part of the referral" + }, + { + "key": "specialty", + "value": "", + "description": "The specialty that the referral is for" + }, + { + "key": "status", + "value": "", + "description": "The status of the referral" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ReferralRequestHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ReferralRequest/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ReferralRequest", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Related Person", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "RelatedPersonHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RelatedPerson/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RelatedPerson", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RelatedPersonHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RelatedPerson/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RelatedPerson", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "RelatedPersonById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RelatedPerson/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RelatedPerson", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RelatedPersonById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"RelatedPerson\",\n \"id\": \"benedicte\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eName\\u003c/td\\u003e\\n \\u003ctd\\u003eBénédicte du Marché\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eAddress\\u003c/td\\u003e\\n \\u003ctd\\u003e43, Place du Marché Sainte Catherine, 75004 Paris, France\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eContacts\\u003c/td\\u003e\\n \\u003ctd\\u003ePhone: +33 (237) 998327\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"type\": {\n \"text\": \"INSEE\"\n },\n \"system\": \"urn:oid:1.2.250.1.61\",\n \"value\": \"272117510400399\"\n }\n ],\n \"active\": true,\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"N\"\n },\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"WIFE\"\n }\n ]\n }\n ],\n \"name\": [\n {\n \"family\": \"du Marché\",\n \"_family\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/humanname-own-prefix\",\n \"valueString\": \"VV\"\n }\n ]\n },\n \"given\": [\n \"Bénédicte\"\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+33 (237) 998327\"\n }\n ],\n \"gender\": \"female\",\n \"address\": [\n {\n \"line\": [\n \"43, Place du Marché Sainte Catherine\"\n ],\n \"city\": \"Paris\",\n \"postalCode\": \"75004\",\n \"country\": \"FRA\"\n }\n ],\n \"photo\": [\n {\n \"contentType\": \"image/jpeg\",\n \"url\": \"Binary/f016\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/RelatedPerson/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RelatedPerson", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RelatedPersonById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RelatedPerson/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RelatedPerson", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "RelatedPerson_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"RelatedPerson\",\n \"id\": \"benedicte\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003ctable\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eName\\u003c/td\\u003e\\n \\u003ctd\\u003eBénédicte du Marché\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eAddress\\u003c/td\\u003e\\n \\u003ctd\\u003e43, Place du Marché Sainte Catherine, 75004 Paris, France\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003eContacts\\u003c/td\\u003e\\n \\u003ctd\\u003ePhone: +33 (237) 998327\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"type\": {\n \"text\": \"INSEE\"\n },\n \"system\": \"urn:oid:1.2.250.1.61\",\n \"value\": \"272117510400399\"\n }\n ],\n \"active\": true,\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"N\"\n },\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"WIFE\"\n }\n ]\n }\n ],\n \"name\": [\n {\n \"family\": \"du Marché\",\n \"_family\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/humanname-own-prefix\",\n \"valueString\": \"VV\"\n }\n ]\n },\n \"given\": [\n \"Bénédicte\"\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+33 (237) 998327\"\n }\n ],\n \"gender\": \"female\",\n \"address\": [\n {\n \"line\": [\n \"43, Place du Marché Sainte Catherine\"\n ],\n \"city\": \"Paris\",\n \"postalCode\": \"75004\",\n \"country\": \"FRA\"\n }\n ],\n \"photo\": [\n {\n \"contentType\": \"image/jpeg\",\n \"url\": \"Binary/f016\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/RelatedPerson", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RelatedPerson" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RelatedPerson_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RelatedPerson?patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&address=&address-city=&address-country=&address-postalcode=&address-state=&address-use=&birthdate=&email=&gender=&phone=&phonetic=&telecom=&active=&identifier=&name=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RelatedPerson" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "The patient this related person is related to" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "address", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Practitioner](practitioner.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Person](person.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text\r\n* [Patient](patient.html): A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text" + }, + { + "key": "address-city", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A city specified in an address\r\n* [Practitioner](practitioner.html): A city specified in an address\r\n* [Person](person.html): A city specified in an address\r\n* [Patient](patient.html): A city specified in an address" + }, + { + "key": "address-country", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A country specified in an address\r\n* [Practitioner](practitioner.html): A country specified in an address\r\n* [Person](person.html): A country specified in an address\r\n* [Patient](patient.html): A country specified in an address" + }, + { + "key": "address-postalcode", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A postal code specified in an address\r\n* [Practitioner](practitioner.html): A postalCode specified in an address\r\n* [Person](person.html): A postal code specified in an address\r\n* [Patient](patient.html): A postalCode specified in an address" + }, + { + "key": "address-state", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A state specified in an address\r\n* [Practitioner](practitioner.html): A state specified in an address\r\n* [Person](person.html): A state specified in an address\r\n* [Patient](patient.html): A state specified in an address" + }, + { + "key": "address-use", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A use code specified in an address\r\n* [Practitioner](practitioner.html): A use code specified in an address\r\n* [Person](person.html): A use code specified in an address\r\n* [Patient](patient.html): A use code specified in an address" + }, + { + "key": "birthdate", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): The Related Person's date of birth\r\n* [Person](person.html): The person's date of birth\r\n* [Patient](patient.html): The patient's date of birth" + }, + { + "key": "email", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in an email contact\r\n* [RelatedPerson](relatedperson.html): A value in an email contact\r\n* [Practitioner](practitioner.html): A value in an email contact\r\n* [Person](person.html): A value in an email contact\r\n* [Patient](patient.html): A value in an email contact" + }, + { + "key": "gender", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): Gender of the related person\r\n* [Practitioner](practitioner.html): Gender of the practitioner\r\n* [Person](person.html): The gender of the person\r\n* [Patient](patient.html): Gender of the patient" + }, + { + "key": "phone", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): A value in a phone contact\r\n* [RelatedPerson](relatedperson.html): A value in a phone contact\r\n* [Practitioner](practitioner.html): A value in a phone contact\r\n* [Person](person.html): A value in a phone contact\r\n* [Patient](patient.html): A value in a phone contact" + }, + { + "key": "phonetic", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [RelatedPerson](relatedperson.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Practitioner](practitioner.html): A portion of either family or given name using some kind of phonetic matching algorithm\r\n* [Person](person.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Patient](patient.html): A portion of either family or given name using some kind of phonetic matching algorithm" + }, + { + "key": "telecom", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [PractitionerRole](practitionerrole.html): The value in any kind of contact\r\n* [RelatedPerson](relatedperson.html): The value in any kind of contact\r\n* [Practitioner](practitioner.html): The value in any kind of contact\r\n* [Person](person.html): The value in any kind of contact\r\n* [Patient](patient.html): The value in any kind of telecom details of the patient" + }, + { + "key": "active", + "value": "", + "description": "Indicates if the related person record is active" + }, + { + "key": "identifier", + "value": "", + "description": "An Identifier of the RelatedPerson" + }, + { + "key": "name", + "value": "", + "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RelatedPersonHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RelatedPerson/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RelatedPerson", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Request Group", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "RequestGroupHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RequestGroup/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RequestGroup", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RequestGroupHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RequestGroup/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RequestGroup", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "RequestGroupById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RequestGroup/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RequestGroup", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RequestGroupById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"RequestGroup\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eExample RequestGroup illustrating related actions to administer medications in sequence with time delay.\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"MedicationRequest\",\n \"id\": \"medicationrequest-1\",\n \"status\": \"unknown\",\n \"intent\": \"proposal\",\n \"medicationCodeableConcept\": {\n \"text\": \"Medication 1\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n }\n },\n {\n \"resourceType\": \"MedicationRequest\",\n \"id\": \"medicationrequest-2\",\n \"status\": \"unknown\",\n \"intent\": \"proposal\",\n \"medicationCodeableConcept\": {\n \"text\": \"Medication 2\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n }\n }\n ],\n \"identifier\": [\n {\n \"value\": \"requestgroup-1\"\n }\n ],\n \"groupIdentifier\": {\n \"system\": \"http://example.org/treatment-group\",\n \"value\": \"00001\"\n },\n \"status\": \"draft\",\n \"intent\": \"plan\",\n \"priority\": \"routine\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"authoredOn\": \"2017-03-06T17:31:00Z\",\n \"author\": {\n \"reference\": \"Practitioner/1\"\n },\n \"reasonCode\": [\n {\n \"text\": \"Treatment\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Additional notes about the request group\"\n }\n ],\n \"action\": [\n {\n \"prefix\": \"1\",\n \"title\": \"Administer Medications\",\n \"description\": \"Administer medications at the appropriate time\",\n \"textEquivalent\": \"Administer medication 1, followed an hour later by medication 2\",\n \"timingDateTime\": \"2017-03-06T19:00:00Z\",\n \"participant\": [\n {\n \"reference\": \"Practitioner/1\"\n }\n ],\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"all\",\n \"requiredBehavior\": \"must\",\n \"precheckBehavior\": \"yes\",\n \"cardinalityBehavior\": \"single\",\n \"action\": [\n {\n \"id\": \"medication-action-1\",\n \"description\": \"Administer medication 1\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"create\"\n }\n ]\n },\n \"resource\": {\n \"reference\": \"#medicationrequest-1\"\n }\n },\n {\n \"id\": \"medication-action-2\",\n \"description\": \"Administer medication 2\",\n \"relatedAction\": [\n {\n \"actionId\": \"medication-action-1\",\n \"relationship\": \"after-end\",\n \"offsetDuration\": {\n \"value\": 1,\n \"unit\": \"h\"\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"code\": \"create\"\n }\n ]\n },\n \"resource\": {\n \"reference\": \"#medicationrequest-2\"\n }\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/RequestGroup/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RequestGroup", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RequestGroupById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RequestGroup/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RequestGroup", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "RequestGroup_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"RequestGroup\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003eExample RequestGroup illustrating related actions to administer medications in sequence with time delay.\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"MedicationRequest\",\n \"id\": \"medicationrequest-1\",\n \"status\": \"unknown\",\n \"intent\": \"proposal\",\n \"medicationCodeableConcept\": {\n \"text\": \"Medication 1\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n }\n },\n {\n \"resourceType\": \"MedicationRequest\",\n \"id\": \"medicationrequest-2\",\n \"status\": \"unknown\",\n \"intent\": \"proposal\",\n \"medicationCodeableConcept\": {\n \"text\": \"Medication 2\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n }\n }\n ],\n \"identifier\": [\n {\n \"value\": \"requestgroup-1\"\n }\n ],\n \"groupIdentifier\": {\n \"system\": \"http://example.org/treatment-group\",\n \"value\": \"00001\"\n },\n \"status\": \"draft\",\n \"intent\": \"plan\",\n \"priority\": \"routine\",\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"authoredOn\": \"2017-03-06T17:31:00Z\",\n \"author\": {\n \"reference\": \"Practitioner/1\"\n },\n \"reasonCode\": [\n {\n \"text\": \"Treatment\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Additional notes about the request group\"\n }\n ],\n \"action\": [\n {\n \"prefix\": \"1\",\n \"title\": \"Administer Medications\",\n \"description\": \"Administer medications at the appropriate time\",\n \"textEquivalent\": \"Administer medication 1, followed an hour later by medication 2\",\n \"timingDateTime\": \"2017-03-06T19:00:00Z\",\n \"participant\": [\n {\n \"reference\": \"Practitioner/1\"\n }\n ],\n \"groupingBehavior\": \"logical-group\",\n \"selectionBehavior\": \"all\",\n \"requiredBehavior\": \"must\",\n \"precheckBehavior\": \"yes\",\n \"cardinalityBehavior\": \"single\",\n \"action\": [\n {\n \"id\": \"medication-action-1\",\n \"description\": \"Administer medication 1\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"create\"\n }\n ]\n },\n \"resource\": {\n \"reference\": \"#medicationrequest-1\"\n }\n },\n {\n \"id\": \"medication-action-2\",\n \"description\": \"Administer medication 2\",\n \"relatedAction\": [\n {\n \"actionId\": \"medication-action-1\",\n \"relationship\": \"after-end\",\n \"offsetDuration\": {\n \"value\": 1,\n \"unit\": \"h\"\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"code\": \"create\"\n }\n ]\n },\n \"resource\": {\n \"reference\": \"#medicationrequest-2\"\n }\n }\n ]\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/RequestGroup", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RequestGroup" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RequestGroup_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RequestGroup?author=&context=&definition=&encounter=&participant=&patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&authored=&group-identifier=&identifier=&intent=&priority=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RequestGroup" + ], + "query": [ + { + "key": "author", + "value": "", + "description": "The author of the request group" + }, + { + "key": "context", + "value": "", + "description": "The context the request group applies to" + }, + { + "key": "definition", + "value": "", + "description": "The definition from which the request group is realized" + }, + { + "key": "encounter", + "value": "", + "description": "The encounter the request group applies to" + }, + { + "key": "participant", + "value": "", + "description": "The participant in the requests in the group" + }, + { + "key": "patient", + "value": "", + "description": "The identity of a patient to search for request groups" + }, + { + "key": "subject", + "value": "", + "description": "The subject that the request group is about" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "authored", + "value": "", + "description": "The date the request group was authored" + }, + { + "key": "group-identifier", + "value": "", + "description": "The group identifier for the request group" + }, + { + "key": "identifier", + "value": "", + "description": "External identifiers for the request group" + }, + { + "key": "intent", + "value": "", + "description": "The intent of the request group" + }, + { + "key": "priority", + "value": "", + "description": "The priority of the request group" + }, + { + "key": "status", + "value": "", + "description": "The status of the request group" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RequestGroupHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RequestGroup/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RequestGroup", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Research Study", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ResearchStudyHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ResearchStudy/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchStudy", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResearchStudyHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ResearchStudy/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchStudy", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ResearchStudyById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ResearchStudy/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchStudy", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResearchStudyById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ResearchStudy\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e[Put rendering here]\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ResearchStudy/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchStudy", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResearchStudyById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ResearchStudy/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchStudy", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ResearchStudy_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ResearchStudy\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e[Put rendering here]\\u003c/div\\u003e\"\n },\n \"status\": \"completed\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ResearchStudy", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchStudy" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResearchStudy_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ResearchStudy?partof=&principalinvestigator=&protocol=&site=&sponsor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&date=&focus=&identifier=&jurisdiction=&keyword=&status=&title=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchStudy" + ], + "query": [ + { + "key": "partof", + "value": "", + "description": "Part of larger study" + }, + { + "key": "principalinvestigator", + "value": "", + "description": "The individual responsible for the study" + }, + { + "key": "protocol", + "value": "", + "description": "Steps followed in executing study" + }, + { + "key": "site", + "value": "", + "description": "Location involved in study execution" + }, + { + "key": "sponsor", + "value": "", + "description": "Organization responsible for the study" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "category", + "value": "", + "description": "Classifications for the study" + }, + { + "key": "date", + "value": "", + "description": "When the study began and ended" + }, + { + "key": "focus", + "value": "", + "description": "Drugs, devices, conditions, etc. under study" + }, + { + "key": "identifier", + "value": "", + "description": "Business Identifier for study" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Geographic region(s) for study" + }, + { + "key": "keyword", + "value": "", + "description": "Used to search for the study" + }, + { + "key": "status", + "value": "", + "description": "draft | in-progress | suspended | stopped | completed | entered-in-error" + }, + { + "key": "title", + "value": "", + "description": "Name for this study" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResearchStudyHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ResearchStudy/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchStudy", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Research Subject", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ResearchSubjectHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ResearchSubject/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchSubject", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResearchSubjectHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ResearchSubject/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchSubject", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ResearchSubjectById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ResearchSubject/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchSubject", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResearchSubjectById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ResearchSubject\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e[Put rendering here]\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"type\": {\n \"text\": \"Subject id\"\n },\n \"system\": \"http://example.org/studysubjectids\",\n \"value\": \"123\"\n }\n ],\n \"status\": \"candidate\",\n \"study\": {\n \"reference\": \"ResearchStudy/example\"\n },\n \"individual\": {\n \"reference\": \"Patient/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ResearchSubject/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchSubject", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResearchSubjectById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ResearchSubject/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchSubject", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ResearchSubject_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ResearchSubject\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e[Put rendering here]\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"type\": {\n \"text\": \"Subject id\"\n },\n \"system\": \"http://example.org/studysubjectids\",\n \"value\": \"123\"\n }\n ],\n \"status\": \"candidate\",\n \"study\": {\n \"reference\": \"ResearchStudy/example\"\n },\n \"individual\": {\n \"reference\": \"Patient/example\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ResearchSubject", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchSubject" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResearchSubject_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ResearchSubject?individual=&patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchSubject" + ], + "query": [ + { + "key": "individual", + "value": "", + "description": "Who is part of study" + }, + { + "key": "patient", + "value": "", + "description": "Who is part of study" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Start and end of participation" + }, + { + "key": "identifier", + "value": "", + "description": "Business Identifier for research subject" + }, + { + "key": "status", + "value": "", + "description": "candidate | enrolled | active | suspended | withdrawn | completed" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResearchSubjectHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ResearchSubject/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ResearchSubject", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Resource", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ResourceHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Resource/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Resource", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResourceHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Resource/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Resource", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ResourceById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Resource/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Resource", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResourceById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/Resource/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Resource", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResourceById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Resource/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Resource", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Resource_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/Resource", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Resource" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Resource_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Resource?_id=&_lastUpdated=&_profile=&_security=&_tag=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Resource" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ResourceHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Resource/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Resource", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Risk Assessment", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "RiskAssessmentHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RiskAssessment/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RiskAssessment", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RiskAssessmentHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RiskAssessment/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RiskAssessment", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "RiskAssessmentById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RiskAssessment/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RiskAssessment", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RiskAssessmentById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"RiskAssessment\",\n \"id\": \"genetic\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eProbability of developing breast cancer before the age indicated:\\u003c/p\\u003e\\n \\u003ctable\\u003e\\n \\u003cthead\\u003e\\n \\u003ctr\\u003e\\n \\u003cth\\u003eAge\\u003c/th\\u003e\\n \\u003cth\\u003eProbability (%)\\u003c/th\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/thead\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003ecurrent-53\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0168\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e54-57\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0368\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e58-62\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0594\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e63-67\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0838\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e68-72\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1089\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e73-77\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1327\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e78-82\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1530\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e83-87\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1663\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"method\": {\n \"coding\": [\n {\n \"code\": \"BRCAPRO\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/b248b1b2-1686-4b94-9936-37d7a5f94b51\"\n },\n \"occurrenceDateTime\": \"2006-01-13T23:01:00Z\",\n \"basis\": [\n {\n \"reference\": \"List/prognosis\"\n }\n ],\n \"prediction\": [\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000168,\n \"whenRange\": {\n \"high\": {\n \"value\": 53,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000368,\n \"whenRange\": {\n \"low\": {\n \"value\": 54,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 57,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000594,\n \"whenRange\": {\n \"low\": {\n \"value\": 58,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 62,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000838,\n \"whenRange\": {\n \"low\": {\n \"value\": 63,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 67,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001089,\n \"whenRange\": {\n \"low\": {\n \"value\": 68,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 72,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001327,\n \"whenRange\": {\n \"low\": {\n \"value\": 73,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 77,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001530,\n \"whenRange\": {\n \"low\": {\n \"value\": 78,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 82,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001663,\n \"whenRange\": {\n \"low\": {\n \"value\": 83,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 88,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"High degree of certainty\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/RiskAssessment/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RiskAssessment", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RiskAssessmentById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RiskAssessment/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RiskAssessment", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "RiskAssessment_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"RiskAssessment\",\n \"id\": \"genetic\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n \\u003cp\\u003eProbability of developing breast cancer before the age indicated:\\u003c/p\\u003e\\n \\u003ctable\\u003e\\n \\u003cthead\\u003e\\n \\u003ctr\\u003e\\n \\u003cth\\u003eAge\\u003c/th\\u003e\\n \\u003cth\\u003eProbability (%)\\u003c/th\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/thead\\u003e\\n \\u003ctbody\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003ecurrent-53\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0168\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e54-57\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0368\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e58-62\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0594\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e63-67\\u003c/td\\u003e\\n \\u003ctd\\u003e0.0838\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e68-72\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1089\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e73-77\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1327\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e78-82\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1530\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003ctr\\u003e\\n \\u003ctd\\u003e83-87\\u003c/td\\u003e\\n \\u003ctd\\u003e0.1663\\u003c/td\\u003e\\n \\u003c/tr\\u003e\\n \\u003c/tbody\\u003e\\n \\u003c/table\\u003e\\n \\u003c/div\\u003e\"\n },\n \"status\": \"final\",\n \"method\": {\n \"coding\": [\n {\n \"code\": \"BRCAPRO\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/b248b1b2-1686-4b94-9936-37d7a5f94b51\"\n },\n \"occurrenceDateTime\": \"2006-01-13T23:01:00Z\",\n \"basis\": [\n {\n \"reference\": \"List/prognosis\"\n }\n ],\n \"prediction\": [\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000168,\n \"whenRange\": {\n \"high\": {\n \"value\": 53,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000368,\n \"whenRange\": {\n \"low\": {\n \"value\": 54,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 57,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000594,\n \"whenRange\": {\n \"low\": {\n \"value\": 58,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 62,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.000838,\n \"whenRange\": {\n \"low\": {\n \"value\": 63,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 67,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001089,\n \"whenRange\": {\n \"low\": {\n \"value\": 68,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 72,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001327,\n \"whenRange\": {\n \"low\": {\n \"value\": 73,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 77,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001530,\n \"whenRange\": {\n \"low\": {\n \"value\": 78,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 82,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n },\n {\n \"outcome\": {\n \"text\": \"Breast Cancer\"\n },\n \"probabilityDecimal\": 0.001663,\n \"whenRange\": {\n \"low\": {\n \"value\": 83,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n },\n \"high\": {\n \"value\": 88,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"High degree of certainty\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/RiskAssessment", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RiskAssessment" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RiskAssessment_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RiskAssessment?patient=&encounter=&condition=&performer=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&method=&probability=&risk=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RiskAssessment" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "encounter", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" + }, + { + "key": "condition", + "value": "", + "description": "Condition assessed" + }, + { + "key": "performer", + "value": "", + "description": "Who did assessment?" + }, + { + "key": "subject", + "value": "", + "description": "Who/what does assessment apply to?" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "method", + "value": "", + "description": "Evaluation mechanism" + }, + { + "key": "probability", + "value": "", + "description": "Likelihood of specified outcome" + }, + { + "key": "risk", + "value": "", + "description": "Likelihood of specified outcome as a qualitative value" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "RiskAssessmentHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/RiskAssessment/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "RiskAssessment", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Schedule", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ScheduleHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Schedule/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Schedule", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ScheduleHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Schedule/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Schedule", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ScheduleById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Schedule/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Schedule", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ScheduleById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Schedule\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n Burgers UMC, South Wing, second floor Physiotherapy Schedule\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"system\": \"http://example.org/scheduleid\",\n \"value\": \"45\"\n }\n ],\n \"active\": true,\n \"serviceCategory\": [\n {\n \"coding\": [\n {\n \"code\": \"17\",\n \"display\": \"General Practice\"\n }\n ]\n }\n ],\n \"serviceType\": [\n {\n \"coding\": [\n {\n \"code\": \"57\",\n \"display\": \"Immunization\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"code\": \"408480009\",\n \"display\": \"Clinical immunology\"\n }\n ]\n }\n ],\n \"actor\": [\n {\n \"reference\": \"Location/1\",\n \"display\": \"Burgers UMC, South Wing, second floor\"\n }\n ],\n \"planningHorizon\": {\n \"start\": \"2013-12-25T09:15:00Z\",\n \"end\": \"2013-12-25T09:30:00Z\"\n },\n \"comment\": \"The slots attached to this schedule should be specialized to cover immunizations within the clinic\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Schedule/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Schedule", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ScheduleById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Schedule/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Schedule", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Schedule_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Schedule\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n Burgers UMC, South Wing, second floor Physiotherapy Schedule\\n \\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"system\": \"http://example.org/scheduleid\",\n \"value\": \"45\"\n }\n ],\n \"active\": true,\n \"serviceCategory\": [\n {\n \"coding\": [\n {\n \"code\": \"17\",\n \"display\": \"General Practice\"\n }\n ]\n }\n ],\n \"serviceType\": [\n {\n \"coding\": [\n {\n \"code\": \"57\",\n \"display\": \"Immunization\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"code\": \"408480009\",\n \"display\": \"Clinical immunology\"\n }\n ]\n }\n ],\n \"actor\": [\n {\n \"reference\": \"Location/1\",\n \"display\": \"Burgers UMC, South Wing, second floor\"\n }\n ],\n \"planningHorizon\": {\n \"start\": \"2013-12-25T09:15:00Z\",\n \"end\": \"2013-12-25T09:30:00Z\"\n },\n \"comment\": \"The slots attached to this schedule should be specialized to cover immunizations within the clinic\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Schedule", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Schedule" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Schedule_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Schedule?actor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&active=&date=&identifier=&type=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Schedule" + ], + "query": [ + { + "key": "actor", + "value": "", + "description": "The individual(HealthcareService, Practitioner, Location, ...) to find a Schedule for" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "active", + "value": "", + "description": "Is the schedule in active use" + }, + { + "key": "date", + "value": "", + "description": "Search for Schedule resources that have a period that contains this date specified" + }, + { + "key": "identifier", + "value": "", + "description": "A Schedule Identifier" + }, + { + "key": "type", + "value": "", + "description": "The type of appointments that can be booked into associated slot(s)" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ScheduleHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Schedule/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Schedule", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Search Parameter", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "SearchParameterHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SearchParameter/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SearchParameter", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SearchParameterHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SearchParameter/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SearchParameter", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "SearchParameterById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SearchParameter/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SearchParameter", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SearchParameterById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"SearchParameter\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/SearchParameter/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: ID-SEARCH-PARAMETER\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ederivedFrom\\u003c/b\\u003e: \\u003ca\\u003ehttp://hl7.org/fhir/SearchParameter/Resource-id\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 23/10/2013\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: Health Level Seven International (FHIR Infrastructure)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Search by resource identifier - e.g. same as the read interaction, but can return included resources\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United States of America (the) \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027US\\u0027 \\u003d \\u0027United States of America\\u0027, given as \\u0027United States of America (the)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epurpose\\u003c/b\\u003e: Need to search by identifier for various infrastructural cases - mainly retrieving packages, and matching as part of a chain\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: _id\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebase\\u003c/b\\u003e: Resource\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: token\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexpression\\u003c/b\\u003e: id\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003expath\\u003c/b\\u003e: f:*/f:id\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003expathUsage\\u003c/b\\u003e: normal\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecomparator\\u003c/b\\u003e: eq\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/SearchParameter/example\",\n \"version\": \"1\",\n \"name\": \"ID-SEARCH-PARAMETER\",\n \"derivedFrom\": \"http://hl7.org/fhir/SearchParameter/Resource-id\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2013-10-23\",\n \"publisher\": \"Health Level Seven International (FHIR Infrastructure)\",\n \"contact\": [\n {\n \"name\": \"[string]\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"Search by resource identifier - e.g. same as the read interaction, but can return included resources\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/variant-state\",\n \"code\": \"positive\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\",\n \"display\": \"United States of America (the)\"\n }\n ]\n }\n ],\n \"purpose\": \"Need to search by identifier for various infrastructural cases - mainly retrieving packages, and matching as part of a chain\",\n \"code\": \"_id\",\n \"base\": [\n \"Resource\"\n ],\n \"type\": \"token\",\n \"expression\": \"id\",\n \"xpath\": \"f:*/f:id\",\n \"xpathUsage\": \"normal\",\n \"comparator\": [\n \"eq\"\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/SearchParameter/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SearchParameter", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SearchParameterById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SearchParameter/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SearchParameter", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "SearchParameter_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"SearchParameter\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/SearchParameter/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: ID-SEARCH-PARAMETER\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ederivedFrom\\u003c/b\\u003e: \\u003ca\\u003ehttp://hl7.org/fhir/SearchParameter/Resource-id\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 23/10/2013\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: Health Level Seven International (FHIR Infrastructure)\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Search by resource identifier - e.g. same as the read interaction, but can return included resources\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United States of America (the) \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027US\\u0027 \\u003d \\u0027United States of America\\u0027, given as \\u0027United States of America (the)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epurpose\\u003c/b\\u003e: Need to search by identifier for various infrastructural cases - mainly retrieving packages, and matching as part of a chain\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: _id\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebase\\u003c/b\\u003e: Resource\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: token\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexpression\\u003c/b\\u003e: id\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003expath\\u003c/b\\u003e: f:*/f:id\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003expathUsage\\u003c/b\\u003e: normal\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecomparator\\u003c/b\\u003e: eq\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/SearchParameter/example\",\n \"version\": \"1\",\n \"name\": \"ID-SEARCH-PARAMETER\",\n \"derivedFrom\": \"http://hl7.org/fhir/SearchParameter/Resource-id\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2013-10-23\",\n \"publisher\": \"Health Level Seven International (FHIR Infrastructure)\",\n \"contact\": [\n {\n \"name\": \"[string]\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"Search by resource identifier - e.g. same as the read interaction, but can return included resources\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/variant-state\",\n \"code\": \"positive\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\",\n \"display\": \"United States of America (the)\"\n }\n ]\n }\n ],\n \"purpose\": \"Need to search by identifier for various infrastructural cases - mainly retrieving packages, and matching as part of a chain\",\n \"code\": \"_id\",\n \"base\": [\n \"Resource\"\n ],\n \"type\": \"token\",\n \"expression\": \"id\",\n \"xpath\": \"f:*/f:id\",\n \"xpathUsage\": \"normal\",\n \"comparator\": [\n \"eq\"\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/SearchParameter", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SearchParameter" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SearchParameter_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SearchParameter?component=&_id=&_lastUpdated=&_profile=&_security=&_tag=&base=&code=&date=&derived-from=&description=&jurisdiction=&name=&publisher=&status=&target=&type=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SearchParameter" + ], + "query": [ + { + "key": "component", + "value": "", + "description": "Defines how the part works" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "base", + "value": "", + "description": "The resource type(s) this search parameter applies to" + }, + { + "key": "code", + "value": "", + "description": "Code used in URL" + }, + { + "key": "date", + "value": "", + "description": "The search parameter publication date" + }, + { + "key": "derived-from", + "value": "", + "description": "Original Definition for the search parameter" + }, + { + "key": "description", + "value": "", + "description": "The description of the search parameter" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the search parameter" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the search parameter" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the search parameter" + }, + { + "key": "status", + "value": "", + "description": "The current status of the search parameter" + }, + { + "key": "target", + "value": "", + "description": "Types of resource (if a resource reference)" + }, + { + "key": "type", + "value": "", + "description": "number | date | string | token | reference | composite | quantity | uri" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the search parameter" + }, + { + "key": "version", + "value": "", + "description": "The business version of the search parameter" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SearchParameterHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SearchParameter/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SearchParameter", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Sequence", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "SequenceHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Sequence/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Sequence", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SequenceHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Sequence/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Sequence", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "SequenceById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Sequence/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Sequence", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SequenceById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"type\": \"\",\n \"patient\": {\n \"reference\": \"\"\n },\n \"species\": {\n \"coding\": [\n {\n \"system\": {\n \"value\": \"\"\n },\n \"code\": {\n \"value\": \"\"\n }\n }\n ],\n \"text\": \"\"\n },\n \"referenceSeq\": [\n {\n \"windowStart\": \"\",\n \"windowEnd\": \"\",\n \"referenceSeqId\": {\n \"coding\": [\n {\n \"system\": {\n \"value\": \"\"\n },\n \"code\": {\n \"value\": \"\"\n }\n }\n ]\n }\n }\n ],\n \"variation\": {\n \"start\": \"\",\n \"end\": \"\",\n \"observedAllele\": \"\",\n \"referenceAllele\": \"\"\n },\n \"repository\": [\n {\n \"url\": \"\",\n \"name\": \"\",\n \"variantId\": \"\"\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/Sequence/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Sequence", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SequenceById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Sequence/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Sequence", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Sequence_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"type\": \"\",\n \"patient\": {\n \"reference\": \"\"\n },\n \"species\": {\n \"coding\": [\n {\n \"system\": {\n \"value\": \"\"\n },\n \"code\": {\n \"value\": \"\"\n }\n }\n ],\n \"text\": \"\"\n },\n \"referenceSeq\": [\n {\n \"windowStart\": \"\",\n \"windowEnd\": \"\",\n \"referenceSeqId\": {\n \"coding\": [\n {\n \"system\": {\n \"value\": \"\"\n },\n \"code\": {\n \"value\": \"\"\n }\n }\n ]\n }\n }\n ],\n \"variation\": {\n \"start\": \"\",\n \"end\": \"\",\n \"observedAllele\": \"\",\n \"referenceAllele\": \"\"\n },\n \"repository\": [\n {\n \"url\": \"\",\n \"name\": \"\",\n \"variantId\": \"\"\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/Sequence", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Sequence" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Sequence_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Sequence?patient=&_id=&_lastUpdated=&_profile=&_security=&_tag=&chromosome=&coordinate=&end=&identifier=&start=&type=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Sequence" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "The subject that the observation is about" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "chromosome", + "value": "", + "description": "Chromosome number of the reference sequence" + }, + { + "key": "coordinate", + "value": "", + "description": "Search parameter for region of the reference DNA sequence string. This will refer to part of a locus or part of a gene where search region will be represented in 1-based system. Since the coordinateSystem can either be 0-based or 1-based, this search query will include the result of both coordinateSystem that contains the equivalent segment of the gene or whole genome sequence. For example, a search for sequence can be represented as `coordinate=1$lt345$gt123`, this means it will search for the Sequence resource on chromosome 1 and with position >123 and <345, where in 1-based system resource, all strings within region 1:124-344 will be revealed, while in 0-based system resource, all strings within region 1:123-344 will be revealed. You may want to check detail about 0-based v.s. 1-based above." + }, + { + "key": "end", + "value": "", + "description": "End position (0-based exclusive, which menas the acid at this position will not be included, 1-based inclusive, which means the acid at this position will be included) of the reference sequence." + }, + { + "key": "identifier", + "value": "", + "description": "The unique identity for a particular sequence" + }, + { + "key": "start", + "value": "", + "description": "Start position (0-based inclusive, 1-based inclusive, that means the nucleic acid or amino acid at this position will be included) of the reference sequence." + }, + { + "key": "type", + "value": "", + "description": "Amino Acid Sequence/ DNA Sequence / RNA Sequence" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SequenceHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Sequence/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Sequence", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Service Definition", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ServiceDefinitionHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ServiceDefinition/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ServiceDefinition", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ServiceDefinitionHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ServiceDefinition/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ServiceDefinition", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ServiceDefinitionById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ServiceDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ServiceDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ServiceDefinitionById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/ServiceDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ServiceDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ServiceDefinitionById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ServiceDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ServiceDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ServiceDefinition_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "\"\"" + }, + "url": { + "raw": "{{API_URL}}/ServiceDefinition", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ServiceDefinition" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ServiceDefinition_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ServiceDefinition?composed-of=&depends-on=&derived-from=&predecessor=&successor=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&effective=&identifier=&jurisdiction=&name=&publisher=&status=&title=&topic=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ServiceDefinition" + ], + "query": [ + { + "key": "composed-of", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "depends-on", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "derived-from", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "predecessor", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "successor", + "value": "", + "description": "What resource is being referenced" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "The service definition publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the service definition" + }, + { + "key": "effective", + "value": "", + "description": "The time during which the service definition is intended to be in use" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the service definition" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the service definition" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the service definition" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the service definition" + }, + { + "key": "status", + "value": "", + "description": "The current status of the service definition" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the service definition" + }, + { + "key": "topic", + "value": "", + "description": "Topics associated with the module" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the service definition" + }, + { + "key": "version", + "value": "", + "description": "The business version of the service definition" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ServiceDefinitionHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ServiceDefinition/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ServiceDefinition", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Slot", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "SlotHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Slot/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Slot", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SlotHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Slot/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Slot", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "SlotById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Slot/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Slot", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SlotById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Slot\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t25 Dec 2013 9:15am - 9:30am: \\u003cb\\u003eBusy\\u003c/b\\u003e Physiotherapy\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"serviceCategory\": [\n {\n \"coding\": [\n {\n \"code\": \"17\",\n \"display\": \"General Practice\"\n }\n ]\n }\n ],\n \"serviceType\": [\n {\n \"coding\": [\n {\n \"code\": \"57\",\n \"display\": \"Immunization\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"code\": \"408480009\",\n \"display\": \"Clinical immunology\"\n }\n ]\n }\n ],\n \"appointmentType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0276\",\n \"code\": \"WALKIN\",\n \"display\": \"A previously unscheduled walk-in visit\"\n }\n ]\n },\n \"schedule\": {\n \"reference\": \"Schedule/example\"\n },\n \"status\": \"free\",\n \"start\": \"2013-12-25T09:15:00Z\",\n \"end\": \"2013-12-25T09:30:00Z\",\n \"comment\": \"Assessments should be performed before requesting appointments in this slot.\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Slot/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Slot", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SlotById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Slot/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Slot", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Slot_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Slot\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t25 Dec 2013 9:15am - 9:30am: \\u003cb\\u003eBusy\\u003c/b\\u003e Physiotherapy\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"serviceCategory\": [\n {\n \"coding\": [\n {\n \"code\": \"17\",\n \"display\": \"General Practice\"\n }\n ]\n }\n ],\n \"serviceType\": [\n {\n \"coding\": [\n {\n \"code\": \"57\",\n \"display\": \"Immunization\"\n }\n ]\n }\n ],\n \"specialty\": [\n {\n \"coding\": [\n {\n \"code\": \"408480009\",\n \"display\": \"Clinical immunology\"\n }\n ]\n }\n ],\n \"appointmentType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0276\",\n \"code\": \"WALKIN\",\n \"display\": \"A previously unscheduled walk-in visit\"\n }\n ]\n },\n \"schedule\": {\n \"reference\": \"Schedule/example\"\n },\n \"status\": \"free\",\n \"start\": \"2013-12-25T09:15:00Z\",\n \"end\": \"2013-12-25T09:30:00Z\",\n \"comment\": \"Assessments should be performed before requesting appointments in this slot.\",\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Slot", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Slot" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Slot_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Slot?schedule=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&slot-type=&start=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Slot" + ], + "query": [ + { + "key": "schedule", + "value": "", + "description": "The Schedule Resource that we are seeking a slot within" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "A Slot Identifier" + }, + { + "key": "slot-type", + "value": "", + "description": "The type of appointments that can be booked into the slot" + }, + { + "key": "start", + "value": "", + "description": "Appointment date/time." + }, + { + "key": "status", + "value": "", + "description": "The free/busy status of the appointment" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SlotHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Slot/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Slot", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Specimen", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "SpecimenHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Specimen/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Specimen", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SpecimenHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Specimen/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Specimen", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "SpecimenById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Specimen/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Specimen", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SpecimenById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Specimen\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: 101\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 23234352356\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eaccessionIdentifier\\u003c/b\\u003e: X352356\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: available\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Venous blood specimen \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027122555007\\u0027 \\u003d \\u0027Venous blood specimen\\u0027, given as \\u0027Venous blood specimen\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePeter Patient\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereceivedTime\\u003c/b\\u003e: 04/03/2011 7:03:00 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequest\\u003c/b\\u003e: \\u003ca\\u003eServiceRequest/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eCollections\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCollector\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCollected[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMethod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eBodySite\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e30/05/2011 6:15:00 AM\\u003c/td\\u003e\\u003ctd\\u003e6 mL\\u003c/td\\u003e\\u003ctd\\u003eLine, Venous \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v2-0488 code \\u0027LNV\\u0027 \\u003d \\u0027Line, Venous)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003eRight median cubital vein \\u003cspan\\u003e(Details : {SNOMED CT code \\u002749852007\\u0027 \\u003d \\u0027Median cubital vein\\u0027, given as \\u0027Structure of median cubital vein (body structure)\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eContainers\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eIdentifier\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCapacity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSpecimenQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAdditive[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e48736-15394-75465\\u003c/td\\u003e\\u003ctd\\u003eGreen Gel tube\\u003c/td\\u003e\\u003ctd\\u003eVacutainer \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e10 mL\\u003c/td\\u003e\\u003ctd\\u003e6 mL\\u003c/td\\u003e\\u003ctd\\u003eid: hep; Lithium/Li Heparin \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-EntityCode code \\u0027HEPL\\u0027 \\u003d \\u0027Lithium/Li Heparin)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: Specimen is grossly lipemic\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Substance\",\n \"id\": \"hep\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-EntityCode\",\n \"code\": \"HEPL\"\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"system\": \"http://ehr.acme.org/identifiers/collections\",\n \"value\": \"23234352356\"\n }\n ],\n \"accessionIdentifier\": {\n \"system\": \"http://lab.acme.org/specimens/2011\",\n \"value\": \"X352356\"\n },\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122555007\",\n \"display\": \"Venous blood specimen\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Patient\"\n },\n \"receivedTime\": \"2011-03-04T07:03:00Z\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/example\"\n }\n ],\n \"collection\": {\n \"collector\": {\n \"reference\": \"Practitioner/example\"\n },\n \"collectedDateTime\": \"2011-05-30T06:15:00Z\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0488\",\n \"code\": \"LNV\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"49852007\",\n \"display\": \"Structure of median cubital vein (body structure)\"\n }\n ],\n \"text\": \"Right median cubital vein\"\n }\n },\n \"container\": [\n {\n \"identifier\": [\n {\n \"value\": \"48736-15394-75465\"\n }\n ],\n \"description\": \"Green Gel tube\",\n \"type\": {\n \"text\": \"Vacutainer\"\n },\n \"capacity\": {\n \"value\": 10,\n \"unit\": \"mL\"\n },\n \"specimenQuantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"additiveReference\": {\n \"reference\": \"#hep\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Specimen is grossly lipemic\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Specimen/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Specimen", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SpecimenById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Specimen/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Specimen", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Specimen_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Specimen\",\n \"id\": \"101\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: 101\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtained\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 23234352356\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eaccessionIdentifier\\u003c/b\\u003e: X352356\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: available\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Venous blood specimen \\u003cspan\\u003e(Details : {SNOMED CT code \\u0027122555007\\u0027 \\u003d \\u0027Venous blood specimen\\u0027, given as \\u0027Venous blood specimen\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esubject\\u003c/b\\u003e: \\u003ca\\u003ePeter Patient\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ereceivedTime\\u003c/b\\u003e: 04/03/2011 7:03:00 AM\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003erequest\\u003c/b\\u003e: \\u003ca\\u003eServiceRequest/example\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eCollections\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCollector\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCollected[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMethod\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eBodySite\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ePractitioner/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e30/05/2011 6:15:00 AM\\u003c/td\\u003e\\u003ctd\\u003e6 mL\\u003c/td\\u003e\\u003ctd\\u003eLine, Venous \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v2-0488 code \\u0027LNV\\u0027 \\u003d \\u0027Line, Venous)\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003eRight median cubital vein \\u003cspan\\u003e(Details : {SNOMED CT code \\u002749852007\\u0027 \\u003d \\u0027Median cubital vein\\u0027, given as \\u0027Structure of median cubital vein (body structure)\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eContainers\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eIdentifier\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCapacity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSpecimenQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAdditive[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e48736-15394-75465\\u003c/td\\u003e\\u003ctd\\u003eGreen Gel tube\\u003c/td\\u003e\\u003ctd\\u003eVacutainer \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/td\\u003e\\u003ctd\\u003e10 mL\\u003c/td\\u003e\\u003ctd\\u003e6 mL\\u003c/td\\u003e\\u003ctd\\u003eid: hep; Lithium/Li Heparin \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/v3-EntityCode code \\u0027HEPL\\u0027 \\u003d \\u0027Lithium/Li Heparin)\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003enote\\u003c/b\\u003e: Specimen is grossly lipemic\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Substance\",\n \"id\": \"hep\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-EntityCode\",\n \"code\": \"HEPL\"\n }\n ]\n }\n }\n ],\n \"identifier\": [\n {\n \"system\": \"http://ehr.acme.org/identifiers/collections\",\n \"value\": \"23234352356\"\n }\n ],\n \"accessionIdentifier\": {\n \"system\": \"http://lab.acme.org/specimens/2011\",\n \"value\": \"X352356\"\n },\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122555007\",\n \"display\": \"Venous blood specimen\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Patient\"\n },\n \"receivedTime\": \"2011-03-04T07:03:00Z\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/example\"\n }\n ],\n \"collection\": {\n \"collector\": {\n \"reference\": \"Practitioner/example\"\n },\n \"collectedDateTime\": \"2011-05-30T06:15:00Z\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0488\",\n \"code\": \"LNV\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"49852007\",\n \"display\": \"Structure of median cubital vein (body structure)\"\n }\n ],\n \"text\": \"Right median cubital vein\"\n }\n },\n \"container\": [\n {\n \"identifier\": [\n {\n \"value\": \"48736-15394-75465\"\n }\n ],\n \"description\": \"Green Gel tube\",\n \"type\": {\n \"text\": \"Vacutainer\"\n },\n \"capacity\": {\n \"value\": 10,\n \"unit\": \"mL\"\n },\n \"specimenQuantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"additiveReference\": {\n \"reference\": \"#hep\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Specimen is grossly lipemic\"\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Specimen", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Specimen" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Specimen_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Specimen?collector=&parent=&patient=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&accession=&bodysite=&collected=&container=&container-id=&identifier=&status=&type=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Specimen" + ], + "query": [ + { + "key": "collector", + "value": "", + "description": "Who collected the specimen" + }, + { + "key": "parent", + "value": "", + "description": "The parent of the specimen" + }, + { + "key": "patient", + "value": "", + "description": "The patient the specimen comes from" + }, + { + "key": "subject", + "value": "", + "description": "The subject of the specimen" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "accession", + "value": "", + "description": "The accession number associated with the specimen" + }, + { + "key": "bodysite", + "value": "", + "description": "The code for the body site from where the specimen originated" + }, + { + "key": "collected", + "value": "", + "description": "The date the specimen was collected" + }, + { + "key": "container", + "value": "", + "description": "The kind of specimen container" + }, + { + "key": "container-id", + "value": "", + "description": "The unique identifier associated with the specimen container" + }, + { + "key": "identifier", + "value": "", + "description": "The unique identifier associated with the specimen" + }, + { + "key": "status", + "value": "", + "description": "available | unavailable | unsatisfactory | entered-in-error" + }, + { + "key": "type", + "value": "", + "description": "The specimen type" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SpecimenHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Specimen/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Specimen", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Structure Definition", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "StructureDefinitionHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/StructureDefinition/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureDefinition", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "StructureDefinitionHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/StructureDefinition/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureDefinition", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "StructureDefinitionById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/StructureDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "StructureDefinitionById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"url\": \"\",\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\",\n \"_system\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"version\": \"\",\n \"name\": \"\",\n \"display\": \"\",\n \"_display\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n },\n \"status\": \"\",\n \"experimental\": \"\",\n \"publisher\": \"\",\n \"contact\": [\n {\n \"name\": \"\",\n \"telecom\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ],\n \"date\": \"\",\n \"description\": \"\",\n \"useContext\": [\n {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n ]\n }\n ],\n \"requirements\": \"\",\n \"copyright\": \"\",\n \"_copyright\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n },\n \"code\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ],\n \"fhirVersion\": \"\",\n \"mapping\": [\n {\n \"identity\": \"\",\n \"uri\": \"\",\n \"name\": \"\",\n \"comments\": \"\",\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"kind\": \"\",\n \"abstract\": \"\",\n \"baseType\": \"\",\n \"baseDefinition\": \"\",\n \"derivation\": \"\",\n \"snapshot\": {\n \"element\": [\n {\n \"path\": \"\",\n \"name\": \"\",\n \"short\": \"\",\n \"definition\": \"\",\n \"comments\": \"\",\n \"min\": \"\",\n \"max\": \"\",\n \"isModifier\": \"\",\n \"base\": {\n \"path\": \"\",\n \"min\": \"\",\n \"max\": \"\"\n },\n \"type\": [\n {\n \"code\": \"\"\n }\n ]\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/StructureDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "StructureDefinitionById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/StructureDefinition/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureDefinition", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "StructureDefinition_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"url\": \"\",\n \"identifier\": [\n {\n \"system\": \"\",\n \"value\": \"\",\n \"_system\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"version\": \"\",\n \"name\": \"\",\n \"display\": \"\",\n \"_display\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n },\n \"status\": \"\",\n \"experimental\": \"\",\n \"publisher\": \"\",\n \"contact\": [\n {\n \"name\": \"\",\n \"telecom\": [\n {\n \"system\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ],\n \"date\": \"\",\n \"description\": \"\",\n \"useContext\": [\n {\n \"coding\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n ]\n }\n ],\n \"requirements\": \"\",\n \"copyright\": \"\",\n \"_copyright\": {\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n },\n \"code\": [\n {\n \"system\": \"\",\n \"code\": \"\",\n \"display\": \"\"\n }\n ],\n \"fhirVersion\": \"\",\n \"mapping\": [\n {\n \"identity\": \"\",\n \"uri\": \"\",\n \"name\": \"\",\n \"comments\": \"\",\n \"fhir_comments\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"kind\": \"\",\n \"abstract\": \"\",\n \"baseType\": \"\",\n \"baseDefinition\": \"\",\n \"derivation\": \"\",\n \"snapshot\": {\n \"element\": [\n {\n \"path\": \"\",\n \"name\": \"\",\n \"short\": \"\",\n \"definition\": \"\",\n \"comments\": \"\",\n \"min\": \"\",\n \"max\": \"\",\n \"isModifier\": \"\",\n \"base\": {\n \"path\": \"\",\n \"min\": \"\",\n \"max\": \"\"\n },\n \"type\": [\n {\n \"code\": \"\"\n }\n ]\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/StructureDefinition", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureDefinition" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "StructureDefinition_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/StructureDefinition?valueset=&_id=&_lastUpdated=&_profile=&_security=&_tag=&abstract=&base=&base-path=&context-type=&date=&derivation=&description=&experimental=&ext-context=&identifier=&jurisdiction=&keyword=&kind=&name=&path=&publisher=&status=&title=&type=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureDefinition" + ], + "query": [ + { + "key": "valueset", + "value": "", + "description": "A vocabulary binding reference" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "abstract", + "value": "", + "description": "Whether the structure is abstract" + }, + { + "key": "base", + "value": "", + "description": "Definition that this type is constrained/specialized from" + }, + { + "key": "base-path", + "value": "", + "description": "Path that identifies the base element" + }, + { + "key": "context-type", + "value": "", + "description": "resource | datatype | extension" + }, + { + "key": "date", + "value": "", + "description": "The structure definition publication date" + }, + { + "key": "derivation", + "value": "", + "description": "specialization | constraint - How relates to base definition" + }, + { + "key": "description", + "value": "", + "description": "The description of the structure definition" + }, + { + "key": "experimental", + "value": "", + "description": "For testing purposes, not real usage" + }, + { + "key": "ext-context", + "value": "", + "description": "Where the extension can be used in instances" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the structure definition" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the structure definition" + }, + { + "key": "keyword", + "value": "", + "description": "A code for the profile" + }, + { + "key": "kind", + "value": "", + "description": "primitive-type | complex-type | resource | logical" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the structure definition" + }, + { + "key": "path", + "value": "", + "description": "A path that is constrained in the profile" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the structure definition" + }, + { + "key": "status", + "value": "", + "description": "The current status of the structure definition" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the structure definition" + }, + { + "key": "type", + "value": "", + "description": "Type defined or constrained by this structure" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the structure definition" + }, + { + "key": "version", + "value": "", + "description": "The business version of the structure definition" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "StructureDefinitionHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/StructureDefinition/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureDefinition", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Structure Map", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "StructureMapHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/StructureMap/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureMap", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "StructureMapHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/StructureMap/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureMap", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "StructureMapById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/StructureMap/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureMap", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "StructureMapById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"StructureMap\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/StructureMap/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:37843577-95fb-4adb-84c0-8837188a7bf3\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 0.1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: ExampleMap\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etitle\\u003c/b\\u003e: Example Map\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 09/03/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: HL7 FHIR Standard\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Example Structure Map\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: Oceania \\u003cspan\\u003e(Details : {http://unstats.un.org/unsd/methods/m49/m49.htm code \\u0027009\\u0027 \\u003d \\u0027Oceania\\u0027, given as \\u0027Oceania\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003egroup\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Examples\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etypeMode\\u003c/b\\u003e: none\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: test -\\u0026gt; testValue\\u003c/p\\u003e\\u003ch3\\u003eInputs\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMode\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etest\\u003c/td\\u003e\\u003ctd\\u003esource\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003erule\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: rule1\\u003c/p\\u003e\\u003ch3\\u003eSources\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContext\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eElement\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eVariable\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eSource\\u003c/td\\u003e\\u003ctd\\u003eSourceClassA\\u003c/td\\u003e\\u003ctd\\u003etest\\u003c/td\\u003e\\u003ctd\\u003et\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eTargets\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContext\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContextType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eElement\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTransform\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eDestination\\u003c/td\\u003e\\u003ctd\\u003evariable\\u003c/td\\u003e\\u003ctd\\u003etestValue\\u003c/td\\u003e\\u003ctd\\u003ecopy\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/StructureMap/example\",\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:37843577-95fb-4adb-84c0-8837188a7bf3\"\n }\n ],\n \"version\": \"0.1\",\n \"name\": \"ExampleMap\",\n \"title\": \"Example Map\",\n \"status\": \"draft\",\n \"date\": \"2017-03-09\",\n \"publisher\": \"HL7 FHIR Standard\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"Example Structure Map\",\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"http://unstats.un.org/unsd/methods/m49/m49.htm\",\n \"code\": \"009\",\n \"display\": \"Oceania\"\n }\n ]\n }\n ],\n \"group\": [\n {\n \"name\": \"Examples\",\n \"typeMode\": \"none\",\n \"documentation\": \"test -\\u003e testValue\",\n \"input\": [\n {\n \"name\": \"test\",\n \"mode\": \"source\"\n }\n ],\n \"rule\": [\n {\n \"name\": \"rule1\",\n \"source\": [\n {\n \"context\": \"Source\",\n \"type\": \"SourceClassA\",\n \"element\": \"test\",\n \"variable\": \"t\"\n }\n ],\n \"target\": [\n {\n \"context\": \"Destination\",\n \"contextType\": \"variable\",\n \"element\": \"testValue\",\n \"transform\": \"copy\"\n }\n ]\n }\n ]\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/StructureMap/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureMap", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "StructureMapById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/StructureMap/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureMap", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "StructureMap_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"StructureMap\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/StructureMap/example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:37843577-95fb-4adb-84c0-8837188a7bf3\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 0.1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: ExampleMap\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etitle\\u003c/b\\u003e: Example Map\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 09/03/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: HL7 FHIR Standard\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Example Structure Map\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: Oceania \\u003cspan\\u003e(Details : {http://unstats.un.org/unsd/methods/m49/m49.htm code \\u0027009\\u0027 \\u003d \\u0027Oceania\\u0027, given as \\u0027Oceania\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003egroup\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Examples\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etypeMode\\u003c/b\\u003e: none\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edocumentation\\u003c/b\\u003e: test -\\u0026gt; testValue\\u003c/p\\u003e\\u003ch3\\u003eInputs\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMode\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etest\\u003c/td\\u003e\\u003ctd\\u003esource\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003erule\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: rule1\\u003c/p\\u003e\\u003ch3\\u003eSources\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContext\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eElement\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eVariable\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eSource\\u003c/td\\u003e\\u003ctd\\u003eSourceClassA\\u003c/td\\u003e\\u003ctd\\u003etest\\u003c/td\\u003e\\u003ctd\\u003et\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eTargets\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContext\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContextType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eElement\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTransform\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eDestination\\u003c/td\\u003e\\u003ctd\\u003evariable\\u003c/td\\u003e\\u003ctd\\u003etestValue\\u003c/td\\u003e\\u003ctd\\u003ecopy\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/StructureMap/example\",\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:37843577-95fb-4adb-84c0-8837188a7bf3\"\n }\n ],\n \"version\": \"0.1\",\n \"name\": \"ExampleMap\",\n \"title\": \"Example Map\",\n \"status\": \"draft\",\n \"date\": \"2017-03-09\",\n \"publisher\": \"HL7 FHIR Standard\",\n \"contact\": [\n {\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"Example Structure Map\",\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"http://unstats.un.org/unsd/methods/m49/m49.htm\",\n \"code\": \"009\",\n \"display\": \"Oceania\"\n }\n ]\n }\n ],\n \"group\": [\n {\n \"name\": \"Examples\",\n \"typeMode\": \"none\",\n \"documentation\": \"test -\\u003e testValue\",\n \"input\": [\n {\n \"name\": \"test\",\n \"mode\": \"source\"\n }\n ],\n \"rule\": [\n {\n \"name\": \"rule1\",\n \"source\": [\n {\n \"context\": \"Source\",\n \"type\": \"SourceClassA\",\n \"element\": \"test\",\n \"variable\": \"t\"\n }\n ],\n \"target\": [\n {\n \"context\": \"Destination\",\n \"contextType\": \"variable\",\n \"element\": \"testValue\",\n \"transform\": \"copy\"\n }\n ]\n }\n ]\n }\n ]\n}" + }, + "url": { + "raw": "{{API_URL}}/StructureMap", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureMap" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "StructureMap_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/StructureMap?_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&identifier=&jurisdiction=&name=&publisher=&status=&title=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureMap" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "The structure map publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the structure map" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the structure map" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the structure map" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the structure map" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the structure map" + }, + { + "key": "status", + "value": "", + "description": "The current status of the structure map" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the structure map" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the structure map" + }, + { + "key": "version", + "value": "", + "description": "The business version of the structure map" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "StructureMapHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/StructureMap/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "StructureMap", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Subscription", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "SubscriptionHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Subscription/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Subscription", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SubscriptionHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Subscription/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Subscription", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "SubscriptionById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Subscription/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Subscription", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SubscriptionById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Subscription\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e[Put rendering here]\\u003c/div\\u003e\"\n },\n \"status\": \"requested\",\n \"contact\": [\n {\n \"system\": \"phone\",\n \"value\": \"ext 4123\"\n }\n ],\n \"end\": \"2021-01-01T00:00:00Z\",\n \"reason\": \"Monitor new neonatal function\",\n \"criteria\": \"Observation?code\\u003dhttp://loinc.org|1975-2\",\n \"channel\": {\n \"type\": \"rest-hook\",\n \"endpoint\": \"https://biliwatch.com/customers/mount-auburn-miu/on-result\",\n \"payload\": \"application/fhir+json\",\n \"header\": [\n \"Authorization: Bearer secret-token-abc-123\"\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Subscription/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Subscription", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SubscriptionById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Subscription/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Subscription", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Subscription_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Subscription\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e[Put rendering here]\\u003c/div\\u003e\"\n },\n \"status\": \"requested\",\n \"contact\": [\n {\n \"system\": \"phone\",\n \"value\": \"ext 4123\"\n }\n ],\n \"end\": \"2021-01-01T00:00:00Z\",\n \"reason\": \"Monitor new neonatal function\",\n \"criteria\": \"Observation?code\\u003dhttp://loinc.org|1975-2\",\n \"channel\": {\n \"type\": \"rest-hook\",\n \"endpoint\": \"https://biliwatch.com/customers/mount-auburn-miu/on-result\",\n \"payload\": \"application/fhir+json\",\n \"header\": [\n \"Authorization: Bearer secret-token-abc-123\"\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Subscription", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Subscription" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Subscription_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Subscription?_id=&_lastUpdated=&_profile=&_security=&_tag=&add-tag=&contact=&criteria=&payload=&status=&type=&url=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Subscription" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "add-tag", + "value": "", + "description": "A tag to be added to the resource matching the criteria" + }, + { + "key": "contact", + "value": "", + "description": "Contact details for the subscription" + }, + { + "key": "criteria", + "value": "", + "description": "The search rules used to determine when to send a notification" + }, + { + "key": "payload", + "value": "", + "description": "The mime-type of the notification payload" + }, + { + "key": "status", + "value": "", + "description": "The current state of the subscription" + }, + { + "key": "type", + "value": "", + "description": "The type of channel for the sent notifications" + }, + { + "key": "url", + "value": "", + "description": "The uri that will receive the notifications" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SubscriptionHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Subscription/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Subscription", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Substance", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "SubstanceHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Substance/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Substance", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SubstanceHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Substance/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Substance", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "SubstanceById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Substance/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Substance", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SubstanceById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Substance\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 1463\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Allergen \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/substance-category code \\u0027allergen\\u0027 \\u003d \\u0027Allergen\\u0027, given as \\u0027Allergen\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: apitoxin (Honey Bee Venom) \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://acme.org/identifiers/substances\",\n \"value\": \"1463\"\n }\n ],\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/substance-category\",\n \"code\": \"allergen\",\n \"display\": \"Allergen\"\n }\n ]\n }\n ],\n \"code\": {\n \"text\": \"apitoxin (Honey Bee Venom)\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Substance/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Substance", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SubstanceById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Substance/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Substance", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Substance_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"Substance\",\n \"id\": \"example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: 1463\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: active\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecategory\\u003c/b\\u003e: Allergen \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/substance-category code \\u0027allergen\\u0027 \\u003d \\u0027Allergen\\u0027, given as \\u0027Allergen\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecode\\u003c/b\\u003e: apitoxin (Honey Bee Venom) \\u003cspan\\u003e(Details )\\u003c/span\\u003e\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://acme.org/identifiers/substances\",\n \"value\": \"1463\"\n }\n ],\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/substance-category\",\n \"code\": \"allergen\",\n \"display\": \"Allergen\"\n }\n ]\n }\n ],\n \"code\": {\n \"text\": \"apitoxin (Honey Bee Venom)\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Substance", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Substance" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Substance_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Substance?substance-reference=&_id=&_lastUpdated=&_profile=&_security=&_tag=&category=&code=&container-identifier=&expiry=&identifier=&quantity=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Substance" + ], + "query": [ + { + "key": "substance-reference", + "value": "", + "description": "A component of the substance" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "category", + "value": "", + "description": "The category of the substance" + }, + { + "key": "code", + "value": "", + "description": "The code of the substance or ingredient" + }, + { + "key": "container-identifier", + "value": "", + "description": "Identifier of the package/container" + }, + { + "key": "expiry", + "value": "", + "description": "Expiry date of package or container of substance" + }, + { + "key": "identifier", + "value": "", + "description": "Unique identifier for the substance" + }, + { + "key": "quantity", + "value": "", + "description": "Amount of substance in the package" + }, + { + "key": "status", + "value": "", + "description": "active | inactive | entered-in-error" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SubstanceHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Substance/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Substance", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Supply Delivery", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "SupplyDeliveryHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SupplyDelivery/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyDelivery", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SupplyDeliveryHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SupplyDelivery/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyDelivery", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "SupplyDeliveryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SupplyDelivery/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyDelivery", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SupplyDeliveryById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"SupplyDelivery\",\n \"id\": \"simpledelivery\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: simpledelivery\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: Order10284\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebasedOn\\u003c/b\\u003e: \\u003ca\\u003eSupplyRequest/simpleorder\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epartOf\\u003c/b\\u003e: Central Supply Restock\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Blood collect tubes blue cap \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/supply-item-type code \\u0027device\\u0027 \\u003d \\u0027Device)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eSuppliedItems\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eItem[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e10\\u003c/td\\u003e\\u003ctd\\u003eBlood collect tubes blue cap \\u003cspan\\u003e(Details : {[not stated] code \\u0027BlueTubes\\u0027 \\u003d \\u0027BlueTubes\\u0027, given as \\u0027Blood collect tubes blue cap\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrence\\u003c/b\\u003e: 31/12/2016\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esupplier\\u003c/b\\u003e: Vendor1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edestination\\u003c/b\\u003e: Location 1\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"Order10284\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"SupplyRequest/simpleorder\"\n }\n ],\n \"partOf\": [\n {\n \"display\": \"Central Supply Restock\"\n }\n ],\n \"status\": \"completed\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/supply-item-type\",\n \"code\": \"device\"\n }\n ],\n \"text\": \"Blood collect tubes blue cap\"\n },\n \"suppliedItem\": {\n \"quantity\": {\n \"value\": 10\n },\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"BlueTubes\",\n \"display\": \"Blood collect tubes blue cap\"\n }\n ]\n }\n },\n \"occurrenceDateTime\": \"2016-12-31\",\n \"supplier\": {\n \"display\": \"Vendor1\"\n },\n \"destination\": {\n \"display\": \"Location 1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/SupplyDelivery/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyDelivery", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SupplyDeliveryById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SupplyDelivery/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyDelivery", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "SupplyDelivery_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"SupplyDelivery\",\n \"id\": \"simpledelivery\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: simpledelivery\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: Order10284\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ebasedOn\\u003c/b\\u003e: \\u003ca\\u003eSupplyRequest/simpleorder\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epartOf\\u003c/b\\u003e: Central Supply Restock\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: Blood collect tubes blue cap \\u003cspan\\u003e(Details : {http://terminology.hl7.org/CodeSystem/supply-item-type code \\u0027device\\u0027 \\u003d \\u0027Device)\\u003c/span\\u003e\\u003c/p\\u003e\\u003ch3\\u003eSuppliedItems\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eQuantity\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eItem[x]\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e10\\u003c/td\\u003e\\u003ctd\\u003eBlood collect tubes blue cap \\u003cspan\\u003e(Details : {[not stated] code \\u0027BlueTubes\\u0027 \\u003d \\u0027BlueTubes\\u0027, given as \\u0027Blood collect tubes blue cap\\u0027})\\u003c/span\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cp\\u003e\\u003cb\\u003eoccurrence\\u003c/b\\u003e: 31/12/2016\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003esupplier\\u003c/b\\u003e: Vendor1\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edestination\\u003c/b\\u003e: Location 1\\u003c/p\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"value\": \"Order10284\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"SupplyRequest/simpleorder\"\n }\n ],\n \"partOf\": [\n {\n \"display\": \"Central Supply Restock\"\n }\n ],\n \"status\": \"completed\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/supply-item-type\",\n \"code\": \"device\"\n }\n ],\n \"text\": \"Blood collect tubes blue cap\"\n },\n \"suppliedItem\": {\n \"quantity\": {\n \"value\": 10\n },\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"BlueTubes\",\n \"display\": \"Blood collect tubes blue cap\"\n }\n ]\n }\n },\n \"occurrenceDateTime\": \"2016-12-31\",\n \"supplier\": {\n \"display\": \"Vendor1\"\n },\n \"destination\": {\n \"display\": \"Location 1\"\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/SupplyDelivery", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyDelivery" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SupplyDelivery_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SupplyDelivery?patient=&receiver=&supplier=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyDelivery" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "receiver", + "value": "", + "description": "Who collected the Supply" + }, + { + "key": "supplier", + "value": "", + "description": "Dispenser" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "status", + "value": "", + "description": "in-progress | completed | abandoned | entered-in-error" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SupplyDeliveryHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SupplyDelivery/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyDelivery", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Supply Request", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "SupplyRequestHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SupplyRequest/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyRequest", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SupplyRequestHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SupplyRequest/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyRequest", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "SupplyRequestById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SupplyRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SupplyRequestById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/SupplyRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SupplyRequestById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SupplyRequest/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyRequest", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "SupplyRequest_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"fhir_comments\": [\n \"\",\n \"\"\n ],\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/SupplyRequest", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyRequest" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SupplyRequest_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SupplyRequest?requester=&supplier=&_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&identifier=&category=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyRequest" + ], + "query": [ + { + "key": "requester", + "value": "", + "description": "Individual making the request" + }, + { + "key": "supplier", + "value": "", + "description": "Who is intended to fulfill the request" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was captured/updated\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [AllergyIntolerance](allergyintolerance.html): Date record was believed accurate\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [Procedure](procedure.html): Date/Period the procedure was performed\r\n* [List](list.html): When the list was prepared\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Composition](composition.html): Composition editing time\r\n* [DetectedIssue](detectedissue.html): When identified\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "category", + "value": "", + "description": "The kind of supply (central, non-stock, etc.)" + }, + { + "key": "status", + "value": "", + "description": "draft | active | suspended +" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "SupplyRequestHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/SupplyRequest/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "SupplyRequest", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Task", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "TaskHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Task/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Task", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TaskHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Task/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Task", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "TaskById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Task/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Task", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TaskById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"type\": {\n \"text\": \"\"\n },\n \"status\": \"\",\n \"subject\": {\n \"reference\": \"\"\n },\n \"created\": \"\",\n \"lastModified\": \"\",\n \"creator\": {\n \"reference\": \"\"\n },\n \"owner\": {\n \"reference\": \"\"\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Task/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Task", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TaskById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Task/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Task", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Task_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"\",\n \"id\": \"\",\n \"text\": {\n \"status\": \"\",\n \"div\": \"\"\n },\n \"type\": {\n \"text\": \"\"\n },\n \"status\": \"\",\n \"subject\": {\n \"reference\": \"\"\n },\n \"created\": \"\",\n \"lastModified\": \"\",\n \"creator\": {\n \"reference\": \"\"\n },\n \"owner\": {\n \"reference\": \"\"\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/Task", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Task" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "Task_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Task?based-on=&context=&focus=&organization=&owner=&part-of=&patient=&requester=&subject=&_id=&_lastUpdated=&_profile=&_security=&_tag=&authored-on=&business-status=&code=&group-identifier=&identifier=&intent=&modified=&performer=&period=&priority=&status=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Task" + ], + "query": [ + { + "key": "based-on", + "value": "", + "description": "Search by requests this task is based on" + }, + { + "key": "context", + "value": "", + "description": "Search by encounter or episode" + }, + { + "key": "focus", + "value": "", + "description": "Search by task focus" + }, + { + "key": "organization", + "value": "", + "description": "Search by responsible organization" + }, + { + "key": "owner", + "value": "", + "description": "Search by task owner" + }, + { + "key": "part-of", + "value": "", + "description": "Search by task this task is part of" + }, + { + "key": "patient", + "value": "", + "description": "Search by patient" + }, + { + "key": "requester", + "value": "", + "description": "Search by task requester" + }, + { + "key": "subject", + "value": "", + "description": "Search by subject" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "authored-on", + "value": "", + "description": "Search by creation date" + }, + { + "key": "business-status", + "value": "", + "description": "Search by business status" + }, + { + "key": "code", + "value": "", + "description": "Search by task code" + }, + { + "key": "group-identifier", + "value": "", + "description": "Search by group identifier" + }, + { + "key": "identifier", + "value": "", + "description": "Search for a task instance by its business identifier" + }, + { + "key": "intent", + "value": "", + "description": "Search by task intent" + }, + { + "key": "modified", + "value": "", + "description": "Search by last modification date" + }, + { + "key": "performer", + "value": "", + "description": "Search by recommended type of performer (e.g., Requester, Performer, Scheduler)." + }, + { + "key": "period", + "value": "", + "description": "Search by period Task is/was underway" + }, + { + "key": "priority", + "value": "", + "description": "Search by task priority" + }, + { + "key": "status", + "value": "", + "description": "Search by task status" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TaskHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/Task/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "Task", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Test Report", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "TestReportHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/TestReport/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestReport", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TestReportHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/TestReport/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestReport", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "TestReportById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/TestReport/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestReport", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TestReportById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"TestReport\",\n \"id\": \"testreport-example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: testreport-example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.9878\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: TestReport Example for TestScript Example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etestScript\\u003c/b\\u003e: \\u003ca\\u003eTestScript/testscript-example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresult\\u003c/b\\u003e: pass\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003escore\\u003c/b\\u003e: 100.0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etester\\u003c/b\\u003e: HL7 Execution Engine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eissued\\u003c/b\\u003e: 07/10/2016 8:25:34 AM\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparticipant\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: test-engine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euri\\u003c/b\\u003e: \\u003ca\\u003ehttp://projectcrucible.org\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edisplay\\u003c/b\\u003e: Crucible\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparticipant\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: server\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euri\\u003c/b\\u003e: \\u003ca\\u003ehttp://fhir3.healthintersections.com.au/open\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edisplay\\u003c/b\\u003e: HealthIntersections STU3\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003esetup\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003eDELETE Patient\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://projectcrucible.org/permalink/1\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003eHTTP 204\\u003c/td\\u003e\\u003ctd\\u003ehttp://projectcrucible.org/permalink/1\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003ePOST Patient/fixture-patient-create\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://projectcrucible.org/permalink/1\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003eHTTP 201\\u003c/td\\u003e\\u003ctd\\u003ehttp://projectcrucible.org/permalink/1\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003etest\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Read Patient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Read a Patient and validate response.\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eteardown\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.9878\"\n },\n \"name\": \"TestReport Example for TestScript Example\",\n \"status\": \"completed\",\n \"testScript\": {\n \"reference\": \"TestScript/testscript-example\"\n },\n \"result\": \"pass\",\n \"score\": 100.0,\n \"tester\": \"HL7 Execution Engine\",\n \"issued\": \"2016-10-07T08:25:34-05:00\",\n \"participant\": [\n {\n \"type\": \"test-engine\",\n \"uri\": \"http://projectcrucible.org\",\n \"display\": \"Crucible\"\n },\n {\n \"type\": \"server\",\n \"uri\": \"http://fhir3.healthintersections.com.au/open\",\n \"display\": \"HealthIntersections STU3\"\n }\n ],\n \"setup\": {\n \"action\": [\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"DELETE Patient\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"HTTP 204\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n },\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"POST Patient/fixture-patient-create\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"HTTP 201\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n }\n ]\n },\n \"test\": [\n {\n \"id\": \"01-ReadPatient\",\n \"name\": \"Read Patient\",\n \"description\": \"Read a Patient and validate response.\",\n \"action\": [\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"GET Patient/fixture-patient-create\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"HTTP 200\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Last-Modified Present\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Response is Patient\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Response validates\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.family \\u0027Chalmers\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.given \\u0027Peter\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.family \\u0027Chalmers\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.family \\u0027Chalmers\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient expected values.\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n }\n ]\n }\n ],\n \"teardown\": {\n \"action\": [\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"DELETE Patient/fixture-patient-create.\",\n \"detail\": \"http://projectcrucible.org/permalink/3\"\n }\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/TestReport/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestReport", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TestReportById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/TestReport/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestReport", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "TestReport_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"TestReport\",\n \"id\": \"testreport-example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: testreport-example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.9878\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: TestReport Example for TestScript Example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: completed\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etestScript\\u003c/b\\u003e: \\u003ca\\u003eTestScript/testscript-example\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresult\\u003c/b\\u003e: pass\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003escore\\u003c/b\\u003e: 100.0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etester\\u003c/b\\u003e: HL7 Execution Engine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eissued\\u003c/b\\u003e: 07/10/2016 8:25:34 AM\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparticipant\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: test-engine\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euri\\u003c/b\\u003e: \\u003ca\\u003ehttp://projectcrucible.org\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edisplay\\u003c/b\\u003e: Crucible\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eparticipant\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003etype\\u003c/b\\u003e: server\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euri\\u003c/b\\u003e: \\u003ca\\u003ehttp://fhir3.healthintersections.com.au/open\\u003c/a\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edisplay\\u003c/b\\u003e: HealthIntersections STU3\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003esetup\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003eDELETE Patient\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://projectcrucible.org/permalink/1\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003eHTTP 204\\u003c/td\\u003e\\u003ctd\\u003ehttp://projectcrucible.org/permalink/1\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003ePOST Patient/fixture-patient-create\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://projectcrucible.org/permalink/1\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResult\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eMessage\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDetail\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003epass\\u003c/td\\u003e\\u003ctd\\u003eHTTP 201\\u003c/td\\u003e\\u003ctd\\u003ehttp://projectcrucible.org/permalink/1\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003etest\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Read Patient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Read a Patient and validate response.\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eteardown\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.9878\"\n },\n \"name\": \"TestReport Example for TestScript Example\",\n \"status\": \"completed\",\n \"testScript\": {\n \"reference\": \"TestScript/testscript-example\"\n },\n \"result\": \"pass\",\n \"score\": 100.0,\n \"tester\": \"HL7 Execution Engine\",\n \"issued\": \"2016-10-07T08:25:34-05:00\",\n \"participant\": [\n {\n \"type\": \"test-engine\",\n \"uri\": \"http://projectcrucible.org\",\n \"display\": \"Crucible\"\n },\n {\n \"type\": \"server\",\n \"uri\": \"http://fhir3.healthintersections.com.au/open\",\n \"display\": \"HealthIntersections STU3\"\n }\n ],\n \"setup\": {\n \"action\": [\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"DELETE Patient\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"HTTP 204\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n },\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"POST Patient/fixture-patient-create\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"HTTP 201\",\n \"detail\": \"http://projectcrucible.org/permalink/1\"\n }\n }\n ]\n },\n \"test\": [\n {\n \"id\": \"01-ReadPatient\",\n \"name\": \"Read Patient\",\n \"description\": \"Read a Patient and validate response.\",\n \"action\": [\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"GET Patient/fixture-patient-create\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"HTTP 200\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Last-Modified Present\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Response is Patient\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Response validates\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.family \\u0027Chalmers\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.given \\u0027Peter\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.family \\u0027Chalmers\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient.name.family \\u0027Chalmers\\u0027\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n },\n {\n \"assert\": {\n \"result\": \"pass\",\n \"message\": \"Patient expected values.\",\n \"detail\": \"http://projectcrucible.org/permalink/2\"\n }\n }\n ]\n }\n ],\n \"teardown\": {\n \"action\": [\n {\n \"operation\": {\n \"result\": \"pass\",\n \"message\": \"DELETE Patient/fixture-patient-create.\",\n \"detail\": \"http://projectcrucible.org/permalink/3\"\n }\n }\n ]\n },\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/TestReport", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestReport" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TestReport_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/TestReport?testscript=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&issued=&participant=&result=&tester=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestReport" + ], + "query": [ + { + "key": "testscript", + "value": "", + "description": "The test script executed to produce this report" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "An external identifier for the test report" + }, + { + "key": "issued", + "value": "", + "description": "The test report generation date" + }, + { + "key": "participant", + "value": "", + "description": "The reference to a participant in the test execution" + }, + { + "key": "result", + "value": "", + "description": "The result disposition of the test execution" + }, + { + "key": "tester", + "value": "", + "description": "The name of the testing organization" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TestReportHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/TestReport/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestReport", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Test Script", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "TestScriptHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/TestScript/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestScript", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TestScriptHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/TestScript/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestScript", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "TestScriptById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/TestScript/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestScript", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TestScriptById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"TestScript\",\n \"id\": \"testscript-example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: testscript-example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/TestScript/testscript-example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.9876\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 1.0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: TestScript Example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 18/01/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: HL7\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: TestScript example resource with setup to delete if present and create a new instance of a Patient; and single test definition to read the created Patient with various asserts.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United States of America (the) \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027US\\u0027 \\u003d \\u0027United States of America\\u0027, given as \\u0027United States of America (the)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epurpose\\u003c/b\\u003e: Patient Conditional Create (Update), Read and Delete Operations\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecopyright\\u003c/b\\u003e: © HL7.org 2011+\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003emetadata\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eLinks\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/patient.html\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eDemographics and other administrative information about an individual or animal receiving care or other health-related services.\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eCapabilities\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRequired\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eValidated\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLink\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCapabilities\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003ctd\\u003ePatient Update, Read and Delete Operations\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/http.html#delete\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eCapabilityStatement/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003efixture\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautocreate\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautodelete\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e: \\u003ca\\u003ePeter Chalmers\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003efixture\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautocreate\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautodelete\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e: \\u003ca\\u003ePeter Chalmers (minimum)\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eprofile\\u003c/b\\u003e: \\u003ca\\u003eGenerated Summary: url: http://hl7.org/fhir/StructureDefinition/Patient; version: 4.0.1; name: Patient; ACTIVE; date: 01/11/2019 9:29:23 AM; publisher: Health Level Seven International (Patient Administration); description: Demographics and other administrative information about an individual or animal receiving care or other health-related services.; purpose: Tracking patient is the center of the healthcare process.; 4.0.1; RESOURCE; type: Patient; baseDefinition: http://hl7.org/fhir/StructureDefinition/DomainResource; SPECIALIZATION\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eVariables\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePath\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSourceId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003ecreateResourceId\\u003c/td\\u003e\\u003ctd\\u003ePatient/id\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003esetup\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResource\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLabel\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAccept\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncodeRequestUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eParams\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eDelete (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code delete \\u003d \\u0027Delete\\u0027, stated as \\u0027null\\u0027)\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eSetupDeletePatient\\u003c/td\\u003e\\u003ctd\\u003eExecute a delete operation to insure the patient does not exist on the server.\\u003c/td\\u003e\\u003ctd\\u003ejson\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003e/${createResourceId}\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDirection\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eOperator\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResponseCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned HTTP status is 200(OK) or 204(No Content).\\u003c/td\\u003e\\u003ctd\\u003eresponse\\u003c/td\\u003e\\u003ctd\\u003ein\\u003c/td\\u003e\\u003ctd\\u003e200,204\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResource\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLabel\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAccept\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContentType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncodeRequestUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eParams\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSourceId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eUpdate (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code update \\u003d \\u0027Update\\u0027, stated as \\u0027null\\u0027)\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eSetupCreatePatient\\u003c/td\\u003e\\u003ctd\\u003eCreate patient resource on test server using the contents of fixture-patient-create\\u003c/td\\u003e\\u003ctd\\u003ejson\\u003c/td\\u003e\\u003ctd\\u003ejson\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003e/${createResourceId}\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDirection\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResponseCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned HTTP status is 201(Created).\\u003c/td\\u003e\\u003ctd\\u003eresponse\\u003c/td\\u003e\\u003ctd\\u003e201\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResource\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncodeRequestUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTargetId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eRead (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code read \\u003d \\u0027Read\\u0027, stated as \\u0027null\\u0027)\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eRead the created patient resource on the test server using the id from fixture-patient-create. Verify contents.\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDirection\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResponse\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned HTTP status is 200(OK).\\u003c/td\\u003e\\u003ctd\\u003eresponse\\u003c/td\\u003e\\u003ctd\\u003eokay\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCompareToSourceId\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCompareToSourceExpression\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eOperator\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient.\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003ctd\\u003ePatient.name.first().family\\u003c/td\\u003e\\u003ctd\\u003eequals\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003etest\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Read Patient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Read a Patient and validate response.\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eteardown\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/TestScript/testscript-example\",\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.9876\"\n },\n \"version\": \"1.0\",\n \"name\": \"TestScript Example\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2017-01-18\",\n \"publisher\": \"HL7\",\n \"contact\": [\n {\n \"name\": \"Support\",\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"support@HL7.org\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"description\": \"TestScript example resource with setup to delete if present and create a new instance of a Patient; and single test definition to read the created Patient with various asserts.\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/variant-state\",\n \"code\": \"positive\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\",\n \"display\": \"United States of America (the)\"\n }\n ]\n }\n ],\n \"purpose\": \"Patient Conditional Create (Update), Read and Delete Operations\",\n \"copyright\": \"© HL7.org 2011+\",\n \"metadata\": {\n \"link\": [\n {\n \"url\": \"http://hl7.org/fhir/patient.html\",\n \"description\": \"Demographics and other administrative information about an individual or animal receiving care or other health-related services.\"\n }\n ],\n \"capability\": [\n {\n \"required\": true,\n \"validated\": false,\n \"description\": \"Patient Update, Read and Delete Operations\",\n \"link\": [\n \"http://hl7.org/fhir/http.html#delete\",\n \"http://hl7.org/fhir/http.html#read\",\n \"http://hl7.org/fhir/http.html#update\"\n ],\n \"capabilities\": \"CapabilityStatement/example\"\n }\n ]\n },\n \"fixture\": [\n {\n \"id\": \"fixture-patient-create\",\n \"autocreate\": false,\n \"autodelete\": false,\n \"resource\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers\"\n }\n },\n {\n \"id\": \"fixture-patient-minimum\",\n \"autocreate\": false,\n \"autodelete\": false,\n \"resource\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers (minimum)\"\n }\n }\n ],\n \"profile\": [\n {\n \"id\": \"patient-profile\",\n \"reference\": \"http://hl7.org/fhir/StructureDefinition/Patient\"\n }\n ],\n \"variable\": [\n {\n \"name\": \"createResourceId\",\n \"path\": \"Patient/id\",\n \"sourceId\": \"fixture-patient-create\"\n }\n ],\n \"setup\": {\n \"action\": [\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"delete\"\n },\n \"resource\": \"Patient\",\n \"label\": \"SetupDeletePatient\",\n \"description\": \"Execute a delete operation to insure the patient does not exist on the server.\",\n \"accept\": \"json\",\n \"encodeRequestUrl\": true,\n \"params\": \"/${createResourceId}\"\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP status is 200(OK) or 204(No Content).\",\n \"direction\": \"response\",\n \"operator\": \"in\",\n \"responseCode\": \"200,204\",\n \"warningOnly\": false\n }\n },\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"update\"\n },\n \"resource\": \"Patient\",\n \"label\": \"SetupCreatePatient\",\n \"description\": \"Create patient resource on test server using the contents of fixture-patient-create\",\n \"accept\": \"json\",\n \"contentType\": \"json\",\n \"encodeRequestUrl\": true,\n \"params\": \"/${createResourceId}\",\n \"sourceId\": \"fixture-patient-create\"\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP status is 201(Created).\",\n \"direction\": \"response\",\n \"responseCode\": \"201\",\n \"warningOnly\": false\n }\n },\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"read\"\n },\n \"resource\": \"Patient\",\n \"description\": \"Read the created patient resource on the test server using the id from fixture-patient-create. Verify contents.\",\n \"encodeRequestUrl\": true,\n \"targetId\": \"fixture-patient-create\"\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP status is 200(OK).\",\n \"direction\": \"response\",\n \"response\": \"okay\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient.\",\n \"compareToSourceId\": \"fixture-patient-create\",\n \"compareToSourceExpression\": \"Patient.name.first().family\",\n \"operator\": \"equals\",\n \"warningOnly\": false\n }\n }\n ]\n },\n \"test\": [\n {\n \"id\": \"01-ReadPatient\",\n \"name\": \"Read Patient\",\n \"description\": \"Read a Patient and validate response.\",\n \"action\": [\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"read\"\n },\n \"resource\": \"Patient\",\n \"description\": \"Read the patient resource on the test server using the id from fixture-patient-create. Prevent URL encoding of the request.\",\n \"encodeRequestUrl\": false,\n \"responseId\": \"fixture-patient-read\",\n \"targetId\": \"fixture-patient-create\"\n }\n },\n {\n \"assert\": {\n \"label\": \"01-ReadPatientOK\",\n \"description\": \"Confirm that the returned HTTP status is 200(OK).\",\n \"direction\": \"response\",\n \"response\": \"okay\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP Header Last-Modified is present. Warning only as the server might not support versioning.\",\n \"direction\": \"response\",\n \"headerField\": \"Last-Modified\",\n \"operator\": \"notEmpty\",\n \"warningOnly\": true\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned resource type is Patient.\",\n \"resource\": \"Patient\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient conforms to the base FHIR specification.\",\n \"validateProfileId\": \"patient-profile\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit sourceId reference to read responseId fixture.\",\n \"operator\": \"equals\",\n \"path\": \"fhir:Patient/fhir:name/fhir:family/@value\",\n \"sourceId\": \"fixture-patient-read\",\n \"value\": \"Chalmers\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected given name \\u0027Peter\\u0027. Uses explicit sourceId reference to read responseId fixture.\",\n \"operator\": \"equals\",\n \"path\": \"fhir:Patient/fhir:name/fhir:given/@value\",\n \"sourceId\": \"fixture-patient-read\",\n \"value\": \"Peter\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient and implicit reference to read response payload.\",\n \"compareToSourceId\": \"fixture-patient-create\",\n \"compareToSourcePath\": \"fhir:Patient/fhir:name/fhir:family/@value\",\n \"operator\": \"equals\",\n \"path\": \"fhir:Patient/fhir:name/fhir:family/@value\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient and explicit reference to read response payload and default operator of \\u0027equals\\u0027.\",\n \"compareToSourceId\": \"fixture-patient-create\",\n \"compareToSourcePath\": \"fhir:Patient/fhir:name/fhir:given/@value\",\n \"path\": \"fhir:Patient/fhir:name/fhir:given/@value\",\n \"sourceId\": \"fixture-patient-read\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned resource contains the expected retained elements and values. Warning only to provide users with reviewable results.\",\n \"minimumId\": \"fixture-patient-minimum\",\n \"warningOnly\": true\n }\n }\n ]\n }\n ],\n \"teardown\": {\n \"action\": [\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"delete\"\n },\n \"resource\": \"Patient\",\n \"description\": \"Delete the patient resource on the test server using the id from fixture-patient-create.\",\n \"encodeRequestUrl\": true,\n \"targetId\": \"fixture-patient-create\"\n }\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/TestScript/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestScript", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TestScriptById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/TestScript/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestScript", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "TestScript_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"TestScript\",\n \"id\": \"testscript-example\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\u003cp\\u003e\\u003cb\\u003eGenerated Narrative with Details\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eid\\u003c/b\\u003e: testscript-example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eurl\\u003c/b\\u003e: \\u003cb\\u003ehttp://hl7.org/fhir/TestScript/testscript-example\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eidentifier\\u003c/b\\u003e: urn:oid:1.3.6.1.4.1.21367.2005.3.7.9876\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eversion\\u003c/b\\u003e: 1.0\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: TestScript Example\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003estatus\\u003c/b\\u003e: draft\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eexperimental\\u003c/b\\u003e: true\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edate\\u003c/b\\u003e: 18/01/2017\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epublisher\\u003c/b\\u003e: HL7\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003econtact\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: TestScript example resource with setup to delete if present and create a new instance of a Patient; and single test definition to read the created Patient with various asserts.\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003euseContext\\u003c/b\\u003e: \\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ejurisdiction\\u003c/b\\u003e: United States of America (the) \\u003cspan\\u003e(Details : {urn:iso:std:iso:3166 code \\u0027US\\u0027 \\u003d \\u0027United States of America\\u0027, given as \\u0027United States of America (the)\\u0027})\\u003c/span\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003epurpose\\u003c/b\\u003e: Patient Conditional Create (Update), Read and Delete Operations\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ecopyright\\u003c/b\\u003e: © HL7.org 2011+\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003emetadata\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eLinks\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/patient.html\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003eDemographics and other administrative information about an individual or animal receiving care or other health-related services.\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003ch3\\u003eCapabilities\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eRequired\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eValidated\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLink\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCapabilities\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003ctd\\u003ePatient Update, Read and Delete Operations\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003ehttp://hl7.org/fhir/http.html#delete\\u003c/a\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003ca\\u003eCapabilityStatement/example\\u003c/a\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003efixture\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautocreate\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautodelete\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e: \\u003ca\\u003ePeter Chalmers\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003efixture\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautocreate\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eautodelete\\u003c/b\\u003e: false\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003eresource\\u003c/b\\u003e: \\u003ca\\u003ePeter Chalmers (minimum)\\u003c/a\\u003e\\u003c/p\\u003e\\u003c/blockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eprofile\\u003c/b\\u003e: \\u003ca\\u003eGenerated Summary: url: http://hl7.org/fhir/StructureDefinition/Patient; version: 4.0.1; name: Patient; ACTIVE; date: 01/11/2019 9:29:23 AM; publisher: Health Level Seven International (Patient Administration); description: Demographics and other administrative information about an individual or animal receiving care or other health-related services.; purpose: Tracking patient is the center of the healthcare process.; 4.0.1; RESOURCE; type: Patient; baseDefinition: http://hl7.org/fhir/StructureDefinition/DomainResource; SPECIALIZATION\\u003c/a\\u003e\\u003c/p\\u003e\\u003ch3\\u003eVariables\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eName\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003ePath\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSourceId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003ecreateResourceId\\u003c/td\\u003e\\u003ctd\\u003ePatient/id\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003esetup\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResource\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLabel\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAccept\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncodeRequestUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eParams\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eDelete (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code delete \\u003d \\u0027Delete\\u0027, stated as \\u0027null\\u0027)\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eSetupDeletePatient\\u003c/td\\u003e\\u003ctd\\u003eExecute a delete operation to insure the patient does not exist on the server.\\u003c/td\\u003e\\u003ctd\\u003ejson\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003e/${createResourceId}\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDirection\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eOperator\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResponseCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned HTTP status is 200(OK) or 204(No Content).\\u003c/td\\u003e\\u003ctd\\u003eresponse\\u003c/td\\u003e\\u003ctd\\u003ein\\u003c/td\\u003e\\u003ctd\\u003e200,204\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResource\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eLabel\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eAccept\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eContentType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncodeRequestUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eParams\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eSourceId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eUpdate (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code update \\u003d \\u0027Update\\u0027, stated as \\u0027null\\u0027)\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eSetupCreatePatient\\u003c/td\\u003e\\u003ctd\\u003eCreate patient resource on test server using the contents of fixture-patient-create\\u003c/td\\u003e\\u003ctd\\u003ejson\\u003c/td\\u003e\\u003ctd\\u003ejson\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003e/${createResourceId}\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDirection\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResponseCode\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned HTTP status is 201(Created).\\u003c/td\\u003e\\u003ctd\\u003eresponse\\u003c/td\\u003e\\u003ctd\\u003e201\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eType\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResource\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eEncodeRequestUrl\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eTargetId\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eRead (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code read \\u003d \\u0027Read\\u0027, stated as \\u0027null\\u0027)\\u003c/td\\u003e\\u003ctd\\u003ePatient\\u003c/td\\u003e\\u003ctd\\u003eRead the created patient resource on the test server using the id from fixture-patient-create. Verify contents.\\u003c/td\\u003e\\u003ctd\\u003etrue\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDirection\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eResponse\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned HTTP status is 200(OK).\\u003c/td\\u003e\\u003ctd\\u003eresponse\\u003c/td\\u003e\\u003ctd\\u003eokay\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eDescription\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCompareToSourceId\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eCompareToSourceExpression\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eOperator\\u003c/b\\u003e\\u003c/td\\u003e\\u003ctd\\u003e\\u003cb\\u003eWarningOnly\\u003c/b\\u003e\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003ctd\\u003eConfirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient.\\u003c/td\\u003e\\u003ctd\\u003efixture-patient-create\\u003c/td\\u003e\\u003ctd\\u003ePatient.name.first().family\\u003c/td\\u003e\\u003ctd\\u003eequals\\u003c/td\\u003e\\u003ctd\\u003efalse\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003etest\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003ename\\u003c/b\\u003e: Read Patient\\u003c/p\\u003e\\u003cp\\u003e\\u003cb\\u003edescription\\u003c/b\\u003e: Read a Patient and validate response.\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eAsserts\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eteardown\\u003c/b\\u003e\\u003c/p\\u003e\\u003cblockquote\\u003e\\u003cp\\u003e\\u003cb\\u003eaction\\u003c/b\\u003e\\u003c/p\\u003e\\u003ch3\\u003eOperations\\u003c/h3\\u003e\\u003ctable\\u003e\\u003ctr\\u003e\\u003ctd\\u003e-\\u003c/td\\u003e\\u003c/tr\\u003e\\u003ctr\\u003e\\u003ctd\\u003e*\\u003c/td\\u003e\\u003c/tr\\u003e\\u003c/table\\u003e\\u003c/blockquote\\u003e\\u003c/blockquote\\u003e\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/TestScript/testscript-example\",\n \"identifier\": {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:1.3.6.1.4.1.21367.2005.3.7.9876\"\n },\n \"version\": \"1.0\",\n \"name\": \"TestScript Example\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2017-01-18\",\n \"publisher\": \"HL7\",\n \"contact\": [\n {\n \"name\": \"Support\",\n \"telecom\": [\n {\n \"system\": \"email\",\n \"value\": \"support@HL7.org\",\n \"use\": \"work\"\n }\n ]\n }\n ],\n \"description\": \"TestScript example resource with setup to delete if present and create a new instance of a Patient; and single test definition to read the created Patient with various asserts.\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"focus\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/variant-state\",\n \"code\": \"positive\"\n }\n ]\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\",\n \"display\": \"United States of America (the)\"\n }\n ]\n }\n ],\n \"purpose\": \"Patient Conditional Create (Update), Read and Delete Operations\",\n \"copyright\": \"© HL7.org 2011+\",\n \"metadata\": {\n \"link\": [\n {\n \"url\": \"http://hl7.org/fhir/patient.html\",\n \"description\": \"Demographics and other administrative information about an individual or animal receiving care or other health-related services.\"\n }\n ],\n \"capability\": [\n {\n \"required\": true,\n \"validated\": false,\n \"description\": \"Patient Update, Read and Delete Operations\",\n \"link\": [\n \"http://hl7.org/fhir/http.html#delete\",\n \"http://hl7.org/fhir/http.html#read\",\n \"http://hl7.org/fhir/http.html#update\"\n ],\n \"capabilities\": \"CapabilityStatement/example\"\n }\n ]\n },\n \"fixture\": [\n {\n \"id\": \"fixture-patient-create\",\n \"autocreate\": false,\n \"autodelete\": false,\n \"resource\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers\"\n }\n },\n {\n \"id\": \"fixture-patient-minimum\",\n \"autocreate\": false,\n \"autodelete\": false,\n \"resource\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Peter Chalmers (minimum)\"\n }\n }\n ],\n \"profile\": [\n {\n \"id\": \"patient-profile\",\n \"reference\": \"http://hl7.org/fhir/StructureDefinition/Patient\"\n }\n ],\n \"variable\": [\n {\n \"name\": \"createResourceId\",\n \"path\": \"Patient/id\",\n \"sourceId\": \"fixture-patient-create\"\n }\n ],\n \"setup\": {\n \"action\": [\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"delete\"\n },\n \"resource\": \"Patient\",\n \"label\": \"SetupDeletePatient\",\n \"description\": \"Execute a delete operation to insure the patient does not exist on the server.\",\n \"accept\": \"json\",\n \"encodeRequestUrl\": true,\n \"params\": \"/${createResourceId}\"\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP status is 200(OK) or 204(No Content).\",\n \"direction\": \"response\",\n \"operator\": \"in\",\n \"responseCode\": \"200,204\",\n \"warningOnly\": false\n }\n },\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"update\"\n },\n \"resource\": \"Patient\",\n \"label\": \"SetupCreatePatient\",\n \"description\": \"Create patient resource on test server using the contents of fixture-patient-create\",\n \"accept\": \"json\",\n \"contentType\": \"json\",\n \"encodeRequestUrl\": true,\n \"params\": \"/${createResourceId}\",\n \"sourceId\": \"fixture-patient-create\"\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP status is 201(Created).\",\n \"direction\": \"response\",\n \"responseCode\": \"201\",\n \"warningOnly\": false\n }\n },\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"read\"\n },\n \"resource\": \"Patient\",\n \"description\": \"Read the created patient resource on the test server using the id from fixture-patient-create. Verify contents.\",\n \"encodeRequestUrl\": true,\n \"targetId\": \"fixture-patient-create\"\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP status is 200(OK).\",\n \"direction\": \"response\",\n \"response\": \"okay\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient.\",\n \"compareToSourceId\": \"fixture-patient-create\",\n \"compareToSourceExpression\": \"Patient.name.first().family\",\n \"operator\": \"equals\",\n \"warningOnly\": false\n }\n }\n ]\n },\n \"test\": [\n {\n \"id\": \"01-ReadPatient\",\n \"name\": \"Read Patient\",\n \"description\": \"Read a Patient and validate response.\",\n \"action\": [\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"read\"\n },\n \"resource\": \"Patient\",\n \"description\": \"Read the patient resource on the test server using the id from fixture-patient-create. Prevent URL encoding of the request.\",\n \"encodeRequestUrl\": false,\n \"responseId\": \"fixture-patient-read\",\n \"targetId\": \"fixture-patient-create\"\n }\n },\n {\n \"assert\": {\n \"label\": \"01-ReadPatientOK\",\n \"description\": \"Confirm that the returned HTTP status is 200(OK).\",\n \"direction\": \"response\",\n \"response\": \"okay\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned HTTP Header Last-Modified is present. Warning only as the server might not support versioning.\",\n \"direction\": \"response\",\n \"headerField\": \"Last-Modified\",\n \"operator\": \"notEmpty\",\n \"warningOnly\": true\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned resource type is Patient.\",\n \"resource\": \"Patient\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient conforms to the base FHIR specification.\",\n \"validateProfileId\": \"patient-profile\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit sourceId reference to read responseId fixture.\",\n \"operator\": \"equals\",\n \"path\": \"fhir:Patient/fhir:name/fhir:family/@value\",\n \"sourceId\": \"fixture-patient-read\",\n \"value\": \"Chalmers\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected given name \\u0027Peter\\u0027. Uses explicit sourceId reference to read responseId fixture.\",\n \"operator\": \"equals\",\n \"path\": \"fhir:Patient/fhir:name/fhir:given/@value\",\n \"sourceId\": \"fixture-patient-read\",\n \"value\": \"Peter\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient and implicit reference to read response payload.\",\n \"compareToSourceId\": \"fixture-patient-create\",\n \"compareToSourcePath\": \"fhir:Patient/fhir:name/fhir:family/@value\",\n \"operator\": \"equals\",\n \"path\": \"fhir:Patient/fhir:name/fhir:family/@value\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned Patient contains the expected family name \\u0027Chalmers\\u0027. Uses explicit compareToSourceId reference to fixture-patient-create used to create the Patient and explicit reference to read response payload and default operator of \\u0027equals\\u0027.\",\n \"compareToSourceId\": \"fixture-patient-create\",\n \"compareToSourcePath\": \"fhir:Patient/fhir:name/fhir:given/@value\",\n \"path\": \"fhir:Patient/fhir:name/fhir:given/@value\",\n \"sourceId\": \"fixture-patient-read\",\n \"warningOnly\": false\n }\n },\n {\n \"assert\": {\n \"description\": \"Confirm that the returned resource contains the expected retained elements and values. Warning only to provide users with reviewable results.\",\n \"minimumId\": \"fixture-patient-minimum\",\n \"warningOnly\": true\n }\n }\n ]\n }\n ],\n \"teardown\": {\n \"action\": [\n {\n \"operation\": {\n \"type\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/testscript-operation-codes\",\n \"code\": \"delete\"\n },\n \"resource\": \"Patient\",\n \"description\": \"Delete the patient resource on the test server using the id from fixture-patient-create.\",\n \"encodeRequestUrl\": true,\n \"targetId\": \"fixture-patient-create\"\n }\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/TestScript", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestScript" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TestScript_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/TestScript?_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&identifier=&jurisdiction=&name=&publisher=&status=&testscript-capability=&title=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestScript" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "The test script publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the test script" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the test script" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the test script" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the test script" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the test script" + }, + { + "key": "status", + "value": "", + "description": "The current status of the test script" + }, + { + "key": "testscript-capability", + "value": "", + "description": "TestScript required and validated capability" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the test script" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the test script" + }, + { + "key": "version", + "value": "", + "description": "The business version of the test script" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "TestScriptHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/TestScript/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "TestScript", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Value Set", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "ValueSetHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ValueSet/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ValueSet", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ValueSetHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ValueSet/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ValueSet", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ValueSetById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ValueSet/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ValueSet", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ValueSetById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ValueSet\",\n \"id\": \"example-extensional\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/shareablevalueset\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eValue set \\u0026quot;LOINC Codes for Cholesterol\\u0026quot;: This is an example value set that includes \\n all the codes for serum cholesterol from LOINC v2.36.\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eDeveloped by: FHIR project team (example)\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003ePublished for testing on 13-June 2012\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eThis value set includes the following LOINC codes:\\u003c/p\\u003e\\n\\t\\t\\t\\u003cul\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e14647-2: Cholesterol [Moles/Volume]\\u003c/li\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e2093-3: Cholesterol [Mass/Volume]\\u003c/li\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e35200-5: Cholesterol [Mass Or Moles/Volume] \\u003c/li\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e9342-7: Cholesterol [Percentile]\\u003c/li\\u003e\\n\\t\\t\\t\\u003c/ul\\u003e\\n\\t\\t\\t\\u003cp\\u003eThis content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use.\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/ValueSet/example-extensional\",\n \"identifier\": [\n {\n \"system\": \"http://acme.com/identifiers/valuesets\",\n \"value\": \"loinc-cholesterol-int\"\n }\n ],\n \"version\": \"20150622\",\n \"name\": \"LOINC Codes for Cholesterol in Serum/Plasma\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2015-06-22\",\n \"publisher\": \"HL7 International\",\n \"contact\": [\n {\n \"name\": \"FHIR project team\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"This is an example value set that includes all the LOINC codes for serum/plasma cholesterol from v2.36.\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueQuantity\": {\n \"value\": 18,\n \"comparator\": \"\\u003e\",\n \"unit\": \"yrs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"This value set was published by ACME Inc in order to make clear which codes are used for Cholesterol by AcmeClinicals (Adult Ambulatory care support in USA)\",\n \"copyright\": \"This content from LOINC ® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use.\",\n \"compose\": {\n \"lockedDate\": \"2012-06-13\",\n \"inactive\": true,\n \"include\": [\n {\n \"system\": \"http://loinc.org\",\n \"version\": \"2.36\",\n \"concept\": [\n {\n \"code\": \"14647-2\",\n \"display\": \"Cholesterol [Moles/Volume]\"\n },\n {\n \"code\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/Volume]\"\n },\n {\n \"code\": \"35200-5\",\n \"display\": \"Cholesterol [Mass Or Moles/Volume]\"\n },\n {\n \"code\": \"9342-7\",\n \"display\": \"Cholesterol [Percentile]\"\n }\n ]\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ValueSet/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ValueSet", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ValueSetById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ValueSet/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ValueSet", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "ValueSet_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"ValueSet\",\n \"id\": \"example-extensional\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/StructureDefinition/shareablevalueset\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eValue set \\u0026quot;LOINC Codes for Cholesterol\\u0026quot;: This is an example value set that includes \\n all the codes for serum cholesterol from LOINC v2.36.\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eDeveloped by: FHIR project team (example)\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003ePublished for testing on 13-June 2012\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eThis value set includes the following LOINC codes:\\u003c/p\\u003e\\n\\t\\t\\t\\u003cul\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e14647-2: Cholesterol [Moles/Volume]\\u003c/li\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e2093-3: Cholesterol [Mass/Volume]\\u003c/li\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e35200-5: Cholesterol [Mass Or Moles/Volume] \\u003c/li\\u003e\\n\\t\\t\\t\\t\\u003cli\\u003e9342-7: Cholesterol [Percentile]\\u003c/li\\u003e\\n\\t\\t\\t\\u003c/ul\\u003e\\n\\t\\t\\t\\u003cp\\u003eThis content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use.\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"url\": \"http://hl7.org/fhir/ValueSet/example-extensional\",\n \"identifier\": [\n {\n \"system\": \"http://acme.com/identifiers/valuesets\",\n \"value\": \"loinc-cholesterol-int\"\n }\n ],\n \"version\": \"20150622\",\n \"name\": \"LOINC Codes for Cholesterol in Serum/Plasma\",\n \"status\": \"draft\",\n \"experimental\": true,\n \"date\": \"2015-06-22\",\n \"publisher\": \"HL7 International\",\n \"contact\": [\n {\n \"name\": \"FHIR project team\",\n \"telecom\": [\n {\n \"system\": \"url\",\n \"value\": \"http://hl7.org/fhir\"\n }\n ]\n }\n ],\n \"description\": \"This is an example value set that includes all the LOINC codes for serum/plasma cholesterol from v2.36.\",\n \"useContext\": [\n {\n \"code\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/usage-context-type\",\n \"code\": \"age\"\n },\n \"valueQuantity\": {\n \"value\": 18,\n \"comparator\": \"\\u003e\",\n \"unit\": \"yrs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n ],\n \"jurisdiction\": [\n {\n \"coding\": [\n {\n \"system\": \"urn:iso:std:iso:3166\",\n \"code\": \"US\"\n }\n ]\n }\n ],\n \"purpose\": \"This value set was published by ACME Inc in order to make clear which codes are used for Cholesterol by AcmeClinicals (Adult Ambulatory care support in USA)\",\n \"copyright\": \"This content from LOINC ® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use.\",\n \"compose\": {\n \"lockedDate\": \"2012-06-13\",\n \"inactive\": true,\n \"include\": [\n {\n \"system\": \"http://loinc.org\",\n \"version\": \"2.36\",\n \"concept\": [\n {\n \"code\": \"14647-2\",\n \"display\": \"Cholesterol [Moles/Volume]\"\n },\n {\n \"code\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/Volume]\"\n },\n {\n \"code\": \"35200-5\",\n \"display\": \"Cholesterol [Mass Or Moles/Volume]\"\n },\n {\n \"code\": \"9342-7\",\n \"display\": \"Cholesterol [Percentile]\"\n }\n ]\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/ValueSet", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ValueSet" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ValueSet_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ValueSet?_id=&_lastUpdated=&_profile=&_security=&_tag=&date=&description=&expansion=&identifier=&jurisdiction=&name=&publisher=&reference=&status=&title=&url=&version=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ValueSet" + ], + "query": [ + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "date", + "value": "", + "description": "The value set publication date" + }, + { + "key": "description", + "value": "", + "description": "The description of the value set" + }, + { + "key": "expansion", + "value": "", + "description": "Uniquely identifies this expansion" + }, + { + "key": "identifier", + "value": "", + "description": "External identifier for the value set" + }, + { + "key": "jurisdiction", + "value": "", + "description": "Intended jurisdiction for the value set" + }, + { + "key": "name", + "value": "", + "description": "Computationally friendly name of the value set" + }, + { + "key": "publisher", + "value": "", + "description": "Name of the publisher of the value set" + }, + { + "key": "reference", + "value": "", + "description": "A code system included or excluded in the value set or an imported value set" + }, + { + "key": "status", + "value": "", + "description": "The current status of the value set" + }, + { + "key": "title", + "value": "", + "description": "The human-friendly name of the value set" + }, + { + "key": "url", + "value": "", + "description": "The uri that identifies the value set" + }, + { + "key": "version", + "value": "", + "description": "The business version of the value set" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "ValueSetHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/ValueSet/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "ValueSet", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "Vision Prescription", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": " history", + "item": [ + { + "name": "VisionPrescriptionHistoryById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/VisionPrescription/:id/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "VisionPrescription", + ":id", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "VisionPrescriptionHistoryByIdAndVid_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/VisionPrescription/:id/_history/:vid", + "host": [ + "{{API_URL}}" + ], + "path": [ + "VisionPrescription", + ":id", + "_history", + ":vid" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + }, + { + "key": "vid", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "VisionPrescriptionById_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/VisionPrescription/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "VisionPrescription", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "VisionPrescriptionById_PUT", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"VisionPrescription\",\n \"id\": \"33123\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eOD -2.00 SPH +2.00 add 0.5 p.d. BD\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eOS -1.00 -0.50 x 180 +2.00 add 0.5 p.d. BU\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.happysight.com/prescription\",\n \"value\": \"15013\"\n }\n ],\n \"status\": \"active\",\n \"created\": \"2014-06-15\",\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"dateWritten\": \"2014-06-15\",\n \"prescriber\": {\n \"reference\": \"Practitioner/example\"\n },\n \"lensSpecification\": [\n {\n \"product\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct\",\n \"code\": \"lens\"\n }\n ]\n },\n \"eye\": \"right\",\n \"sphere\": -2.00,\n \"prism\": [\n {\n \"amount\": 0.5,\n \"base\": \"down\"\n }\n ],\n \"add\": 2.00\n },\n {\n \"product\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct\",\n \"code\": \"lens\"\n }\n ]\n },\n \"eye\": \"left\",\n \"sphere\": -1.00,\n \"cylinder\": -0.50,\n \"axis\": 180,\n \"prism\": [\n {\n \"amount\": 0.5,\n \"base\": \"up\"\n }\n ],\n \"add\": 2.00\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/VisionPrescription/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "VisionPrescription", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "VisionPrescriptionById_DELETE", + "request": { + "method": "DELETE", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/VisionPrescription/:id", + "host": [ + "{{API_URL}}" + ], + "path": [ + "VisionPrescription", + ":id" + ], + "variable": [ + { + "key": "id", + "value": "", + "type": "string", + "description": "(Required) " + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + }, + { + "name": "VisionPrescription_POST", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"resourceType\": \"VisionPrescription\",\n \"id\": \"33123\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"\\u003cdiv xmlns\\u003d\\\"http://www.w3.org/1999/xhtml\\\"\\u003e\\n\\t\\t\\t\\u003cp\\u003eOD -2.00 SPH +2.00 add 0.5 p.d. BD\\u003c/p\\u003e\\n\\t\\t\\t\\u003cp\\u003eOS -1.00 -0.50 x 180 +2.00 add 0.5 p.d. BU\\u003c/p\\u003e\\n\\t\\t\\u003c/div\\u003e\"\n },\n \"identifier\": [\n {\n \"system\": \"http://www.happysight.com/prescription\",\n \"value\": \"15013\"\n }\n ],\n \"status\": \"active\",\n \"created\": \"2014-06-15\",\n \"patient\": {\n \"reference\": \"Patient/example\"\n },\n \"dateWritten\": \"2014-06-15\",\n \"prescriber\": {\n \"reference\": \"Practitioner/example\"\n },\n \"lensSpecification\": [\n {\n \"product\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct\",\n \"code\": \"lens\"\n }\n ]\n },\n \"eye\": \"right\",\n \"sphere\": -2.00,\n \"prism\": [\n {\n \"amount\": 0.5,\n \"base\": \"down\"\n }\n ],\n \"add\": 2.00\n },\n {\n \"product\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct\",\n \"code\": \"lens\"\n }\n ]\n },\n \"eye\": \"left\",\n \"sphere\": -1.00,\n \"cylinder\": -0.50,\n \"axis\": 180,\n \"prism\": [\n {\n \"amount\": 0.5,\n \"base\": \"up\"\n }\n ],\n \"add\": 2.00\n }\n ],\n \"meta\": {\n \"tag\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActReason\",\n \"code\": \"HTEST\",\n \"display\": \"test health data\"\n }\n ]\n }\n}" + }, + "url": { + "raw": "{{API_URL}}/VisionPrescription", + "host": [ + "{{API_URL}}" + ], + "path": [ + "VisionPrescription" + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "VisionPrescription_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/VisionPrescription?patient=&encounter=&prescriber=&_id=&_lastUpdated=&_profile=&_security=&_tag=&identifier=&datewritten=&_format=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "VisionPrescription" + ], + "query": [ + { + "key": "patient", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [ReferralRequest](referralrequest.html): Who the referral is about\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [ImagingManifest](imagingmanifest.html): Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Encounter](encounter.html): The patient ro group present at the encounter\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who care plan is for\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [List](list.html): If all resources have the same subject\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n* [ProcedureRequest](procedurerequest.html): Search by subject - a patient\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Condition](condition.html): Who has the condition?\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed" + }, + { + "key": "encounter", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [DeviceRequest](devicerequest.html): Encounter or Episode during which request was created\r\n* [Procedure](procedure.html): Search by encounter\r\n* [List](list.html): Context in which list created\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n* [ProcedureRequest](procedurerequest.html): An encounter in which this request is made\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Composition](composition.html): Context of the Composition" + }, + { + "key": "prescriber", + "value": "", + "description": "Who authorizes the vision product" + }, + { + "key": "_id", + "value": "", + "description": "Logical id of this artifact" + }, + { + "key": "_lastUpdated", + "value": "", + "description": "When the resource version last changed" + }, + { + "key": "_profile", + "value": "", + "description": "Profiles this resource claims to conform to" + }, + { + "key": "_security", + "value": "", + "description": "Security Labels applied to this resource" + }, + { + "key": "_tag", + "value": "", + "description": "Tags applied to this resource" + }, + { + "key": "identifier", + "value": "", + "description": "Multiple Resources: \r\n\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [Goal](goal.html): External Ids for this goal\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [SupplyRequest](supplyrequest.html): Unique identifier\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [ImagingStudy](imagingstudy.html): Other identifiers for the Study\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [List](list.html): Business identifier\r\n* [Immunization](immunization.html): Business identifier\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n* [ProcedureRequest](procedurerequest.html): Identifiers assigned to this order\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Composition](composition.html): Logical identifier of composition (version-independent)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [SupplyDelivery](supplydelivery.html): External identifier" + }, + { + "key": "datewritten", + "value": "", + "description": "Return prescriptions written on this date" + }, + { + "key": "_format", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + }, + { + "name": "VisionPrescriptionHistory_GET", + "request": { + "method": "GET", + "header": [ + { + "key": "x-api-key", + "value": "{{API_KEY}}", + "type": "text" + } + ], + "url": { + "raw": "{{API_URL}}/VisionPrescription/_history?_count=&_since=", + "host": [ + "{{API_URL}}" + ], + "path": [ + "VisionPrescription", + "_history" + ], + "query": [ + { + "key": "_count", + "value": "" + }, + { + "key": "_since", + "value": "" + } + ] + }, + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{COGNITO_TOKEN}}", + "type": "string" + } + ] + } + } + } + ] + } + ] +} diff --git a/postman/Fhir_Dev_Env.json b/postman/Fhir_Dev_Env.json index a2ed2de4..ff84be35 100644 --- a/postman/Fhir_Dev_Env.json +++ b/postman/Fhir_Dev_Env.json @@ -15,14 +15,8 @@ }, { "enabled": true, - "key": "AUTH_URL", - "value": "", - "type": "text" - }, - { - "enabled": true, - "key": "CLIENT_ID", - "value": "CLIENT_ID", + "key": "COGNITO_TOKEN", + "value": "", "type": "text" } ], diff --git a/postman/Fhir_Local_Env.json b/postman/Fhir_Local_Env.json index 4e8210c2..217953a1 100644 --- a/postman/Fhir_Local_Env.json +++ b/postman/Fhir_Local_Env.json @@ -12,18 +12,6 @@ "key": "API_KEY", "value": "", "type": "text" - }, - { - "enabled": true, - "key": "AUTH_URL", - "value": "", - "type": "text" - }, - { - "enabled": true, - "key": "CLIENT_ID", - "value": "CLIENT_ID", - "type": "text" } ], "_postman_variable_scope": "environment", diff --git a/postman/Fhir_Prod_Env.json b/postman/Fhir_Prod_Env.json index 15daa198..91caed84 100644 --- a/postman/Fhir_Prod_Env.json +++ b/postman/Fhir_Prod_Env.json @@ -15,14 +15,8 @@ }, { "enabled": true, - "key": "AUTH_URL", - "value": "", - "type": "text" - }, - { - "enabled": true, - "key": "CLIENT_ID", - "value": "CLIENT_ID", + "key": "COGNITO_TOKEN", + "value": "", "type": "text" } ], diff --git a/scripts/init-auth.py b/scripts/init-auth.py index f6f82c7f..bfa40e81 100644 --- a/scripts/init-auth.py +++ b/scripts/init-auth.py @@ -4,6 +4,7 @@ """ import boto3 import sys +import json client = boto3.client('cognito-idp', region_name=sys.argv[2]) ''' @@ -21,5 +22,5 @@ ClientId=sys.argv[1] ) -sessionid = response['AuthenticationResult']['AccessToken'] -print(sessionid) +id_token = response['AuthenticationResult']['IdToken'] +print(id_token) diff --git a/scripts/install.sh b/scripts/install.sh index 095ab23c..e34e3622 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -315,7 +315,7 @@ cd ${PACKAGE_ROOT}/scripts echo "Setting up AWS Cognito with default user credentials to support authentication in the future..." echo "This will output a token that you can use to access the FHIR API." echo "(You can generate a new token at any time after setup using the included init-auth.py script)" -echo -e "\nACCESS TOKEN:" +echo -e "\nID TOKEN:" echo -e "\n***\n" python3 provision-user.py "$UserPoolId" "$UserPoolAppClientId" "$region" >/dev/null 2>&1 || echo -e "Warning: Cognito has already been initialized.\nIf you need to generate a new token, please use the init-auth.py script.\nContinuing..." diff --git a/scripts/provision-user.py b/scripts/provision-user.py index 0d8d08e1..8d785b18 100644 --- a/scripts/provision-user.py +++ b/scripts/provision-user.py @@ -5,7 +5,7 @@ import boto3 import sys - +import json ''' example run: @@ -15,9 +15,11 @@ client = boto3.client('cognito-idp', region_name=sys.argv[3]) +USERNAME = 'workshopuser' + response = client.admin_create_user( UserPoolId=sys.argv[1], - Username='workshopuser', + Username=USERNAME, UserAttributes=[ { 'Name': 'email', @@ -26,6 +28,10 @@ { 'Name': 'email_verified', 'Value': 'True' + }, + { + 'Name': 'custom:tenantId', + 'Value': 'tenant1' } ], @@ -42,7 +48,7 @@ response = client.initiate_auth( AuthFlow='USER_PASSWORD_AUTH', AuthParameters={ - 'USERNAME': 'workshopuser', + 'USERNAME': USERNAME, 'PASSWORD': 'Master123!' }, @@ -55,26 +61,26 @@ ChallengeName='NEW_PASSWORD_REQUIRED', Session=sessionid, ChallengeResponses={ - 'USERNAME': 'workshopuser', + 'USERNAME': USERNAME, 'NEW_PASSWORD': 'Master123!' } ) response = client.admin_add_user_to_group( UserPoolId=sys.argv[1], - Username='workshopuser', + Username=USERNAME, GroupName='practitioner' ) response = client.initiate_auth( AuthFlow='USER_PASSWORD_AUTH', AuthParameters={ - 'USERNAME': 'workshopuser', + 'USERNAME': USERNAME, 'PASSWORD': 'Master123!' }, ClientId=sys.argv[2] ) -sessionid = response['AuthenticationResult']['AccessToken'] -print(sessionid) +id_token = response['AuthenticationResult']['IdToken'] +print(id_token) diff --git a/scripts/win_install.ps1 b/scripts/win_install.ps1 index eff311e0..462a32f5 100644 --- a/scripts/win_install.ps1 +++ b/scripts/win_install.ps1 @@ -293,7 +293,7 @@ Set-Location $rootDir\scripts Write-Host "Setting up AWS Cognito with default user credentials to support authentication in the future..." Write-Host "This will output a token that you can use to access the FHIR API." Write-Host "(You can generate a new token at any time after setup using the included init-auth.py script)" -Write-Host "`nACCESS TOKEN:" +Write-Host "`nID TOKEN:" Write-Host "`n***`n" #CHECK diff --git a/serverless.yaml b/serverless.yaml index 2abf8280..3c5724c3 100644 --- a/serverless.yaml +++ b/serverless.yaml @@ -15,12 +15,20 @@ custom: oauthRedirect: ${opt:oauthRedirect, 'http://localhost'} config: ${file(serverless_config.json)} useHapiValidator: ${opt:useHapiValidator, 'false'} + enableMultiTenancy: ${opt:enableMultiTenancy, 'false'} logLevel: ${opt:logLevel, 'error'} + enableESHardDelete: ${opt:enableESHardDelete, 'false'} + patientCompartmentFileV3: 'patientCompartmentSearchParams.3.0.2.json' + patientCompartmentFileV4: 'patientCompartmentSearchParams.4.0.1.json' bundle: packager: yarn copyFiles: # Copy any additional files to the generated package - from: 'bulkExport/glueScripts/export-script.py' to: './bulkExport/glueScripts/export-script.py' + - from: 'bulkExport/schema/${self:custom.patientCompartmentFileV3}' + to: './bulkExport/schema/${self:custom.patientCompartmentFileV3}' + - from: 'bulkExport/schema/${self:custom.patientCompartmentFileV4}' + to: './bulkExport/schema/${self:custom.patientCompartmentFileV4}' - from: 'compiledImplementationGuides' to: './compiledImplementationGuides' @@ -52,6 +60,7 @@ provider: - isUsingHapiValidator - Fn::ImportValue: "fhir-service-validator-lambda-${self:custom.stage}" - !Ref AWS::NoValue + ENABLE_MULTI_TENANCY: !Ref EnableMultiTenancy LOG_LEVEL: '${self:custom.logLevel}' apiKeys: - name: 'developer-key-${self:custom.stage}' # Full name must be known at package-time @@ -79,10 +88,6 @@ functions: authorizer: type: COGNITO_USER_POOLS authorizerId: !Ref ApiGatewayAuthorizer - scopes: # must have both scopes - - 'openid' - - 'profile' - - 'aws.cognito.signin.user.admin' method: ANY path: / private: true @@ -90,20 +95,21 @@ functions: authorizer: type: COGNITO_USER_POOLS authorizerId: !Ref ApiGatewayAuthorizer - scopes: # must have both scopes - - 'openid' - - 'profile' - - 'aws.cognito.signin.user.admin' method: ANY path: '{proxy+}' private: true - http: method: GET path: /metadata + - http: + method: GET + path: /tenant/{tenantId}/metadata handler: src/index.default provisionedConcurrency: 5 environment: EXPORT_STATE_MACHINE_ARN: !Ref BulkExportStateMachine + PATIENT_COMPARTMENT_V3: ${self:custom.patientCompartmentFileV3} + PATIENT_COMPARTMENT_V4: ${self:custom.patientCompartmentFileV4} ddbToEs: timeout: 300 @@ -111,6 +117,8 @@ functions: description: 'Write DDB changes from `resource` table to ElasticSearch service' role: DdbToEsLambdaRole handler: ddbToEsLambda/index.handler + environment: + ENABLE_ES_HARD_DELETE: ${self:custom.enableESHardDelete} events: - stream: type: dynamodb @@ -201,6 +209,13 @@ resources: - 'true' - 'false' Description: whether or not to use an already deployed HAPI Validator + EnableMultiTenancy: + Type: String + Default: ${self:custom.enableMultiTenancy} + AllowedValues: + - 'true' + - 'false' + Description: whether or not to enable multi-tenancy logLevel: Type: String Default: ${self:custom.logLevel} @@ -213,6 +228,7 @@ resources: isDev: !Equals [!Ref Stage, 'dev'] isNotDev: !Not [Condition: isDev] isUsingHapiValidator: !Equals [!Ref UseHapiValidator, 'true'] + isMultiTenancyEnabled: !Equals [!Ref EnableMultiTenancy, 'true'] - Resources: ResourceDynamoDBTableV2: Metadata: diff --git a/src/config.ts b/src/config.ts index 205944f9..63256d77 100644 --- a/src/config.ts +++ b/src/config.ts @@ -25,13 +25,17 @@ import HapiFhirLambdaValidator from 'fhir-works-on-aws-routing/lib/router/valida import RBACRules from './RBACRules'; import { loadImplementationGuides } from './implementationGuides/loadCompiledIGs'; -const { IS_OFFLINE } = process.env; +const { IS_OFFLINE, ENABLE_MULTI_TENANCY } = process.env; + +const enableMultiTenancy = ENABLE_MULTI_TENANCY === 'true'; const fhirVersion: FhirVersion = '4.0.1'; const baseResources = fhirVersion === '4.0.1' ? BASE_R4_RESOURCES : BASE_STU3_RESOURCES; const authService = IS_OFFLINE ? stubs.passThroughAuthz : new RBACHandler(RBACRules(baseResources), fhirVersion); -const dynamoDbDataService = new DynamoDbDataService(DynamoDb); -const dynamoDbBundleService = new DynamoDbBundleService(DynamoDb); +const dynamoDbDataService = new DynamoDbDataService(DynamoDb, false, { enableMultiTenancy }); +const dynamoDbBundleService = new DynamoDbBundleService(DynamoDb, undefined, undefined, { + enableMultiTenancy, +}); // Configure the input validators. Validators run in the order that they appear on the array. Use an empty array to disable input validation. const validators: Validator[] = []; @@ -58,8 +62,10 @@ const esSearch = new ElasticSearchService( DynamoDbUtil.cleanItem, fhirVersion, loadImplementationGuides('fhir-works-on-aws-search-es'), + undefined, + { enableMultiTenancy }, ); -const s3DataService = new S3DataService(dynamoDbDataService, fhirVersion); +const s3DataService = new S3DataService(dynamoDbDataService, fhirVersion, { enableMultiTenancy }); const OAuthUrl = process.env.OAUTH2_DOMAIN_ENDPOINT === '[object Object]' || process.env.OAUTH2_DOMAIN_ENDPOINT === undefined @@ -118,6 +124,13 @@ export const fhirConfig: FhirConfig = { }, }, }, + multiTenancyConfig: enableMultiTenancy + ? { + enableMultiTenancy: true, + useTenantSpecificUrl: true, + tenantIdClaimPath: 'custom:tenantId', + } + : undefined, }; export const genericResources = baseResources; diff --git a/yarn.lock b/yarn.lock index 337d1fb8..b9e61636 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2094,6 +2094,13 @@ resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= +"@types/jsonwebtoken@^8.5.4": + version "8.5.4" + resolved "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-8.5.4.tgz#50ccaf0aa6f5d7b9956e70fe323b76e582991913" + integrity sha512-4L8msWK31oXwdtC81RmRBAULd0ShnAHjBuKT9MRQpjP0piNrZdXyTRcKY9/UIfhGeKIT4PvF5amOOUbbT/9Wpg== + dependencies: + "@types/node" "*" + "@types/keyv@*": version "3.1.1" resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.1.tgz#e45a45324fca9dab716ab1230ee249c9fb52cfa7" @@ -3011,6 +3018,21 @@ aws-sdk@^2.859.0: uuid "3.3.2" xml2js "0.4.19" +aws-sdk@^2.965.0: + version "2.970.0" + resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.970.0.tgz#dc258b61b4727dcb5130c494376b598eb19f827b" + integrity sha512-9+ktvE5xgpHr3RsFOcq1SrhXLvU+jUji44jbecFZb5C2lzoEEB29aeN39OLJMW0ZuOrR+3TNum8c3f8YVx6A7w== + dependencies: + buffer "4.9.2" + events "1.1.1" + ieee754 "1.1.13" + jmespath "0.15.0" + querystring "0.2.0" + sax "1.2.1" + url "0.10.3" + uuid "3.3.2" + xml2js "0.4.19" + aws-sign2@~0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" @@ -5741,57 +5763,44 @@ fecha@^4.2.0: resolved "https://registry.yarnpkg.com/fecha/-/fecha-4.2.0.tgz#3ffb6395453e3f3efff850404f0a59b6747f5f41" integrity sha512-aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg== -fhir-works-on-aws-authz-rbac@4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/fhir-works-on-aws-authz-rbac/-/fhir-works-on-aws-authz-rbac-4.1.1.tgz#05540369881424dd18c4513f0358413af6615957" - integrity sha512-pAHjiwon2FRaQDRKbwQ4tpfsQiS3TmW5yGZLYImUder3FwVhm9FUjDDvakd9jToYaMvUr9wg4a98KBb+sh6a8A== +fhir-works-on-aws-authz-rbac@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/fhir-works-on-aws-authz-rbac/-/fhir-works-on-aws-authz-rbac-5.0.0.tgz#93d60930f0601e9be72de55c6ce23976230d0519" + integrity sha512-ZYy5A1aHU2xFBDTEtHSYdj8dA7vvbB3vD2wu0+ttGX5iOnV1J8EeTGX+kXtVky/nlm43qKrPxb5RbPHIUJiQWg== dependencies: - fhir-works-on-aws-interface "^7.0.1" + fhir-works-on-aws-interface "^10.0.0" jsonwebtoken "^8.5.1" lodash "^4.17.20" -fhir-works-on-aws-interface@9.1.0, fhir-works-on-aws-interface@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/fhir-works-on-aws-interface/-/fhir-works-on-aws-interface-9.1.0.tgz#0df7a9f2216db0e6708f981abf2b7ca406f76c3e" - integrity sha512-Gy0vdXEbWPz1cuu2jicsGM+Wn9wdiqw2fQWFGviENHUiIoH9FOJihfN1AxiTPZTCEsNWz2/kfaKMx3C35bgTTw== - dependencies: - winston "^3.3.3" - winston-transport "^4.4.0" - -fhir-works-on-aws-interface@^7.0.1: - version "7.1.0" - resolved "https://registry.yarnpkg.com/fhir-works-on-aws-interface/-/fhir-works-on-aws-interface-7.1.0.tgz#74ec69861b9909b9d14925085a901162def8ad6c" - integrity sha512-0Tz0ZXycp3vnKSyjnPO94rKJ7Qtz4JWLy83HpB1+qdGaAxzGaMVyW7w3vC3fkPmqOIPKxVl96pU/tXS7/Q9J8g== - -fhir-works-on-aws-interface@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/fhir-works-on-aws-interface/-/fhir-works-on-aws-interface-9.0.0.tgz#2e784f7a5c2e476b436558d0954bf3beb2f150de" - integrity sha512-qYuWefK54g6RLrXqiyw2wZVEqwR5nesxcD5CmPv9ZWEd6bvAxgzQHV5YIOuHtOI2R0cXRaGqldtJqpT8PX9ISQ== +fhir-works-on-aws-interface@10.0.0, fhir-works-on-aws-interface@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/fhir-works-on-aws-interface/-/fhir-works-on-aws-interface-10.0.0.tgz#5ad0599e55b40c7be1f9ef0cf9252d6da1f8d20a" + integrity sha512-JQ/eICquJlI5P6s7e1xiuABnPuhh4d7VeyPFc5OFHgpLbyBCTrbyz0gVMc3BdlQVXQ7IAa0HYgjNsLMoeFt2JA== dependencies: winston "^3.3.3" winston-transport "^4.4.0" -fhir-works-on-aws-persistence-ddb@3.6.1: - version "3.6.1" - resolved "https://registry.yarnpkg.com/fhir-works-on-aws-persistence-ddb/-/fhir-works-on-aws-persistence-ddb-3.6.1.tgz#029bb5e1fbe0c5a8cc5f22f02b9c236964da1471" - integrity sha512-7oGZj+L8bmVQyfgcfhHNGiOHzL8J1BFxptlWk1EaTCvx2vZWW7ZHLeEZ0X4AHYoBPf5qhDHZ99rxBqYz3dACyQ== +fhir-works-on-aws-persistence-ddb@3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/fhir-works-on-aws-persistence-ddb/-/fhir-works-on-aws-persistence-ddb-3.7.0.tgz#0079974746014d4daa5749a014cc87669f38871b" + integrity sha512-cHmmF8PNea8jZg7iD8HaFrC3h6898k2eCaHc2g1tEj6c/81R3Lsbx8vzrdt5sBQYaju8TDfQ8SE6/zmxiSV5Lg== dependencies: "@elastic/elasticsearch" "^7.4" "@types/aws-lambda" "^8.10.63" aws-elasticsearch-connector "^8.2.0" aws-sdk "^2.610.0" aws-xray-sdk "^3.1.0" - fhir-works-on-aws-interface "^9.0.0" + fhir-works-on-aws-interface "^10.0.0" flat "^5.0.2" lodash "^4.17.20" mime-types "^2.1.26" promise.allsettled "^1.0.2" uuid "^3.4.0" -fhir-works-on-aws-routing@5.4.4: - version "5.4.4" - resolved "https://registry.yarnpkg.com/fhir-works-on-aws-routing/-/fhir-works-on-aws-routing-5.4.4.tgz#2d8e9d6ebdcb4c4ed60ac3bd7e5d1d52bf496724" - integrity sha512-Y6qMhjlaVeidM2W2e9FeckSxwPtS7KceswAynXdNYFiNQHt0LLJ5XELiOb4+OeLJwyprPNlR5IVxQrI7pxfiKQ== +fhir-works-on-aws-routing@6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/fhir-works-on-aws-routing/-/fhir-works-on-aws-routing-6.0.0.tgz#f9212325eeadf8c38465274750b94ae1ab6517d3" + integrity sha512-ofGWGzdLGkQAbNEdR9BNonZm02OcWbjtR8euTTAiSnSgcvbjNoitcmWPWGyhbK/FhlWmULOi3aFW/a4h8CiGYQ== dependencies: "@types/cors" "^2.8.7" "@types/express-serve-static-core" "^4.17.2" @@ -5802,7 +5811,7 @@ fhir-works-on-aws-routing@5.4.4: cors "^2.8.5" errorhandler "^1.5.1" express "^4.17.1" - fhir-works-on-aws-interface "^9.1.0" + fhir-works-on-aws-interface "^10.0.0" flat "^5.0.0" http-errors "^1.8.0" lodash "^4.17.15" @@ -5810,16 +5819,16 @@ fhir-works-on-aws-routing@5.4.4: serverless-http "^2.3.1" uuid "^3.4.0" -fhir-works-on-aws-search-es@3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/fhir-works-on-aws-search-es/-/fhir-works-on-aws-search-es-3.2.1.tgz#181cfd898699fbb867224b820f797a163b518abf" - integrity sha512-UukriGwSyMTOV+pttJfORWnL2hAGmS8RGwd5IX2mwVNa67oIVDz4AYnzFwfCgH2BYNj+/wnEvDCQryPi0nqbMw== +fhir-works-on-aws-search-es@3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/fhir-works-on-aws-search-es/-/fhir-works-on-aws-search-es-3.3.0.tgz#4a55090444905210f79a000410d446c753f4347b" + integrity sha512-0BSP0K6ZkI4xV08OqVzNeLBlk88capevzKwkSZaBPFxBzr8KhGJJIuciiPhzQjj6lgy92koMle/nrK8Cq6Oo0Q== dependencies: "@elastic/elasticsearch" "7" aws-elasticsearch-connector "^8.2.0" - aws-sdk "^2.610.0" + aws-sdk "^2.965.0" date-fns "^2.19.0" - fhir-works-on-aws-interface "^9.0.0" + fhir-works-on-aws-interface "^10.0.0" lodash "^4.17.20" nearley "^2.20.0"