This page is part of the Argonaut Clinical Notes Implementation Guide (v1.0.0: Release) based on FHIR R3. This is the current published version in it's permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
Argonaut Clinical Notes Client CapabilityStatement
This profile defines the expected capabilities of an Argonaut Data Query Client when conforming to the Argonaut Clinical Notes IG. The complete list of FHIR profiles, RESTful operations, and search parameters supported by Argonaut Servers are defined in the Capability Statements for Server.
- FHIR Version: 3.0.1
- Supported formats: xml, json
- Published: 2019-03-04
- Published by: The Argonaut Project
FHIR RESTful Capabilities
The Argonaut Clinical Notes Data Query Client SHALL:
- Support fetching and querying one or more Argonaut Clinical Notes profile(s), using the supported RESTful interactions and search parameters declared in the Argnaut Clinical Notes Server CapabilityStatement.
Security:
For general security consideration refer to the Security and Privacy Considerations.
RESTful Capabilities by Resource/Profile:
Summary of Operations
$expand
operation.Summary of Search Criteria
Resource Type | Supported Profiles | Supported Searches | Supported Includes |
---|---|---|---|
DocumentReference | _id, class, created, patient, type, class+created+patient, class+patient, created+patient, created+patient+type, patient+type | ||
DiagnosticReport | Argonaut Diagnostic Report Profile for Report and Note exchange | _id, category, code, patient, date, category+date+patient, category+patient, code+date+patient, code+patient, date+patient | |
Binary | _id |
DocumentReference
Supported Profiles:
Argonaut Clinical Notes Profile
- The search parameters
created
,class
, andtype
MAY NOT be available as a single search parameter but SHALL be available in the combinations listed below.
Profile Interaction Summary:
- SHOULD support
create
,read
,delete
.
Fetch and Search Criteria:
-
A Client SHOULD be capable of fetching a DocumentReference resource using:
GET [base]/DocumentReference/[id]
Search Parameter Summary:
Conformance | Parameter | Type | Example |
---|---|---|---|
SHOULD | _id | token | GET [base]/DocumentReference?_id=[id] |
SHOULD | class | token | GET [base]/DocumentReference?class=[system]|[code] |
SHOULD | created | token | GET [base]/DocumentReference?created=[system]|[code] |
SHOULD | patient | reference | GET [base]/DocumentReference?patient=[patient] |
SHOULD | type | token | GET [base]/DocumentReference?type=[system]|[code] |
Search Parameter Combination Summary:
Conformance | Parameter Combination | Example |
---|---|---|
SHOULD | class+created+patient | GET [base]/DocumentReference?class=[system]|[code]&created=[system]|[code]&patient=[patient] |
SHOULD | class+patient | GET [base]/DocumentReference?class=[system]|[code]&patient=[patient] |
SHOULD | created+patient | GET [base]/DocumentReference?created=[system]|[code]&patient=[patient] |
SHOULD | created+patient+type | GET [base]/DocumentReference?created=[system]|[code]&patient=[patient]&type=[system]|[code] |
SHOULD | patient+type | GET [base]/DocumentReference?patient=[patient]&type=[system]|[code] |
DiagnosticReport
Supported Profiles:
Argonaut Diagnostic Report Profile for Report and Note exchange
- The search parameters
date
,category
, andcode
MAY NOT be available as a single search parameter but SHALL be available in the combinations listed below.
Profile Interaction Summary:
- SHOULD support
create
,read
,delete
.
Fetch and Search Criteria:
-
A Client SHOULD be capable of fetching a DiagnosticReport resource using:
GET [base]/DiagnosticReport/[id]
Search Parameter Summary:
Conformance | Parameter | Type | Example |
---|---|---|---|
SHOULD | _id | token | GET [base]/DiagnosticReport?_id=[id] |
SHOULD | category | token | GET [base]/DiagnosticReport?category=[system]|[code] |
SHOULD | code | token | GET [base]/DiagnosticReport?code=[system]|[code] |
SHOULD | patient | reference | GET [base]/DiagnosticReport?patient=[patient] |
SHOULD | date | date | GET [base]/DiagnosticReport?date=[date] |
Search Parameter Combination Summary:
Conformance | Parameter Combination | Example |
---|---|---|
SHOULD | category+date+patient | GET [base]/DiagnosticReport?category=[system]|[code]&date=[date]&patient=[patient] |
SHOULD | category+patient | GET [base]/DiagnosticReport?category=[system]|[code]&patient=[patient] |
SHOULD | code+date+patient | GET [base]/DiagnosticReport?code=[system]|[code]&date=[date]&patient=[patient] |
SHOULD | code+patient | GET [base]/DiagnosticReport?code=[system]|[code]&patient=[patient] |
SHOULD | date+patient | GET [base]/DiagnosticReport?date=[date]&patient=[patient] |
Binary
Profile Interaction Summary:
- SHOULD support
read
.
Fetch and Search Criteria:
-
A Client SHOULD be capable of fetching a Binary resource using:
GET [base]/Binary/[id]
Search Parameter Summary:
Conformance | Parameter | Type | Example |
---|---|---|---|
SHOULD | _id | token | GET [base]/Binary?_id=[id] |