Skip to main content
Glama
accesspolicy.ts1.06 kB
// SPDX-FileCopyrightText: Copyright Orangebot, Inc. and Medplum contributors // SPDX-License-Identifier: Apache-2.0 import type { WithId } from '@medplum/core'; import type { AccessPolicy, UserConfiguration, ValueSet } from '@medplum/fhirtypes'; export const ExampleAccessPolicy: WithId<AccessPolicy> = { resourceType: 'AccessPolicy', id: '123', name: 'Example Access Policy', }; export const ExampleStatusValueSet: WithId<ValueSet> = { resourceType: 'ValueSet', id: 'example-statuses', status: 'active', compose: { include: [ { concept: [ { code: 'ORDERED' }, { code: 'SENT_TO_CUSTOMER' }, { code: 'SENT_BACK_TO_LAB' }, { code: 'LAB_PROCESSED' }, { code: 'LAB_COMPLETE' }, ], }, ], }, }; export const ExampleUserConfiguration: WithId<UserConfiguration> = { resourceType: 'UserConfiguration', id: '123', name: 'Example User Configuration', option: [ { id: 'statusValueSet', valueString: 'ValueSet/example-statuses', }, ], };

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/medplum/medplum'

If you have feedback or need assistance with the MCP directory API, please join our Discord server