Tools
Datasets
Manage datasets (FHIR bundles, file sets).
Manage datasets containing patient records, FHIR bundles, or file sets that populate simulators.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Manage datasets (FHIR bundles, file sets).
| Action | Description |
|---|---|
list | List all datasets in the organization |
create | Create a new dataset |
get | Get a dataset by ID |
update | Update a dataset |
delete | Delete a dataset |
listcreate| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | yes | Name of the dataset |
description | string | no | Description of the dataset |
type | string | no | Dataset type: FHIR or Files |
data | unknown | no | Dataset contents (FHIR bundle, file references, etc.) |
config | object | no | Dataset configuration |
get| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Dataset ID |
update| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Dataset ID |
name | string | no | Updated name |
description | string | null | no | Updated description, or null to clear |
data | unknown | no | Updated dataset contents |
config | object | null | no | Updated config, or null to clear |
delete| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Dataset ID |
{
"action": "create",
"name": "Prior Auth Patients",
"description": "Patients requiring prior authorization for imaging",
"type": "FHIR",
"data": {
"resourceType": "Bundle",
"type": "collection",
"entry": [
{
"resource": {
"resourceType": "Patient",
"name": [{ "family": "Chen", "given": ["Maria"] }],
"birthDate": "1985-03-14"
}
}
]
}
}
{
"action": "list"
}
{
"action": "get",
"id": "ds_abc123"
}