@i4mi/fhir_ch
Version:
Selected resources from FHIR CH implementation guides as TypeScript interfaces.
18 lines (17 loc) • 684 B
TypeScript
import { AllergyIntolerance, CodeableConcept, Reference } from '@i4mi/fhir_r4';
/**
* This implements the changes from the CHAllergyIntolerance profile to the default AllergyIntolerance
* resource
* @see https://fhir.ch/ig/ch-allergyintolerance/StructureDefinition-ch-allergyintolerance.html
* @version 2.0.0-ballot
* @date 2023-12-05
*/
export interface CHAllergyIntolerance extends AllergyIntolerance {
meta: {
profile: CHAllergyIntoleranceProfile[];
};
code: CodeableConcept;
patient: Reference;
}
type CHAllergyIntoleranceProfile = 'http://fhir.ch/ig/ch-allergyintolerance/StructureDefinition/ch-allergyintolerance' | string;
export {};