fhir
Version:
Library that assists in handling FHIR resources. Supports serialization between JSON and XML, validation and FhirPath evaluation.
20 lines (19 loc) • 417 B
TypeScript
export interface ElementDefinition {
id?: string;
path: string;
min?: number;
max?: string;
base?: {
path: string;
min: number;
max: string;
};
type?: ElementDefinitionType[];
}
export interface ElementDefinitionType {
code: string;
profile?: string[];
targetProfile?: string[];
aggregation?: string[];
versioning?: string;
}