Site identifier
HeyDonto FHIR R4 API - Foundation (1.0)
The Foundation Module is responsible for the overall infrastructure of the FHIR specification. Every implementer works with the content in the Foundation module whichever way they use FHIR.
The Foundation Module maintains most of the basic documentation for the FHIR specification: FHIR Documentation
- Resource - Base resource definition
- DomainResource - Resource with narrative and extensions
- Basic - Generic resource for custom content
- Binary - Raw data content (images, PDFs, documents)
- Bundle - Container for collections of resources
- Questionnaire - Form definitions for data collection
- QuestionnaireResponse - Completed questionnaire answers
- List - Curated collection of resources
- Composition - Clinical document structure
- DocumentReference - Reference to external documents
- DocumentManifest - Collection of document references
- OperationOutcome - Operation results and error messages
- Parameters - Operation input/output parameters
- Subscription - Event notifications and subscriptions
- MessageHeader - Message metadata for routing
- MessageDefinition - Message structure definitions
All the other modules depend on the Foundation module:
- The Exchange module builds on the foundation model by defining the recognized methods for exchange of resources
- The Terminology module provides the formal basis for using Concepts defined in Code Systems in the definitions
- The Conformance module provides the basis for extending the foundation for national and local use
- The Security & Privacy module provides the linking framework to external standards for security and privacy
- The Implementation Support module builds on the foundation to provide testing and reference implementations
Several components of the Foundation module have now reached normative status. The focus over the next 18-24 months as the 5th release of FHIR is prepared is to focus on some of the non-normative elements and move them towards normative status, such as Questionnaire, List, DocumentReference and Subscription. Exactly which resources will be candidates for normative release will be driven, in part, by the degree of implementation - and whether that implementation is communicated back to HL7.
https://docs.heydonto.com/_mock/apis/fhir/foundation/
https://api-staging.heydonto.com/
https://api.heydonto.com/
Sort the results by a given field, e.g. _sort=family or _sort=-date.
Restrict returned fields, e.g. _elements=identifier,name.
Filter by resource telecom, e.g. date=[SYSTEM]|[VALUE].
Search for resources by identifier token, e.g. identifier=http://hospital.org|12345.
Include related patient resources, e.g. patient=Patient/[id]&.
Reverse chaining, e.g. _has:Observation:subject:code=http://loinc.org|1234-5.
Search by tag on the resource meta, e.g. _tag=http://example.org/tags|sample-tag.
Search by security label on resource meta, e.g. _security=RBAC|CONFIDENTIAL.
- Mock server
https://docs.heydonto.com/_mock/apis/fhir/foundation/site/{siteId}/fhir/parameters
- Sandbox
https://api-staging.heydonto.com/site/{siteId}/fhir/parameters
- Production
https://api.heydonto.com/site/{siteId}/fhir/parameters
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.heydonto.com/_mock/apis/fhir/foundation/site/{siteId}/fhir/parameters?_count=10&_page_token=CgYK...&_sort=family&_elements=identifier%2Cname&telecom=telecom%3Dphone%2C555-555-5555&_id=abc123&identifier=http%3A%2F%2Fhospital.org%2C12345&_include=string&patient=patient%3DPatient%2F%5Bid%5D%26&_revinclude=string&_has=Observation%3Asubject%3Acode%3Dhttp%3A%2F%2Floinc.org%2C1234-5&_tag=http%3A%2F%2Fexample.org%2Ftags%2Csample-tag&_security=RBAC%2CCONFIDENTIAL&_profile=http%3A%2F%2Fexample.org%2Ffhir%2FStructureDefinition%2Fcustom-profile' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Any combination of letters, numerals, "-" and ".", with a length limit of 64 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Ids are case-insensitive.
The metadata about a resource. This is content in the resource that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
String of characters used to identify a name or a resource
A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents
An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.
Indicates the purpose of this bundle - how it is intended to be used.
An instant in time - known at least to the second
An integer with a value that is not negative (e.g. >= 0)
A series of links that provide context to this bundle.
An entry in a bundle resource - will either contain a resource or information about a resource (transactions and history only).
A signature along with supporting context. The signature may be a digital signature that is cryptographic in nature, or some other signature acceptable to the domain. This other signature may be as simple as a graphical image representing a hand-written signature, or a signature ceremony Different signature approaches have different utilities.
{ "resourceType": "Bundle", "type": "searchset", "total": 100, "link": [ { … }, { … }, { … }, { … } ], "entry": [ { … } ] }
Any combination of letters, numerals, "-" and ".", with a length limit of 64 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Ids are case-insensitive.
The metadata about a resource. This is content in the resource that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
String of characters used to identify a name or a resource
A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents
A parameter passed to or received from the operation.
- Mock server
https://docs.heydonto.com/_mock/apis/fhir/foundation/site/{siteId}/fhir/parameters
- Sandbox
https://api-staging.heydonto.com/site/{siteId}/fhir/parameters
- Production
https://api.heydonto.com/site/{siteId}/fhir/parameters
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.heydonto.com/_mock/apis/fhir/foundation/site/{siteId}/fhir/parameters' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"resourceType": "Parameters",
"parameter": [
{
"name": "exact",
"valueBoolean": true
},
{
"name": "property",
"part": [
{
"name": "code",
"valueCode": "focus"
},
{
"name": "value",
"valueCode": "top"
}
]
},
{
"name": "patient",
"resource": {
"resourceType": "Patient",
"id": "example",
"name": [
{
"use": "official",
"family": "Chalmers",
"given": [
"Peter",
"James"
]
}
]
}
}
]
}'Any combination of letters, numerals, "-" and ".", with a length limit of 64 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Ids are case-insensitive.
The metadata about a resource. This is content in the resource that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
String of characters used to identify a name or a resource
A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents
A parameter passed to or received from the operation.
{ "resourceType": "Parameters", "parameter": [ { … }, { … }, { … } ] }
- Mock server
https://docs.heydonto.com/_mock/apis/fhir/foundation/site/{siteId}/fhir/parameters/{id}
- Sandbox
https://api-staging.heydonto.com/site/{siteId}/fhir/parameters/{id}
- Production
https://api.heydonto.com/site/{siteId}/fhir/parameters/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.heydonto.com/_mock/apis/fhir/foundation/site/{siteId}/fhir/parameters/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Any combination of letters, numerals, "-" and ".", with a length limit of 64 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Ids are case-insensitive.
The metadata about a resource. This is content in the resource that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
String of characters used to identify a name or a resource
A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents
A parameter passed to or received from the operation.
{ "resourceType": "Parameters", "parameter": [ { … }, { … }, { … } ] }
Any combination of letters, numerals, "-" and ".", with a length limit of 64 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Ids are case-insensitive.
The metadata about a resource. This is content in the resource that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
String of characters used to identify a name or a resource
A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents
A parameter passed to or received from the operation.
- Mock server
https://docs.heydonto.com/_mock/apis/fhir/foundation/site/{siteId}/fhir/parameters/{id}
- Sandbox
https://api-staging.heydonto.com/site/{siteId}/fhir/parameters/{id}
- Production
https://api.heydonto.com/site/{siteId}/fhir/parameters/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://docs.heydonto.com/_mock/apis/fhir/foundation/site/{siteId}/fhir/parameters/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"resourceType": "Parameters",
"parameter": [
{
"name": "exact",
"valueBoolean": true
},
{
"name": "property",
"part": [
{
"name": "code",
"valueCode": "focus"
},
{
"name": "value",
"valueCode": "top"
}
]
},
{
"name": "patient",
"resource": {
"resourceType": "Patient",
"id": "example",
"name": [
{
"use": "official",
"family": "Chalmers",
"given": [
"Peter",
"James"
]
}
]
}
}
]
}'Any combination of letters, numerals, "-" and ".", with a length limit of 64 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Ids are case-insensitive.
The metadata about a resource. This is content in the resource that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
String of characters used to identify a name or a resource
A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents
A parameter passed to or received from the operation.
{ "resourceType": "Parameters", "parameter": [ { … }, { … }, { … } ] }
- Mock server
https://docs.heydonto.com/_mock/apis/fhir/foundation/site/{siteId}/fhir/parameters/{id}
- Sandbox
https://api-staging.heydonto.com/site/{siteId}/fhir/parameters/{id}
- Production
https://api.heydonto.com/site/{siteId}/fhir/parameters/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.heydonto.com/_mock/apis/fhir/foundation/site/{siteId}/fhir/parameters/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "statusText": "OK", "status": 200 }
- Mock server
https://docs.heydonto.com/_mock/apis/fhir/foundation/site/{siteId}/fhir/parameters/{id}/history
- Sandbox
https://api-staging.heydonto.com/site/{siteId}/fhir/parameters/{id}/history
- Production
https://api.heydonto.com/site/{siteId}/fhir/parameters/{id}/history
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.heydonto.com/_mock/apis/fhir/foundation/site/{siteId}/fhir/parameters/{id}/history' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "resourceType": "Bundle", "type": "history", "entry": [ { … } ], "total": 2 }