Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NRL-1050 update documentation for category filter #174

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions specification/record-locator/producer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,7 @@ paths:
parameters:
- $ref: "#/components/parameters/subject"
- $ref: "#/components/parameters/type"
- $ref: "#/components/parameters/category"
- $ref: "#/components/parameters/nextPageToken"
- $ref: "#/components/parameters/odsCode"
- $ref: "#/components/parameters/odsCodeExtension"
Expand Down Expand Up @@ -2059,6 +2060,8 @@ components:
$ref: "#/components/schemas/RequestQuerySubject"
type:
$ref: "#/components/schemas/RequestQueryType"
category:
$ref: "#/components/schemas/RequestQueryCategory"
next-page-token:
$ref: "#/components/schemas/NextPageToken"
RequestQuerySubject:
Expand All @@ -2068,6 +2071,9 @@ components:
RequestQueryType:
type: string
example: "http://snomed.info/sct|736253002"
RequestQueryCategory:
type: string
example: "http://snomed.info/sct|103693007"
NextPageToken:
type: string
RequestHeaderOdsCode:
Expand Down Expand Up @@ -2162,6 +2168,33 @@ components:
invalid:
summary: Unknown
value: http://snomed.info/sct|410970009
category:
name: category
in: query
schema:
$ref: "#/components/schemas/RequestQueryCategory"
examples:
none:
summary: None
value: ""
SNOMED_CODES_CARE_PLAN:
summary: Care plan
value: http://snomed.info/sct|734163000
SNOMED_CODES_OBSERVATIONS:
summary: Observations
value: http://snomed.info/sct|1102421000000108
SNOMED_CODES_CLINICAL_NOTE:
summary: Clinical note
value: http://snomed.info/sct|823651000000106
SNOMED_CODES_DIAGNOSTIC_STUDIES_REPORT:
summary: Diagnostic studies report
value: http://snomed.info/sct|721981007
SNOMED_CODES_DIAGNOSTIC_PROCEDURE:
summary: Diagnostic procedure
value: http://snomed.info/sct|103693007
invalid:
summary: Unknown
value: http://snomed.info/sct|410970009
nextPageToken:
name: next-page-token
in: query
Expand Down
Loading