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