export default interface FhirJsonSchema {
    type?: string;
    title?: string;
    properties?: any;
    required?: string[];
}
