@azure-rest/health-insights-radiologyinsights 2.0.0-alpha.20251128.1 → 2.0.0-alpha.20251202.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"outputModels.js","sourceRoot":"","sources":["../../src/outputModels.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { ErrorModel } from \"@azure-rest/core-client\";\n\n/** Response for the Radiology Insights request. */\nexport interface RadiologyInsightsJobOutput {\n /** The request data for the operation. */\n jobData?: RadiologyInsightsDataOutput;\n /** The result of the operation. */\n readonly result?: RadiologyInsightsInferenceResultOutput;\n /** The unique ID of the job. */\n readonly id: string;\n /**\n * The status of the job.\n *\n * Possible values: \"notStarted\", \"running\", \"succeeded\", \"failed\", \"canceled\"\n */\n readonly status: JobStatusOutput;\n /** The date and time when the processing job was created. */\n readonly createdAt?: string;\n /** The date and time when the processing job is set to expire. */\n readonly expiresAt?: string;\n /** The date and time when the processing job was last updated. */\n readonly updatedAt?: string;\n /** Error object that describes the error when status is \"Failed\". */\n readonly error?: ErrorModel;\n}\n\n/** Contains the list of patients, and configuration data. */\nexport interface RadiologyInsightsDataOutput {\n /** The list of patients, including their clinical information and data. */\n patients: Array<PatientRecordOutput>;\n /** Configuration affecting the Radiology Insights model's inference. */\n configuration?: RadiologyInsightsModelConfigurationOutput;\n}\n\n/** A patient record, including their clinical information and data. */\nexport interface PatientRecordOutput {\n /** A given identifier for the patient. Has to be unique across all patients in a single request. */\n id: string;\n /** Patient structured information, including demographics and known structured clinical information. */\n details?: PatientDetailsOutput;\n /** Patient encounters/visits. */\n encounters?: Array<PatientEncounterOutput>;\n /** Patient unstructured clinical data, given as documents. */\n patientDocuments?: Array<PatientDocumentOutput>;\n}\n\n/** Patient structured information, including demographics and known structured clinical information. */\nexport interface PatientDetailsOutput {\n /**\n * The patient's sex.\n *\n * Possible values: \"female\", \"male\", \"unspecified\"\n */\n sex?: PatientSexOutput;\n /** The patient's date of birth. */\n birthDate?: string;\n /** Known clinical information for the patient, structured. */\n clinicalInfo?: Array<ResourceOutput>;\n}\n\n/**\n * Resource is the ancestor of DomainResource from which most resources are derived. Bundle, Parameters, and Binary extend Resource directly.\n * Based on [FHIR Resource](https://www.hl7.org/fhir/r4/resource.html\n */\nexport interface ResourceOutput extends Record<string, any> {\n /** The type of resource */\n resourceType: string;\n /** Resource Id */\n id?: string;\n /** Metadata about the resource */\n meta?: MetaOutput;\n /** A set of rules under which this content was created */\n implicitRules?: string;\n /** Language of the resource content */\n language?: string;\n}\n\n/**\n * Metadata about a resource\n * Based on [FHIR Meta](https://www.hl7.org/fhir/R4/resource.html#Meta)\n */\nexport interface MetaOutput {\n /** The version specific identifier, as it appears in the version portion of the URL. This value changes when the resource is created, updated, or deleted. */\n versionId?: string;\n /** When the resource last changed - e.g. when the version changed. */\n lastUpdated?: string;\n /** A uri that identifies the source system of the resource. This provides a minimal amount of Provenance information that can be used to track or differentiate the source of information in the resource. The source may identify another FHIR server, document, message, database, etc. */\n source?: string;\n /** A list of profiles (references to [StructureDefinition](https://www.hl7.org/fhir/structuredefinition.html) resources) that this resource claims to conform to. The URL is a reference to [StructureDefinition.url](https://www.hl7.org/fhir/structuredefinition-definitions.html#StructureDefinition.url). */\n profile?: string[];\n /** Security labels applied to this resource. These tags connect specific resources to the overall security policy and infrastructure. */\n security?: Array<CodingOutput>;\n /** Tags applied to this resource. Tags are intended to be used to identify and relate resources to process and workflow, and applications are not required to consider the tags when interpreting the meaning of a resource. */\n tag?: Array<CodingOutput>;\n}\n\n/**\n * A Coding is a representation of a defined concept using a symbol from a defined \"code system\".\n * Based on [FHIR Coding](https://www.hl7.org/fhir/R4/datatypes.html#Coding)\n */\nexport interface CodingOutput extends ElementOutput {\n /** Identity of the terminology system */\n system?: string;\n /** Version of the system - if relevant */\n version?: string;\n /** Symbol in syntax defined by the system */\n code?: string;\n /** Representation defined by the system */\n display?: string;\n}\n\n/**\n * The base definition for all elements contained inside a resource.\n * Based on [FHIR Element](https://www.hl7.org/fhir/R4/element.html)\n */\nexport interface ElementOutput {\n /** Unique id for inter-element referencing */\n id?: string;\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n}\n\n/**\n * Base for all elements\n * Based on [FHIR Element](https://www.hl7.org/fhir/R4/element.html)\n */\nexport interface ExtensionOutput extends ElementOutput {\n /** Source of the definition for the extension code - a logical name or a URL. */\n url: string;\n /** Value as Quantity */\n valueQuantity?: QuantityOutput;\n /** Value as CodeableConcept */\n valueCodeableConcept?: CodeableConceptOutput;\n /** Value as string */\n valueString?: string;\n /** Value as boolean */\n valueBoolean?: boolean;\n /** Value as integer */\n valueInteger?: number;\n /** Value as Range. */\n valueRange?: RangeOutput;\n /** Value as Ratio. */\n valueRatio?: RatioOutput;\n /** Value as SampledData. */\n valueSampledData?: SampledDataOutput;\n /** Value as time (hh:mm:ss) */\n valueTime?: string;\n /** Value as dateTime. */\n valueDateTime?: string;\n /** Value as Period. */\n valuePeriod?: PeriodOutput;\n /** Value as reference. */\n valueReference?: ReferenceOutput;\n}\n\n/**\n * A measured or measurable amount\n * Based on [FHIR Quantity](https://www.hl7.org/fhir/R4/datatypes.html#Quantity)\n */\nexport interface QuantityOutput extends ElementOutput {\n /** Numerical value (with implicit precision) */\n value?: number;\n /** \\< | \\<= | \\>= | \\> - how to understand the value */\n comparator?: string;\n /** Unit representation */\n unit?: string;\n /** System that defines coded unit form */\n system?: string;\n /** Coded form of the unit */\n code?: string;\n}\n\n/**\n * Concept - reference to a terminology or just text\n * Based on [FHIR CodeableConcept](https://www.hl7.org/fhir/R4/datatypes.html#CodeableConcept)\n */\nexport interface CodeableConceptOutput extends ElementOutput {\n /** Code defined by a terminology system */\n coding?: Array<CodingOutput>;\n /** Plain text representation of the concept */\n text?: string;\n}\n\n/**\n * A set of ordered Quantities defined by a low and high limit\n * Based on [FHIR Range](https://www.hl7.org/fhir/R4/datatypes.html#Range)\n */\nexport interface RangeOutput extends ElementOutput {\n /** Low limit */\n low?: QuantityOutput;\n /** High limit */\n high?: QuantityOutput;\n}\n\n/**\n * A ratio of two Quantity values - a numerator and a denominator\n * Based on [FHIR Ratio](https://www.hl7.org/fhir/R4/datatypes.html#Ratio)\n */\nexport interface RatioOutput extends ElementOutput {\n /** Numerator value */\n numerator?: QuantityOutput;\n /** Denominator value */\n denominator?: QuantityOutput;\n}\n\n/**\n * A series of measurements taken by a device\n * Based on [FHIR SampledData](https://www.hl7.org/fhir/R4/datatypes.html#SampledData)\n */\nexport interface SampledDataOutput extends ElementOutput {\n /** Zero value and units */\n origin: QuantityOutput;\n /** Number of milliseconds between samples */\n period: number;\n /** Multiply data by this before adding to origin */\n factor?: number;\n /** Lower limit of detection */\n lowerLimit?: number;\n /** Upper limit of detection */\n upperLimit?: number;\n /** Number of sample points at each time point */\n dimensions: number;\n /** Decimal values with spaces, or \"E\" | \"U\" | \"L\" */\n data?: string;\n}\n\n/**\n * A time period defined by a start and end date and optionally time\n * Based on [FHIR Period](https://www.hl7.org/fhir/R4/datatypes.html#Period)\n */\nexport interface PeriodOutput extends ElementOutput {\n /** Starting time with inclusive boundary */\n start?: string;\n /** End time with inclusive boundary, if not ongoing */\n end?: string;\n}\n\n/**\n * A reference from one resource to another\n * Based on [FHIR Reference](https://www.hl7.org/fhir/R4/references.html)\n */\nexport interface ReferenceOutput extends ElementOutput {\n /** Literal reference, Relative, internal or absolute URL */\n reference?: string;\n /** Type the reference refers to (e.g. \"Patient\") */\n type?: string;\n /** Logical reference, when literal reference is not known */\n identifier?: IdentifierOutput;\n /** Text alternative for the resource */\n display?: string;\n}\n\n/**\n * An identifier intended for computation\n * Based on [FHIR Identifier](https://www.hl7.org/fhir/R4/identifier.html)\n */\nexport interface IdentifierOutput extends ElementOutput {\n /** usual | official | temp | secondary | old (If known) */\n use?: string;\n /** Description of identifier */\n type?: CodeableConceptOutput;\n /** The namespace for the identifier value */\n system?: string;\n /** The value that is unique */\n value?: string;\n /** Time period when id is/was valid for use */\n period?: PeriodOutput;\n /** Organization that issued id (may be just text) */\n assigner?: ReferenceOutput;\n}\n\n/**\n * Any resource that is a [DomainResource](https://www.hl7.org/fhir/domainresource.html) may include a human-readable narrative that contains a summary of the resource and may be used to represent the content of the resource to a human.\n * Based on [FHIR Narrative](https://www.hl7.org/fhir/R4/narrative.html#Narrative)\n */\nexport interface NarrativeOutput extends ElementOutput {\n /** generated, extensions, additional, empty */\n status: string;\n /** xhtml */\n div: string;\n}\n\n/**\n * A text note which also contains information about who made the statement and when\n * Based on [FHIR Annotation](https://www.hl7.org/fhir/R4/datatypes.html#Annotation)\n */\nexport interface AnnotationOutput extends ElementOutput {\n /** Individual responsible for the annotation */\n authorString?: string;\n /** When the annotation was made */\n time?: string;\n /** The annotation - text content (as markdown) */\n text: string;\n}\n\n/**\n * Component results\n * Based on [FHIR Observation.component](https://www.hl7.org/fhir/R4/observation.html)\n */\nexport interface ObservationComponentOutput extends ElementOutput {\n /** Type of component observation (code / type) */\n code: CodeableConceptOutput;\n /** Value as Quantity */\n valueQuantity?: QuantityOutput;\n /** Value as CodeableConcept */\n valueCodeableConcept?: CodeableConceptOutput;\n /** Value as string */\n valueString?: string;\n /** Value as boolean */\n valueBoolean?: boolean;\n /** Value as integer */\n valueInteger?: number;\n /** Value as Range. */\n valueRange?: RangeOutput;\n /** Value as Ratio. */\n valueRatio?: RatioOutput;\n /** Value as SampledData. */\n valueSampledData?: SampledDataOutput;\n /** Value as time (hh:mm:ss) */\n valueTime?: string;\n /** Value as dateTime. */\n valueDateTime?: string;\n /** Value as Period. */\n valuePeriod?: PeriodOutput;\n /** Value as reference. */\n valueReference?: ReferenceOutput;\n /** Why the component result is missing */\n dataAbsentReason?: CodeableConceptOutput;\n /** High, low, normal, etc. */\n interpretation?: Array<CodeableConceptOutput>;\n /** Provides guide for interpretation of component result */\n referenceRange?: Array<ObservationReferenceRangeOutput>;\n}\n\n/**\n * Provides guide for interpretation of component result\n * Based on [FHIR Observation.referenceRange](https://www.hl7.org/fhir/R4/observation.html)\n */\nexport interface ObservationReferenceRangeOutput {\n /** Low Range, if relevant */\n low?: QuantityOutput;\n /** High Range, if relevant */\n high?: QuantityOutput;\n /** Reference range qualifier */\n type?: CodeableConceptOutput;\n /** Reference range population */\n appliesTo?: Array<CodeableConceptOutput>;\n /** Applicable age range, if relevant */\n age?: RangeOutput;\n /** Text based reference range in an observation */\n text?: string;\n}\n\n/** Contact details (See: https://www.hl7.org/fhir/R4/metadatatypes.html#ContactDetail) */\nexport interface ContactDetailOutput extends ElementOutput {\n /** Name of an individual to contact */\n name?: string;\n /** Contact details for individual or organization */\n telecom?: Array<ContactPointOutput>;\n}\n\n/**\n * Details for all kinds of technology mediated contact points for a person or organization, including telephone, email, etc.\n * See https://www.hl7.org/fhir/R4/datatypes.html#ContactPoint\n */\nexport interface ContactPointOutput {\n /**\n * phone | fax | email | pager | url | sms | other\n *\n * Possible values: \"phone\", \"fax\", \"email\", \"pager\", \"url\", \"sms\", \"other\"\n */\n system?: ContactPointSystemOutput;\n /** The actual contact point details */\n value?: string;\n /**\n * home | work | temp | old | mobile - purpose of this contact point\n *\n * Possible values: \"home\", \"work\", \"temp\", \"old\", \"mobile\"\n */\n use?: ContactPointUseOutput;\n /** Specify preferred order of use (1 = highest) */\n rank?: number;\n /** Time period when the contact point was/is in use */\n period?: PeriodOutput;\n}\n\n/** A resource with narrative, extensions, and contained resources Based on [FHIR DomainResource](https://www.hl7.org/fhir/domainresource.html) */\nexport interface DomainResourceOutputParent extends ResourceOutput {\n /** Contained, inline Resources */\n contained?: Array<ResourceOutput>;\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n /** Extensions that cannot be ignored */\n modifierExtension?: Array<ExtensionOutput>;\n /** resourceType */\n resourceType: string;\n /** Text summary of the resource, for human interpretation */\n text?: NarrativeOutput;\n}\n\n/**\n * Detailed information about observations\n * Based on [FHIR Observation](https://www.hl7.org/fhir/R4/observation.html)\n */\nexport interface ObservationOutput extends DomainResourceOutputParent {\n /** resourceType */\n resourceType: \"Observation\";\n /** Business Identifier for observation */\n identifier?: Array<IdentifierOutput>;\n /**\n * registered | preliminary | final | amended +\n *\n * Possible values: \"registered\", \"preliminary\", \"final\", \"amended\", \"corrected\", \"cancelled\", \"entered-in-error\", \"unknown\"\n */\n status: ObservationStatusCodeTypeOutput;\n /** Classification of type of observation */\n category?: Array<CodeableConceptOutput>;\n /** Type of observation (code / type) */\n code: CodeableConceptOutput;\n /** Who and/or what the observation is about */\n subject?: ReferenceOutput;\n /** Healthcare event during which this observation is made */\n encounter?: ReferenceOutput;\n /** Clinically relevant time/time-period for observation */\n effectiveDateTime?: string;\n /** Clinically relevant time/time-period for observation */\n effectivePeriod?: PeriodOutput;\n /** Clinically relevant time/time-period for observation */\n effectiveInstant?: string;\n /** Date/Time this version was made available */\n issued?: string;\n /** Actual result */\n valueQuantity?: QuantityOutput;\n /** Actual result */\n valueCodeableConcept?: CodeableConceptOutput;\n /** Actual result */\n valueString?: string;\n /** Actual result */\n valueBoolean?: boolean;\n /** Actual result */\n valueInteger?: number;\n /** Actual result */\n valueRange?: RangeOutput;\n /** Actual result */\n valueRatio?: RatioOutput;\n /** Actual result */\n valueSampledData?: SampledDataOutput;\n /** Actual result */\n valueTime?: string;\n /** Actual result */\n valueDateTime?: string;\n /** Actual result */\n valuePeriod?: PeriodOutput;\n /** Why the result is missing */\n dataAbsentReason?: CodeableConceptOutput;\n /** High, low, normal, etc. */\n interpretation?: Array<CodeableConceptOutput>;\n /** Comments about the observation */\n note?: Array<AnnotationOutput>;\n /** Observed body part */\n bodySite?: CodeableConceptOutput;\n /** How it was done */\n method?: CodeableConceptOutput;\n /** Provides guide for interpretation */\n referenceRange?: Array<ObservationReferenceRangeOutput>;\n /** Related resource that belongs to the Observation group */\n hasMember?: Array<ReferenceOutput>;\n /** Related measurements the observation is made from */\n derivedFrom?: Array<ReferenceOutput>;\n /** Component results */\n component?: Array<ObservationComponentOutput>;\n}\n\n/**\n * Detailed information about conditions, problems or diagnoses\n * Based on [FHIR Condition](https://www.hl7.org/fhir/R4/condition.html)\n */\nexport interface ConditionOutput extends DomainResourceOutputParent {\n /** resourceType */\n resourceType: \"Condition\";\n /** External Ids for this condition */\n identifier?: Array<IdentifierOutput>;\n /** active | recurrence | relapse | inactive | remission | resolved */\n clinicalStatus?: CodeableConceptOutput;\n /** unconfirmed | provisional | differential | confirmed | refuted | entered-in-error */\n verificationStatus?: CodeableConceptOutput;\n /** problem-list-item | encounter-diagnosis */\n category?: Array<CodeableConceptOutput>;\n /** Subjective severity of condition */\n severity?: CodeableConceptOutput;\n /** Identification of the condition, problem or diagnosis */\n code?: CodeableConceptOutput;\n /** Anatomical location, if relevant */\n bodySite?: Array<CodeableConceptOutput>;\n /** Encounter created as part of */\n encounter?: ReferenceOutput;\n /** Estimated or actual date, date-time, or age */\n onsetDateTime?: string;\n /** Estimated or actual date, date-time, or age */\n onsetAge?: QuantityOutput;\n /** Estimated or actual date, date-time, or age */\n onsetPeriod?: PeriodOutput;\n /** Estimated or actual date, date-time, or age */\n onsetRange?: RangeOutput;\n /** Estimated or actual date, date-time, or age */\n onsetString?: string;\n /** When in resolution/remission */\n abatementDateTime?: string;\n /** When in resolution/remission */\n abatementAge?: QuantityOutput;\n /** When in resolution/remission */\n abatementPeriod?: PeriodOutput;\n /** When in resolution/remission */\n abatementRange?: RangeOutput;\n /** When in resolution/remission */\n abatementString?: string;\n /** Date record was first recorded */\n recordedDate?: string;\n /** stge/grade, usually assessed formally */\n stage?: Array<ConditionStageOutput>;\n /** Additional information about the Condition */\n note?: Array<AnnotationOutput>;\n}\n\n/**\n * Stage/grade, usually assessed formally\n * Based on [FHIR Condition.Stage](https://www.hl7.org/fhir/R4/condition.html)\n */\nexport interface ConditionStageOutput {\n /** Simple summary (disease specific) */\n summary?: CodeableConceptOutput;\n /** Kind of staging */\n type?: CodeableConceptOutput;\n}\n\n/**\n * Detailed information about Research Study\n * Based on [FHIR ResearchStudy](https://www.hl7.org/fhir/R4/researchstudy.html)\n */\nexport interface ResearchStudyOutput extends DomainResourceOutputParent {\n /** resourceType */\n resourceType: \"ResearchStudy\";\n /** Business Identifier for study */\n identifier?: Array<IdentifierOutput>;\n /** Name for this study */\n title?: string;\n /** Steps followed in executing study */\n protocol?: Array<ReferenceOutput>;\n /** Part of larger study */\n partOf?: Array<ReferenceOutput>;\n /**\n * active | administratively-completed | approved | closed-to-accrual | closed-to-accrual-and-intervention | completed | disapproved | in-review | temporarily-closed-to-accrual | temporarily-closed-to-accrual-and-intervention | withdrawn\n *\n * Possible values: \"active\", \"administratively-completed\", \"approved\", \"closed-to-accrual\", \"closed-to-accrual-and-intervention\", \"completed\", \"disapproved\", \"in-review\", \"temporarily-closed-to-accrual\", \"temporarily-closed-to-accrual-and-intervention\", \"withdrawn\"\n */\n status: ResearchStudyStatusCodeTypeOutput;\n /** treatment | prevention | diagnostic | supportive-care | screening | health-services-research | basic-science | device-feasibility */\n primaryPurposeType?: CodeableConceptOutput;\n /** n-a | early-phase-1 | phase-1 | phase-1-phase-2 | phase-2 | phase-2-phase-3 | phase-3 | phase-4 */\n phase?: CodeableConceptOutput;\n /** Classifications for the study */\n category?: Array<CodeableConceptOutput>;\n /** Drugs, devices, etc. under study */\n focus?: Array<CodeableConceptOutput>;\n /** Condition being studied */\n condition?: Array<CodeableConceptOutput>;\n /** Contact details for the study */\n contact?: Array<ContactDetailOutput>;\n /** Used to search for the study */\n keyword?: Array<CodeableConceptOutput>;\n /** Geographic region(s) for study */\n location?: Array<CodeableConceptOutput>;\n /** What this is study doing */\n description?: string;\n /** Inclusion & exclusion criteria */\n enrollment?: Array<ReferenceOutput>;\n /** When the study began and ended */\n period?: PeriodOutput;\n /** Organization that initiates and is legally responsible for the study */\n sponsor?: ReferenceOutput;\n /** Researcher who oversees multiple aspects of the study */\n principalInvestigator?: ReferenceOutput;\n /** Facility where study activities are conducted */\n site?: Array<ReferenceOutput>;\n /** accrual-goal-met | closed-due-to-toxicity | closed-due-to-lack-of-study-progress | temporarily-closed-per-study-design */\n reasonStopped?: CodeableConceptOutput;\n /** Comments made about the study */\n note?: Array<AnnotationOutput>;\n /** Defined path through the study for a subject */\n arm?: { name: string; type?: CodeableConceptOutput; description?: string }[];\n /** A goal for the study */\n objective?: { name: string; type?: CodeableConceptOutput }[];\n}\n\n/** visit/encounter information */\nexport interface PatientEncounterOutput {\n /** The id of the visit. */\n id: string;\n /**\n * Time period of the visit.\n * In case of admission, use timePeriod.start to indicate the admission time and timePeriod.end to indicate the discharge time.\n */\n period?: TimePeriodOutput;\n /**\n * The class of the encounter.\n *\n * Possible values: \"inpatient\", \"ambulatory\", \"observation\", \"emergency\", \"virtual\", \"healthHome\"\n */\n class?: EncounterClassOutput;\n}\n\n/** A duration of time during which an event is happening */\nexport interface TimePeriodOutput {\n /** Starting time with inclusive boundary */\n start?: string;\n /** End time with inclusive boundary, if not ongoing */\n end?: string;\n}\n\n/** A clinical document related to a patient. Document here is in the wide sense - not just a text document (note). */\nexport interface PatientDocumentOutput {\n /**\n * The type of the patient document, such as 'note' (text document) or 'fhirBundle' (FHIR JSON document).\n *\n * Possible values: \"note\", \"fhirBundle\", \"dicom\", \"genomicSequencing\"\n */\n type: DocumentTypeOutput;\n /**\n * The type of the clinical document.\n *\n * Possible values: \"consultation\", \"dischargeSummary\", \"historyAndPhysical\", \"radiologyReport\", \"procedure\", \"progress\", \"laboratory\", \"pathologyReport\"\n */\n clinicalType?: ClinicalDocumentTypeOutput;\n /** A given identifier for the document. Has to be unique across all documents for a single patient. */\n id: string;\n /** A 2 letter ISO 639-1 representation of the language of the document. */\n language?: string;\n /** The date and time when the document was created. */\n createdAt?: string;\n /** Document author(s) */\n authors?: Array<DocumentAuthorOutput>;\n /**\n * specialty type the document\n *\n * Possible values: \"pathology\", \"radiology\"\n */\n specialtyType?: SpecialtyTypeOutput;\n /** Administrative metadata for the document. */\n administrativeMetadata?: DocumentAdministrativeMetadataOutput;\n /** The content of the patient document. */\n content: DocumentContentOutput;\n}\n\n/** Document author */\nexport interface DocumentAuthorOutput {\n /** author id */\n id?: string;\n /** Text representation of the full name */\n fullName?: string;\n}\n\n/** Document administrative metadata */\nexport interface DocumentAdministrativeMetadataOutput {\n /** List of procedure information associated with the document. */\n orderedProcedures?: Array<OrderedProcedureOutput>;\n /** Reference to the encounter associated with the document. */\n encounterId?: string;\n}\n\n/** Procedure information */\nexport interface OrderedProcedureOutput {\n /** Procedure code */\n code?: CodeableConceptOutput;\n /** Procedure description */\n description?: string;\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n}\n\n/** The content of the patient document. */\nexport interface DocumentContentOutput {\n /**\n * The type of the content's source.\n * In case the source type is 'inline', the content is given as a string (for instance, text).\n * In case the source type is 'reference', the content is given as a URI.\n *\n * Possible values: \"inline\", \"reference\"\n */\n sourceType: DocumentContentSourceTypeOutput;\n /** The content of the document, given either inline (as a string) or as a reference (URI). */\n value: string;\n}\n\n/** Configuration affecting the Radiology Insights model's inference. */\nexport interface RadiologyInsightsModelConfigurationOutput {\n /** An indication whether the model should produce verbose output. */\n verbose?: boolean;\n /** An indication whether the model's output should include evidence for the inferences. */\n includeEvidence?: boolean;\n /** This is a list of inference types to be inferred for the current request. It could be used if only part of the Radiology Insights inferences are required. If this list is omitted or empty, the model will return all the inference types. */\n inferenceTypes?: RadiologyInsightsInferenceTypeOutput[];\n /** Options regarding follow up recommendation inferences and finding inferences. */\n inferenceOptions?: RadiologyInsightsInferenceOptionsOutput;\n /** Local for the model to use. If not specified, the model will use the default locale. */\n locale?: string;\n}\n\n/** Options regarding follow up recommendation inferences and finding inferences. */\nexport interface RadiologyInsightsInferenceOptionsOutput {\n /** Follow-up recommendation options. */\n followupRecommendationOptions?: FollowupRecommendationOptionsOutput;\n /** Finding options. */\n findingOptions?: FindingOptionsOutput;\n /** Guidance options. */\n guidanceOptions?: GuidanceOptionsOutput;\n /** QualityMeasureOptions. */\n qualityMeasureOptions?: QualityMeasureOptionsOutput;\n}\n\n/** Follow-up recommendation options. */\nexport interface FollowupRecommendationOptionsOutput {\n /** Include/Exclude follow-up recommendations without a specific radiology procedure. Default is false. */\n includeRecommendationsWithNoSpecifiedModality?: boolean;\n /** Include/Exclude follow-up recommendations in references to a guideline or article. Default is false. */\n includeRecommendationsInReferences?: boolean;\n /** If this is true, provide one or more sentences as evidence for the recommendation, next to the token evidence. The start and end positions of these sentences will be put in an extension with url 'modality_sentences'. Default is false. */\n provideFocusedSentenceEvidence?: boolean;\n}\n\n/** Finding options. */\nexport interface FindingOptionsOutput {\n /** If this is true, provide the sentence that contains the first token of the finding's clinical indicator (i.e. the medical problem), if there is one. This sentence is provided as an extension with url 'ci_sentence', next to the token evidence. Default is false. */\n provideFocusedSentenceEvidence?: boolean;\n}\n\n/** Guidance options. */\nexport interface GuidanceOptionsOutput {\n /** If this is true, also show guidances from a clinical history section i.e. if the first token of the associated finding's clinical indicator is in this section. Default is false. */\n showGuidanceInHistory: boolean;\n}\n\n/** Quality Measure Options. */\nexport interface QualityMeasureOptionsOutput {\n /** Id(s) of the MIPS measures that need to be evaluated in the document */\n measureTypes: QualityMeasureTypeOutput[];\n}\n\n/** The inference results for the Radiology Insights request. If field 'status' has value 'succeeded', then field 'result' will contain an instance of RadiologyInsightsInferenceResult. */\nexport interface RadiologyInsightsInferenceResultOutput {\n /** Results for the patients given in the request. */\n patientResults: Array<RadiologyInsightsPatientResultOutput>;\n /** The version of the model used for inference, expressed as the model date. */\n modelVersion: string;\n}\n\n/** Results of the model's work for a single patient. */\nexport interface RadiologyInsightsPatientResultOutput {\n /** Identifier given for the patient in the request. */\n patientId: string;\n /** The model's inferences for the given patient. */\n inferences: Array<RadiologyInsightsInferenceOutput>;\n}\n\n/**\n * An inference made by the Radiology Insights model regarding a patient.\n * - AgeMismatch\n * - SexMismatch\n * - LateralityDiscrepancy\n * - CompleteOrderDiscrepancy\n * - LimitedOrderDiscrepancy\n * - Finding\n * - CriticalResult\n * - FollowupRecommendation\n * - RadiologyProcedure\n * - FollowupCommunication\n * - ScoringAndAssessment\n * - Guidance\n * - QualityMeasure\n */\n\n/** An inference made by the Radiology Insights model regarding a patient: AgeMismatch, SexMismatch, LateralityDiscrepancy, CompleteOrderDiscrepancy, LimitedOrderDiscrepancy, Finding, CriticalResult, FollowupRecommendation, RadiologyProcedure, FollowupCommunicatio */\nexport interface RadiologyInsightsInferenceOutputParent {\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n /** The kind of inference*/\n kind: string;\n}\n\n/** A notification for age mismatch is displayed when the age mentioned in a document for a specific patient does not match the age specified in the patient information. */\nexport interface AgeMismatchInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"ageMismatch\";\n}\n\n/** A notification for a sex mismatch is displayed when the gender, personal pronouns, gender-related body parts, or gender-related procedures mentioned in a patient's clinical document are either inconsistent or do not match the gender specified in the patient information. */\nexport interface SexMismatchInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"sexMismatch\";\n /** Sex indication : SNOMED CT code for gender finding. */\n sexIndication: CodeableConceptOutput;\n}\n\n/** A laterality mismatch occurs when there is a discrepancy between the clinical documentation and the ordered procedure (orderLateralityMismatch), a contradiction within the clinical document (textLateralityContradiction), or when no laterality is mentioned (textLateralityMissing). */\nexport interface LateralityDiscrepancyInferenceOutput\n extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"lateralityDiscrepancy\";\n /** Laterality indication : SNOMED CT code for laterality qualifier value. */\n lateralityIndication?: CodeableConceptOutput;\n /**\n * Mismatch type : orderLateralityMismatch, textLateralityContradiction, textLateralityMissing.\n *\n * Possible values: \"orderLateralityMismatch\", \"textLateralityContradiction\", \"textLateralityMissing\"\n */\n discrepancyType: LateralityDiscrepancyTypeOutput;\n}\n\n/** A complete order discrepancy is shown when one or more body parts and/or measurements that should be in the document (because there is a complete order) are not present. */\nexport interface CompleteOrderDiscrepancyInferenceOutput\n extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"completeOrderDiscrepancy\";\n /** Order type : CPT ultrasound complete code for abdomen, retroperitoneal, pelvis or breast. */\n orderType: CodeableConceptOutput;\n /** List of missing body parts required by a complete order : SNOMED CT codes. */\n missingBodyParts?: Array<CodeableConceptOutput>;\n /** List of missing body parts that require measurement by a complete order : SNOMED CT codes. */\n missingBodyPartMeasurements?: Array<CodeableConceptOutput>;\n}\n\n/** A limited order discrepancy occurs when there is a limited order, but all body parts and measurements that are needed for a complete order are present in the document. */\nexport interface LimitedOrderDiscrepancyInferenceOutput\n extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"limitedOrderDiscrepancy\";\n /** Order type : CPT ultrasound complete code for abdomen, retroperitoneal, pelvis or breast. */\n orderType: CodeableConceptOutput;\n /** List of body parts found in the document : SNOMED CT codes. */\n presentBodyParts?: Array<CodeableConceptOutput>;\n /** List of body parts that are measured according to the document : SNOMED CT codes. */\n presentBodyPartMeasurements?: Array<CodeableConceptOutput>;\n}\n\n/** Findings in a radiology report typically describe abnormalities, lesions, or other notable observations related to the anatomy or pathology of the imaged area. */\nexport interface FindingInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"finding\";\n /** Finding data : contains extensions, fields and components linked with the finding. */\n finding: ObservationOutput;\n}\n\n/** Critical results refer to findings of utmost importance that may require timely attention due to their potential impact on patient care. */\nexport interface CriticalResultInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"criticalResult\";\n /** The complete Critical Result, as outlined below, will be reused for the recommendation. */\n result: CriticalResultOutput;\n}\n\n/** Critical Result consists of two properties. */\nexport interface CriticalResultOutput {\n /** Description : medical problem. */\n description: string;\n /** Finding linked to the critical result. */\n finding?: ObservationOutput;\n}\n\n/** Radiology procedures are the specific imaging studies or examinations ordered for the patient, extracted from the document information and text. */\nexport interface RadiologyProcedureInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"radiologyProcedure\";\n /** LOINC codes for the procedure. */\n procedureCodes?: Array<CodeableConceptOutput>;\n /** Imaging procedures. */\n imagingProcedures: Array<ImagingProcedureOutput>;\n /** Ordered procedure information from the document information or text. */\n orderedProcedure: OrderedProcedureOutput;\n}\n\n/** Imaging procedure. */\nexport interface ImagingProcedureOutput {\n /** Modality : SNOMED CT code. */\n modality: CodeableConceptOutput;\n /** Anatomy : SNOMED CT code. */\n anatomy: CodeableConceptOutput;\n /** Laterality : SNOMED CT code. */\n laterality?: CodeableConceptOutput;\n /** Contrast : see RadiologyCodeWithTypes (below). */\n contrast?: RadiologyCodeWithTypesOutput;\n /** View : see RadiologyCodeWithTypes (below). */\n view?: RadiologyCodeWithTypesOutput;\n}\n\n/** Radiology code with types : used in imaging procedure recommendation for contrast and view. */\nexport interface RadiologyCodeWithTypesOutput {\n /** The SNOMED CT code indicates whether imaging was conducted with or without contrast in the case of contrast, and in the case of views, it denotes the number of views. */\n code: CodeableConceptOutput;\n /** The collection of types will indicate the contrast substance used in the case of contrast and, in the case of views, it will specify the types of views, such as lateral and frontal, etc. */\n types: Array<CodeableConceptOutput>;\n}\n\n/** Follow-up recommendations offer guidance to healthcare providers on managing and monitoring patients based on the findings of imaging studies. */\nexport interface FollowupRecommendationInferenceOutput\n extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"followupRecommendation\";\n /** Date and time are displayed when the procedure is recommended to be done at a specific point in time. */\n effectiveAt?: string;\n /** The period is shown if a specific period is mentioned, with a start and end date-time. */\n effectivePeriod?: PeriodOutput;\n /** Findings related to the recommendation. */\n findings?: Array<RecommendationFindingOutput>;\n /** The conditional value indicates whether or not the sentence containing the recommendation includes a conditional statement. Keywords for conditional statements include 'if', 'when', 'unless', and so on. */\n isConditional: boolean;\n /** The option value indicates whether or not the sentence containing the recommendation includes an optional statement. Keywords for optional statements include 'recommend', 'consider', and so on. */\n isOption: boolean;\n /** The guideline value indicates whether or not the recommendation is part of a guideline section that compiles all recommendations applicable to various findings. */\n isGuideline: boolean;\n /** Hedging refers to ambiguous, vague or imprecise language within the sentence of the recommendation. Keywords for hedging are 'can be','may be',and so on. */\n isHedging: boolean;\n /** The procedure recommendation can be a generic procedure or an imaging procedure. */\n recommendedProcedure: ProcedureRecommendationOutput;\n}\n\n/** Finding reference for recommendation. */\nexport interface RecommendationFindingOutput {\n /** Finding linked to a recommendation. */\n finding?: ObservationOutput;\n /** Critical result linked to a recommendation. */\n criticalFinding?: CriticalResultOutput;\n /**\n * Recommendation finding status.\n *\n * Possible values: \"present\", \"differential\", \"ruleOut\", \"conditional\"\n */\n recommendationFindingStatus: RecommendationFindingStatusTypeOutput;\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n}\n\n/** The procedure recommendation can be a generic procedure or an imaging procedure. */\nexport interface ProcedureRecommendationOutputParent {\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n /** The kind of procedure recommendation eg. generic or imaging */\n kind: string;\n}\n\n/** Generic procedure information. */\nexport interface GenericProcedureRecommendationOutput extends ProcedureRecommendationOutputParent {\n /** Procedure type : generic. */\n kind: \"genericProcedureRecommendation\";\n /** Procedure modality : SNOMED CT code. */\n code: CodeableConceptOutput;\n /** Procedure description : MANAGEMENT PROCEDURE (PROCEDURE) or CONSULTATION (PROCEDURE) based on SNOMED CT. */\n description?: string;\n}\n\n/** Imaging procedures. */\nexport interface ImagingProcedureRecommendationOutput extends ProcedureRecommendationOutputParent {\n /** Procedure type : imaging. */\n kind: \"imagingProcedureRecommendation\";\n /** LOINC codes for the procedure. */\n procedureCodes?: Array<CodeableConceptOutput>;\n /** Imaging procedures. */\n imagingProcedures: Array<ImagingProcedureOutput>;\n}\n\n/** Follow-up communication involves the exchange of important information, recommendations, or updates between radiologists and other healthcare professionals involved in a patient's care. */\nexport interface FollowupCommunicationInferenceOutput\n extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"followupCommunication\";\n /** Communication date and time. */\n communicatedAt?: string[];\n /** Recipient of the communication. */\n recipient?: MedicalProfessionalTypeOutput[];\n /** Communication was acknowledged. */\n wasAcknowledged: boolean;\n}\n\n/** Identifies and highlights Risk, Scoring, Assessment and Classifications and correspondent values dictated in a report, e.g. 'BIRADS 5' */\nexport interface ScoringAndAssessmentInferenceOutput\n extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"scoringAndAssessment\";\n /**\n * Category, e.g. BIRADS\n *\n * Possible values: \"BIRADS\", \"C-RADS COLONIC FINDINGS\", \"CAD-RADS\", \"LI-RADS\", \"LUNG-RADS\", \"NI-RADS\", \"O-RADS\", \"PI-RADS\", \"TI-RADS\", \"C-RADS EXTRACOLONIC FINDINGS\", \"LIFETIME BREAST CANCER RISK\", \"ASCVD RISK\", \"MODIFIED GAIL MODEL RISK\", \"TYRER CUSICK MODEL RISK\", \"AGATSTON SCORE\", \"10 YEAR CHD RISK\", \"Z-SCORE\", \"T-SCORE\", \"CALCIUM VOLUME SCORE\", \"US LI-RADS VISUALIZATION SCORE\", \"US LI-RADS\", \"CEUS LI-RADS\", \"TREATMENT RESPONSE LI-RADS\", \"O-RADS MRI\", \"CALCIUM MASS SCORE\", \"RISK OF MALIGNANCY INDEX\", \"HNPCC MUTATION RISK\", \"ALBERTA STROKE PROGRAM EARLY CT SCORE\", \"KELLGREN-LAWRENCE GRADING SCALE\", \"TONNIS CLASSIFICATION\", \"CALCIUM SCORE (UNSPECIFIED)\", \"10 YEAR CHD RISK (OBSERVED AGE)\", \"10 YEAR CHD RISK (ARTERIAL AGE)\", \"FRAX SCORE\"\n */\n category: ScoringAndAssessmentCategoryTypeOutput;\n /** The expansion of the category (which is an abbreviation.) */\n categoryDescription: string;\n /** The value. If the value is a range, use field valueRange. */\n singleValue?: string;\n /** The range. */\n rangeValue?: AssessmentValueRangeOutput;\n}\n\n/** A range of values. */\nexport interface AssessmentValueRangeOutput {\n /** The minimum value. */\n minimum: string;\n /** The maximum value. */\n maximum: string;\n}\n\n/** A guidance inference collects structured information about a specific finding in the report and can possibly propose appropriate follow-up recommendations, based upon established, evidence-based best practices i.e. ACR guidelines. */\nexport interface GuidanceInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"guidance\";\n /** The finding associated with the guidance. */\n finding: FindingInferenceOutput;\n /** The guidance identifier, as a concept */\n identifier: CodeableConceptOutput;\n /** presentGuidanceInformation lists each item of the structured information (e.g. laterality) and corresponding details (left, right, bilateral) that is present in the document. */\n presentGuidanceInformation?: Array<PresentGuidanceInformationOutput>;\n /**\n * See doc of GuidanceRankingType.\n *\n * Possible values: \"high\", \"low\"\n */\n ranking: GuidanceRankingTypeOutput;\n /** The proposed follow-up recommendations, if any. If this is filled, missingGuidanceInformation cannot be filled (and vice versa). */\n recommendationProposals?: Array<FollowupRecommendationInferenceOutput>;\n /** Contains all missing items that are needed to determine follow-up. */\n missingGuidanceInformation?: string[];\n}\n\n/** An item of the structured information (e.g. laterality or size) and one or more corresponding details (e.g. left or size-value) */\nexport interface PresentGuidanceInformationOutput {\n /** The item of the structured information */\n presentGuidanceItem: string;\n /** A list of size values, if the item is about size. */\n sizes?: Array<ObservationOutput>;\n /** The maximum diameter value, if the item is about the maximum diameter. */\n maximumDiameterAsInText?: QuantityOutput;\n /** The list of item values that are mentioned in the report. */\n presentGuidanceValues?: string[];\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n}\n\n/** A QualityMeasure inference captures the MIPS ('measure based incentive payment system') quality measure criteria in the document that are used to measure the data completeness. */\nexport interface QualityMeasureInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"qualityMeasure\";\n /** The denominator, which identifies the QualityMeasure kind. */\n qualityMeasureDenominator: string;\n /**\n * The ComplianceType indicates whether the document is compliant for the specified QualityMeasure or not, or if exceptions apply.\n *\n * Possible values: \"notEligible\", \"performanceNotMet\", \"performanceMet\", \"denominatorException\"\n */\n complianceType: QualityMeasureComplianceTypeOutput;\n /** List of quality criteria identified in the document, if any. */\n qualityCriteria?: string[];\n}\n\n/** A response containing error details. */\nexport interface HealthInsightsErrorResponseOutput {\n /** The error object. */\n error: ErrorModel;\n}\n\n/**\n * A resource with narrative, extensions, and contained resources\n * Based on [FHIR DomainResource](https://www.hl7.org/fhir/domainresource.html)\n */\nexport type DomainResourceOutput =\n | DomainResourceOutputParent\n | ObservationOutput\n | ConditionOutput\n | ResearchStudyOutput;\n/**\n * An inference made by the Radiology Insights model regarding a patient.\n * - AgeMismatch\n * - SexMismatch\n * - LateralityDiscrepancy\n * - CompleteOrderDiscrepancy\n * - LimitedOrderDiscrepancy\n * - Finding\n * - CriticalResult\n * - FollowupRecommendation\n * - RadiologyProcedure\n * - FollowupCommunication\n * - ScoringAndAssessment\n * - Guidance\n * - QualityMeasure\n */\nexport type RadiologyInsightsInferenceOutput =\n | RadiologyInsightsInferenceOutputParent\n | AgeMismatchInferenceOutput\n | SexMismatchInferenceOutput\n | LateralityDiscrepancyInferenceOutput\n | CompleteOrderDiscrepancyInferenceOutput\n | LimitedOrderDiscrepancyInferenceOutput\n | FindingInferenceOutput\n | CriticalResultInferenceOutput\n | RadiologyProcedureInferenceOutput\n | FollowupRecommendationInferenceOutput\n | FollowupCommunicationInferenceOutput\n | ScoringAndAssessmentInferenceOutput\n | GuidanceInferenceOutput\n | QualityMeasureInferenceOutput;\n/** The procedure recommendation can be a generic procedure or an imaging procedure. */\nexport type ProcedureRecommendationOutput =\n | ProcedureRecommendationOutputParent\n | GenericProcedureRecommendationOutput\n | ImagingProcedureRecommendationOutput;\n/** Alias for PatientSexOutput */\nexport type PatientSexOutput = string;\n/** Alias for ContactPointSystemOutput */\nexport type ContactPointSystemOutput = string;\n/** Alias for ContactPointUseOutput */\nexport type ContactPointUseOutput = string;\n/** Alias for ObservationStatusCodeTypeOutput */\nexport type ObservationStatusCodeTypeOutput = string;\n/** Alias for ResearchStudyStatusCodeTypeOutput */\nexport type ResearchStudyStatusCodeTypeOutput = string;\n/** Alias for EncounterClassOutput */\nexport type EncounterClassOutput = string;\n/** Alias for DocumentTypeOutput */\nexport type DocumentTypeOutput = string;\n/** Alias for ClinicalDocumentTypeOutput */\nexport type ClinicalDocumentTypeOutput = string;\n/** Alias for SpecialtyTypeOutput */\nexport type SpecialtyTypeOutput = string;\n/** Alias for DocumentContentSourceTypeOutput */\nexport type DocumentContentSourceTypeOutput = string;\n/** Alias for RadiologyInsightsInferenceTypeOutput */\nexport type RadiologyInsightsInferenceTypeOutput = string;\n/** Alias for QualityMeasureTypeOutput */\nexport type QualityMeasureTypeOutput = string;\n/** Alias for LateralityDiscrepancyTypeOutput */\nexport type LateralityDiscrepancyTypeOutput = string;\n/** Alias for RecommendationFindingStatusTypeOutput */\nexport type RecommendationFindingStatusTypeOutput = string;\n/** Alias for MedicalProfessionalTypeOutput */\nexport type MedicalProfessionalTypeOutput = string;\n/** Alias for ScoringAndAssessmentCategoryTypeOutput */\nexport type ScoringAndAssessmentCategoryTypeOutput = string;\n/** Alias for GuidanceRankingTypeOutput */\nexport type GuidanceRankingTypeOutput = string;\n/** Alias for QualityMeasureComplianceTypeOutput */\nexport type QualityMeasureComplianceTypeOutput = string;\n/** Alias for JobStatusOutput */\nexport type JobStatusOutput = string;\n"]}
1
+ {"version":3,"file":"outputModels.js","sourceRoot":"","sources":["../../src/outputModels.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { ErrorModel } from \"@azure-rest/core-client\";\n\n/** Response for the Radiology Insights request. */\nexport interface RadiologyInsightsJobOutput {\n /** The request data for the operation. */\n jobData?: RadiologyInsightsDataOutput;\n /** The result of the operation. */\n readonly result?: RadiologyInsightsInferenceResultOutput;\n /** The unique ID of the job. */\n readonly id: string;\n /**\n * The status of the job.\n *\n * Possible values: \"notStarted\", \"running\", \"succeeded\", \"failed\", \"canceled\"\n */\n readonly status: JobStatusOutput;\n /** The date and time when the processing job was created. */\n readonly createdAt?: string;\n /** The date and time when the processing job is set to expire. */\n readonly expiresAt?: string;\n /** The date and time when the processing job was last updated. */\n readonly updatedAt?: string;\n /** Error object that describes the error when status is \"Failed\". */\n readonly error?: ErrorModel;\n}\n\n/** Contains the list of patients, and configuration data. */\nexport interface RadiologyInsightsDataOutput {\n /** The list of patients, including their clinical information and data. */\n patients: Array<PatientRecordOutput>;\n /** Configuration affecting the Radiology Insights model's inference. */\n configuration?: RadiologyInsightsModelConfigurationOutput;\n}\n\n/** A patient record, including their clinical information and data. */\nexport interface PatientRecordOutput {\n /** A given identifier for the patient. Has to be unique across all patients in a single request. */\n id: string;\n /** Patient structured information, including demographics and known structured clinical information. */\n details?: PatientDetailsOutput;\n /** Patient encounters/visits. */\n encounters?: Array<PatientEncounterOutput>;\n /** Patient unstructured clinical data, given as documents. */\n patientDocuments?: Array<PatientDocumentOutput>;\n}\n\n/** Patient structured information, including demographics and known structured clinical information. */\nexport interface PatientDetailsOutput {\n /**\n * The patient's sex.\n *\n * Possible values: \"female\", \"male\", \"unspecified\"\n */\n sex?: PatientSexOutput;\n /** The patient's date of birth. */\n birthDate?: string;\n /** Known clinical information for the patient, structured. */\n clinicalInfo?: Array<ResourceOutput>;\n}\n\n/**\n * Resource is the ancestor of DomainResource from which most resources are derived. Bundle, Parameters, and Binary extend Resource directly.\n * Based on [FHIR Resource](https://www.hl7.org/fhir/r4/resource.html\n */\nexport interface ResourceOutput extends Record<string, any> {\n /** The type of resource */\n resourceType: string;\n /** Resource Id */\n id?: string;\n /** Metadata about the resource */\n meta?: MetaOutput;\n /** A set of rules under which this content was created */\n implicitRules?: string;\n /** Language of the resource content */\n language?: string;\n}\n\n/**\n * Metadata about a resource\n * Based on [FHIR Meta](https://www.hl7.org/fhir/R4/resource.html#Meta)\n */\nexport interface MetaOutput {\n /** The version specific identifier, as it appears in the version portion of the URL. This value changes when the resource is created, updated, or deleted. */\n versionId?: string;\n /** When the resource last changed - e.g. when the version changed. */\n lastUpdated?: string;\n /** A uri that identifies the source system of the resource. This provides a minimal amount of Provenance information that can be used to track or differentiate the source of information in the resource. The source may identify another FHIR server, document, message, database, etc. */\n source?: string;\n /** A list of profiles (references to [StructureDefinition](https://www.hl7.org/fhir/structuredefinition.html) resources) that this resource claims to conform to. The URL is a reference to [StructureDefinition.url](https://www.hl7.org/fhir/structuredefinition-definitions.html#StructureDefinition.url). */\n profile?: string[];\n /** Security labels applied to this resource. These tags connect specific resources to the overall security policy and infrastructure. */\n security?: Array<CodingOutput>;\n /** Tags applied to this resource. Tags are intended to be used to identify and relate resources to process and workflow, and applications are not required to consider the tags when interpreting the meaning of a resource. */\n tag?: Array<CodingOutput>;\n}\n\n/**\n * A Coding is a representation of a defined concept using a symbol from a defined \"code system\".\n * Based on [FHIR Coding](https://www.hl7.org/fhir/R4/datatypes.html#Coding)\n */\nexport interface CodingOutput extends ElementOutput {\n /** Identity of the terminology system */\n system?: string;\n /** Version of the system - if relevant */\n version?: string;\n /** Symbol in syntax defined by the system */\n code?: string;\n /** Representation defined by the system */\n display?: string;\n}\n\n/**\n * The base definition for all elements contained inside a resource.\n * Based on [FHIR Element](https://www.hl7.org/fhir/R4/element.html)\n */\nexport interface ElementOutput {\n /** Unique id for inter-element referencing */\n id?: string;\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n}\n\n/**\n * Base for all elements\n * Based on [FHIR Element](https://www.hl7.org/fhir/R4/element.html)\n */\nexport interface ExtensionOutput extends ElementOutput {\n /** Source of the definition for the extension code - a logical name or a URL. */\n url: string;\n /** Value as Quantity */\n valueQuantity?: QuantityOutput;\n /** Value as CodeableConcept */\n valueCodeableConcept?: CodeableConceptOutput;\n /** Value as string */\n valueString?: string;\n /** Value as boolean */\n valueBoolean?: boolean;\n /** Value as integer */\n valueInteger?: number;\n /** Value as Range. */\n valueRange?: RangeOutput;\n /** Value as Ratio. */\n valueRatio?: RatioOutput;\n /** Value as SampledData. */\n valueSampledData?: SampledDataOutput;\n /** Value as time (hh:mm:ss) */\n valueTime?: string;\n /** Value as dateTime. */\n valueDateTime?: string;\n /** Value as Period. */\n valuePeriod?: PeriodOutput;\n /** Value as reference. */\n valueReference?: ReferenceOutput;\n}\n\n/**\n * A measured or measurable amount\n * Based on [FHIR Quantity](https://www.hl7.org/fhir/R4/datatypes.html#Quantity)\n */\nexport interface QuantityOutput extends ElementOutput {\n /** Numerical value (with implicit precision) */\n value?: number;\n /** \\< | \\<= | \\>= | \\> - how to understand the value */\n comparator?: string;\n /** Unit representation */\n unit?: string;\n /** System that defines coded unit form */\n system?: string;\n /** Coded form of the unit */\n code?: string;\n}\n\n/**\n * Concept - reference to a terminology or just text\n * Based on [FHIR CodeableConcept](https://www.hl7.org/fhir/R4/datatypes.html#CodeableConcept)\n */\nexport interface CodeableConceptOutput extends ElementOutput {\n /** Code defined by a terminology system */\n coding?: Array<CodingOutput>;\n /** Plain text representation of the concept */\n text?: string;\n}\n\n/**\n * A set of ordered Quantities defined by a low and high limit\n * Based on [FHIR Range](https://www.hl7.org/fhir/R4/datatypes.html#Range)\n */\nexport interface RangeOutput extends ElementOutput {\n /** Low limit */\n low?: QuantityOutput;\n /** High limit */\n high?: QuantityOutput;\n}\n\n/**\n * A ratio of two Quantity values - a numerator and a denominator\n * Based on [FHIR Ratio](https://www.hl7.org/fhir/R4/datatypes.html#Ratio)\n */\nexport interface RatioOutput extends ElementOutput {\n /** Numerator value */\n numerator?: QuantityOutput;\n /** Denominator value */\n denominator?: QuantityOutput;\n}\n\n/**\n * A series of measurements taken by a device\n * Based on [FHIR SampledData](https://www.hl7.org/fhir/R4/datatypes.html#SampledData)\n */\nexport interface SampledDataOutput extends ElementOutput {\n /** Zero value and units */\n origin: QuantityOutput;\n /** Number of milliseconds between samples */\n period: number;\n /** Multiply data by this before adding to origin */\n factor?: number;\n /** Lower limit of detection */\n lowerLimit?: number;\n /** Upper limit of detection */\n upperLimit?: number;\n /** Number of sample points at each time point */\n dimensions: number;\n /** Decimal values with spaces, or \"E\" | \"U\" | \"L\" */\n data?: string;\n}\n\n/**\n * A time period defined by a start and end date and optionally time\n * Based on [FHIR Period](https://www.hl7.org/fhir/R4/datatypes.html#Period)\n */\nexport interface PeriodOutput extends ElementOutput {\n /** Starting time with inclusive boundary */\n start?: string;\n /** End time with inclusive boundary, if not ongoing */\n end?: string;\n}\n\n/**\n * A reference from one resource to another\n * Based on [FHIR Reference](https://www.hl7.org/fhir/R4/references.html)\n */\nexport interface ReferenceOutput extends ElementOutput {\n /** Literal reference, Relative, internal or absolute URL */\n reference?: string;\n /** Type the reference refers to (e.g. \"Patient\") */\n type?: string;\n /** Logical reference, when literal reference is not known */\n identifier?: IdentifierOutput;\n /** Text alternative for the resource */\n display?: string;\n}\n\n/**\n * An identifier intended for computation\n * Based on [FHIR Identifier](https://www.hl7.org/fhir/R4/identifier.html)\n */\nexport interface IdentifierOutput extends ElementOutput {\n /** usual | official | temp | secondary | old (If known) */\n use?: string;\n /** Description of identifier */\n type?: CodeableConceptOutput;\n /** The namespace for the identifier value */\n system?: string;\n /** The value that is unique */\n value?: string;\n /** Time period when id is/was valid for use */\n period?: PeriodOutput;\n /** Organization that issued id (may be just text) */\n assigner?: ReferenceOutput;\n}\n\n/**\n * Any resource that is a [DomainResource](https://www.hl7.org/fhir/domainresource.html) may include a human-readable narrative that contains a summary of the resource and may be used to represent the content of the resource to a human.\n * Based on [FHIR Narrative](https://www.hl7.org/fhir/R4/narrative.html#Narrative)\n */\nexport interface NarrativeOutput extends ElementOutput {\n /** generated, extensions, additional, empty */\n status: string;\n /** xhtml */\n div: string;\n}\n\n/**\n * A text note which also contains information about who made the statement and when\n * Based on [FHIR Annotation](https://www.hl7.org/fhir/R4/datatypes.html#Annotation)\n */\nexport interface AnnotationOutput extends ElementOutput {\n /** Individual responsible for the annotation */\n authorString?: string;\n /** When the annotation was made */\n time?: string;\n /** The annotation - text content (as markdown) */\n text: string;\n}\n\n/**\n * Component results\n * Based on [FHIR Observation.component](https://www.hl7.org/fhir/R4/observation.html)\n */\nexport interface ObservationComponentOutput extends ElementOutput {\n /** Type of component observation (code / type) */\n code: CodeableConceptOutput;\n /** Value as Quantity */\n valueQuantity?: QuantityOutput;\n /** Value as CodeableConcept */\n valueCodeableConcept?: CodeableConceptOutput;\n /** Value as string */\n valueString?: string;\n /** Value as boolean */\n valueBoolean?: boolean;\n /** Value as integer */\n valueInteger?: number;\n /** Value as Range. */\n valueRange?: RangeOutput;\n /** Value as Ratio. */\n valueRatio?: RatioOutput;\n /** Value as SampledData. */\n valueSampledData?: SampledDataOutput;\n /** Value as time (hh:mm:ss) */\n valueTime?: string;\n /** Value as dateTime. */\n valueDateTime?: string;\n /** Value as Period. */\n valuePeriod?: PeriodOutput;\n /** Value as reference. */\n valueReference?: ReferenceOutput;\n /** Why the component result is missing */\n dataAbsentReason?: CodeableConceptOutput;\n /** High, low, normal, etc. */\n interpretation?: Array<CodeableConceptOutput>;\n /** Provides guide for interpretation of component result */\n referenceRange?: Array<ObservationReferenceRangeOutput>;\n}\n\n/**\n * Provides guide for interpretation of component result\n * Based on [FHIR Observation.referenceRange](https://www.hl7.org/fhir/R4/observation.html)\n */\nexport interface ObservationReferenceRangeOutput {\n /** Low Range, if relevant */\n low?: QuantityOutput;\n /** High Range, if relevant */\n high?: QuantityOutput;\n /** Reference range qualifier */\n type?: CodeableConceptOutput;\n /** Reference range population */\n appliesTo?: Array<CodeableConceptOutput>;\n /** Applicable age range, if relevant */\n age?: RangeOutput;\n /** Text based reference range in an observation */\n text?: string;\n}\n\n/** Contact details (See: https://www.hl7.org/fhir/R4/metadatatypes.html#ContactDetail) */\nexport interface ContactDetailOutput extends ElementOutput {\n /** Name of an individual to contact */\n name?: string;\n /** Contact details for individual or organization */\n telecom?: Array<ContactPointOutput>;\n}\n\n/**\n * Details for all kinds of technology mediated contact points for a person or organization, including telephone, email, etc.\n * See https://www.hl7.org/fhir/R4/datatypes.html#ContactPoint\n */\nexport interface ContactPointOutput {\n /**\n * phone | fax | email | pager | url | sms | other\n *\n * Possible values: \"phone\", \"fax\", \"email\", \"pager\", \"url\", \"sms\", \"other\"\n */\n system?: ContactPointSystemOutput;\n /** The actual contact point details */\n value?: string;\n /**\n * home | work | temp | old | mobile - purpose of this contact point\n *\n * Possible values: \"home\", \"work\", \"temp\", \"old\", \"mobile\"\n */\n use?: ContactPointUseOutput;\n /** Specify preferred order of use (1 = highest) */\n rank?: number;\n /** Time period when the contact point was/is in use */\n period?: PeriodOutput;\n}\n\n/** A resource with narrative, extensions, and contained resources Based on [FHIR DomainResource](https://www.hl7.org/fhir/domainresource.html) */\nexport interface DomainResourceOutputParent extends ResourceOutput {\n /** Contained, inline Resources */\n contained?: Array<ResourceOutput>;\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n /** Extensions that cannot be ignored */\n modifierExtension?: Array<ExtensionOutput>;\n /** resourceType */\n resourceType: string;\n /** Text summary of the resource, for human interpretation */\n text?: NarrativeOutput;\n}\n\n/**\n * Detailed information about observations\n * Based on [FHIR Observation](https://www.hl7.org/fhir/R4/observation.html)\n */\nexport interface ObservationOutput extends DomainResourceOutputParent {\n /** resourceType */\n resourceType: \"Observation\";\n /** Business Identifier for observation */\n identifier?: Array<IdentifierOutput>;\n /**\n * registered | preliminary | final | amended +\n *\n * Possible values: \"registered\", \"preliminary\", \"final\", \"amended\", \"corrected\", \"cancelled\", \"entered-in-error\", \"unknown\"\n */\n status: ObservationStatusCodeTypeOutput;\n /** Classification of type of observation */\n category?: Array<CodeableConceptOutput>;\n /** Type of observation (code / type) */\n code: CodeableConceptOutput;\n /** Who and/or what the observation is about */\n subject?: ReferenceOutput;\n /** Healthcare event during which this observation is made */\n encounter?: ReferenceOutput;\n /** Clinically relevant time/time-period for observation */\n effectiveDateTime?: string;\n /** Clinically relevant time/time-period for observation */\n effectivePeriod?: PeriodOutput;\n /** Clinically relevant time/time-period for observation */\n effectiveInstant?: string;\n /** Date/Time this version was made available */\n issued?: string;\n /** Actual result */\n valueQuantity?: QuantityOutput;\n /** Actual result */\n valueCodeableConcept?: CodeableConceptOutput;\n /** Actual result */\n valueString?: string;\n /** Actual result */\n valueBoolean?: boolean;\n /** Actual result */\n valueInteger?: number;\n /** Actual result */\n valueRange?: RangeOutput;\n /** Actual result */\n valueRatio?: RatioOutput;\n /** Actual result */\n valueSampledData?: SampledDataOutput;\n /** Actual result */\n valueTime?: string;\n /** Actual result */\n valueDateTime?: string;\n /** Actual result */\n valuePeriod?: PeriodOutput;\n /** Why the result is missing */\n dataAbsentReason?: CodeableConceptOutput;\n /** High, low, normal, etc. */\n interpretation?: Array<CodeableConceptOutput>;\n /** Comments about the observation */\n note?: Array<AnnotationOutput>;\n /** Observed body part */\n bodySite?: CodeableConceptOutput;\n /** How it was done */\n method?: CodeableConceptOutput;\n /** Provides guide for interpretation */\n referenceRange?: Array<ObservationReferenceRangeOutput>;\n /** Related resource that belongs to the Observation group */\n hasMember?: Array<ReferenceOutput>;\n /** Related measurements the observation is made from */\n derivedFrom?: Array<ReferenceOutput>;\n /** Component results */\n component?: Array<ObservationComponentOutput>;\n}\n\n/**\n * Detailed information about conditions, problems or diagnoses\n * Based on [FHIR Condition](https://www.hl7.org/fhir/R4/condition.html)\n */\nexport interface ConditionOutput extends DomainResourceOutputParent {\n /** resourceType */\n resourceType: \"Condition\";\n /** External Ids for this condition */\n identifier?: Array<IdentifierOutput>;\n /** active | recurrence | relapse | inactive | remission | resolved */\n clinicalStatus?: CodeableConceptOutput;\n /** unconfirmed | provisional | differential | confirmed | refuted | entered-in-error */\n verificationStatus?: CodeableConceptOutput;\n /** problem-list-item | encounter-diagnosis */\n category?: Array<CodeableConceptOutput>;\n /** Subjective severity of condition */\n severity?: CodeableConceptOutput;\n /** Identification of the condition, problem or diagnosis */\n code?: CodeableConceptOutput;\n /** Anatomical location, if relevant */\n bodySite?: Array<CodeableConceptOutput>;\n /** Encounter created as part of */\n encounter?: ReferenceOutput;\n /** Estimated or actual date, date-time, or age */\n onsetDateTime?: string;\n /** Estimated or actual date, date-time, or age */\n onsetAge?: QuantityOutput;\n /** Estimated or actual date, date-time, or age */\n onsetPeriod?: PeriodOutput;\n /** Estimated or actual date, date-time, or age */\n onsetRange?: RangeOutput;\n /** Estimated or actual date, date-time, or age */\n onsetString?: string;\n /** When in resolution/remission */\n abatementDateTime?: string;\n /** When in resolution/remission */\n abatementAge?: QuantityOutput;\n /** When in resolution/remission */\n abatementPeriod?: PeriodOutput;\n /** When in resolution/remission */\n abatementRange?: RangeOutput;\n /** When in resolution/remission */\n abatementString?: string;\n /** Date record was first recorded */\n recordedDate?: string;\n /** stge/grade, usually assessed formally */\n stage?: Array<ConditionStageOutput>;\n /** Additional information about the Condition */\n note?: Array<AnnotationOutput>;\n}\n\n/**\n * Stage/grade, usually assessed formally\n * Based on [FHIR Condition.Stage](https://www.hl7.org/fhir/R4/condition.html)\n */\nexport interface ConditionStageOutput {\n /** Simple summary (disease specific) */\n summary?: CodeableConceptOutput;\n /** Kind of staging */\n type?: CodeableConceptOutput;\n}\n\n/**\n * Detailed information about Research Study\n * Based on [FHIR ResearchStudy](https://www.hl7.org/fhir/R4/researchstudy.html)\n */\nexport interface ResearchStudyOutput extends DomainResourceOutputParent {\n /** resourceType */\n resourceType: \"ResearchStudy\";\n /** Business Identifier for study */\n identifier?: Array<IdentifierOutput>;\n /** Name for this study */\n title?: string;\n /** Steps followed in executing study */\n protocol?: Array<ReferenceOutput>;\n /** Part of larger study */\n partOf?: Array<ReferenceOutput>;\n /**\n * active | administratively-completed | approved | closed-to-accrual | closed-to-accrual-and-intervention | completed | disapproved | in-review | temporarily-closed-to-accrual | temporarily-closed-to-accrual-and-intervention | withdrawn\n *\n * Possible values: \"active\", \"administratively-completed\", \"approved\", \"closed-to-accrual\", \"closed-to-accrual-and-intervention\", \"completed\", \"disapproved\", \"in-review\", \"temporarily-closed-to-accrual\", \"temporarily-closed-to-accrual-and-intervention\", \"withdrawn\"\n */\n status: ResearchStudyStatusCodeTypeOutput;\n /** treatment | prevention | diagnostic | supportive-care | screening | health-services-research | basic-science | device-feasibility */\n primaryPurposeType?: CodeableConceptOutput;\n /** n-a | early-phase-1 | phase-1 | phase-1-phase-2 | phase-2 | phase-2-phase-3 | phase-3 | phase-4 */\n phase?: CodeableConceptOutput;\n /** Classifications for the study */\n category?: Array<CodeableConceptOutput>;\n /** Drugs, devices, etc. under study */\n focus?: Array<CodeableConceptOutput>;\n /** Condition being studied */\n condition?: Array<CodeableConceptOutput>;\n /** Contact details for the study */\n contact?: Array<ContactDetailOutput>;\n /** Used to search for the study */\n keyword?: Array<CodeableConceptOutput>;\n /** Geographic region(s) for study */\n location?: Array<CodeableConceptOutput>;\n /** What this is study doing */\n description?: string;\n /** Inclusion & exclusion criteria */\n enrollment?: Array<ReferenceOutput>;\n /** When the study began and ended */\n period?: PeriodOutput;\n /** Organization that initiates and is legally responsible for the study */\n sponsor?: ReferenceOutput;\n /** Researcher who oversees multiple aspects of the study */\n principalInvestigator?: ReferenceOutput;\n /** Facility where study activities are conducted */\n site?: Array<ReferenceOutput>;\n /** accrual-goal-met | closed-due-to-toxicity | closed-due-to-lack-of-study-progress | temporarily-closed-per-study-design */\n reasonStopped?: CodeableConceptOutput;\n /** Comments made about the study */\n note?: Array<AnnotationOutput>;\n /** Defined path through the study for a subject */\n arm?: { name: string; type?: CodeableConceptOutput; description?: string }[];\n /** A goal for the study */\n objective?: { name: string; type?: CodeableConceptOutput }[];\n}\n\n/** visit/encounter information */\nexport interface PatientEncounterOutput {\n /** The id of the visit. */\n id: string;\n /**\n * Time period of the visit.\n * In case of admission, use timePeriod.start to indicate the admission time and timePeriod.end to indicate the discharge time.\n */\n period?: TimePeriodOutput;\n /**\n * The class of the encounter.\n *\n * Possible values: \"inpatient\", \"ambulatory\", \"observation\", \"emergency\", \"virtual\", \"healthHome\"\n */\n class?: EncounterClassOutput;\n}\n\n/** A duration of time during which an event is happening */\nexport interface TimePeriodOutput {\n /** Starting time with inclusive boundary */\n start?: string;\n /** End time with inclusive boundary, if not ongoing */\n end?: string;\n}\n\n/** A clinical document related to a patient. Document here is in the wide sense - not just a text document (note). */\nexport interface PatientDocumentOutput {\n /**\n * The type of the patient document, such as 'note' (text document) or 'fhirBundle' (FHIR JSON document).\n *\n * Possible values: \"note\", \"fhirBundle\", \"dicom\", \"genomicSequencing\"\n */\n type: DocumentTypeOutput;\n /**\n * The type of the clinical document.\n *\n * Possible values: \"consultation\", \"dischargeSummary\", \"historyAndPhysical\", \"radiologyReport\", \"procedure\", \"progress\", \"laboratory\", \"pathologyReport\"\n */\n clinicalType?: ClinicalDocumentTypeOutput;\n /** A given identifier for the document. Has to be unique across all documents for a single patient. */\n id: string;\n /** A 2 letter ISO 639-1 representation of the language of the document. */\n language?: string;\n /** The date and time when the document was created. */\n createdAt?: string;\n /** Document author(s) */\n authors?: Array<DocumentAuthorOutput>;\n /**\n * specialty type the document\n *\n * Possible values: \"pathology\", \"radiology\"\n */\n specialtyType?: SpecialtyTypeOutput;\n /** Administrative metadata for the document. */\n administrativeMetadata?: DocumentAdministrativeMetadataOutput;\n /** The content of the patient document. */\n content: DocumentContentOutput;\n}\n\n/** Document author */\nexport interface DocumentAuthorOutput {\n /** author id */\n id?: string;\n /** Text representation of the full name */\n fullName?: string;\n}\n\n/** Document administrative metadata */\nexport interface DocumentAdministrativeMetadataOutput {\n /** List of procedure information associated with the document. */\n orderedProcedures?: Array<OrderedProcedureOutput>;\n /** Reference to the encounter associated with the document. */\n encounterId?: string;\n}\n\n/** Procedure information */\nexport interface OrderedProcedureOutput {\n /** Procedure code */\n code?: CodeableConceptOutput;\n /** Procedure description */\n description?: string;\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n}\n\n/** The content of the patient document. */\nexport interface DocumentContentOutput {\n /**\n * The type of the content's source.\n * In case the source type is 'inline', the content is given as a string (for instance, text).\n * In case the source type is 'reference', the content is given as a URI.\n *\n * Possible values: \"inline\", \"reference\"\n */\n sourceType: DocumentContentSourceTypeOutput;\n /** The content of the document, given either inline (as a string) or as a reference (URI). */\n value: string;\n}\n\n/** Configuration affecting the Radiology Insights model's inference. */\nexport interface RadiologyInsightsModelConfigurationOutput {\n /** An indication whether the model should produce verbose output. */\n verbose?: boolean;\n /** An indication whether the model's output should include evidence for the inferences. */\n includeEvidence?: boolean;\n /** This is a list of inference types to be inferred for the current request. It could be used if only part of the Radiology Insights inferences are required. If this list is omitted or empty, the model will return all the inference types. */\n inferenceTypes?: RadiologyInsightsInferenceTypeOutput[];\n /** Options regarding follow up recommendation inferences and finding inferences. */\n inferenceOptions?: RadiologyInsightsInferenceOptionsOutput;\n /** Local for the model to use. If not specified, the model will use the default locale. */\n locale?: string;\n}\n\n/** Options regarding follow up recommendation inferences and finding inferences. */\nexport interface RadiologyInsightsInferenceOptionsOutput {\n /** Follow-up recommendation options. */\n followupRecommendationOptions?: FollowupRecommendationOptionsOutput;\n /** Finding options. */\n findingOptions?: FindingOptionsOutput;\n /** Guidance options. */\n guidanceOptions?: GuidanceOptionsOutput;\n /** QualityMeasureOptions. */\n qualityMeasureOptions?: QualityMeasureOptionsOutput;\n}\n\n/** Follow-up recommendation options. */\nexport interface FollowupRecommendationOptionsOutput {\n /** Include/Exclude follow-up recommendations without a specific radiology procedure. Default is false. */\n includeRecommendationsWithNoSpecifiedModality?: boolean;\n /** Include/Exclude follow-up recommendations in references to a guideline or article. Default is false. */\n includeRecommendationsInReferences?: boolean;\n /** If this is true, provide one or more sentences as evidence for the recommendation, next to the token evidence. The start and end positions of these sentences will be put in an extension with url 'modality_sentences'. Default is false. */\n provideFocusedSentenceEvidence?: boolean;\n}\n\n/** Finding options. */\nexport interface FindingOptionsOutput {\n /** If this is true, provide the sentence that contains the first token of the finding's clinical indicator (i.e. the medical problem), if there is one. This sentence is provided as an extension with url 'ci_sentence', next to the token evidence. Default is false. */\n provideFocusedSentenceEvidence?: boolean;\n}\n\n/** Guidance options. */\nexport interface GuidanceOptionsOutput {\n /** If this is true, also show guidances from a clinical history section i.e. if the first token of the associated finding's clinical indicator is in this section. Default is false. */\n showGuidanceInHistory: boolean;\n}\n\n/** Quality Measure Options. */\nexport interface QualityMeasureOptionsOutput {\n /** Id(s) of the MIPS measures that need to be evaluated in the document */\n measureTypes: QualityMeasureTypeOutput[];\n}\n\n/** The inference results for the Radiology Insights request. If field 'status' has value 'succeeded', then field 'result' will contain an instance of RadiologyInsightsInferenceResult. */\nexport interface RadiologyInsightsInferenceResultOutput {\n /** Results for the patients given in the request. */\n patientResults: Array<RadiologyInsightsPatientResultOutput>;\n /** The version of the model used for inference, expressed as the model date. */\n modelVersion: string;\n}\n\n/** Results of the model's work for a single patient. */\nexport interface RadiologyInsightsPatientResultOutput {\n /** Identifier given for the patient in the request. */\n patientId: string;\n /** The model's inferences for the given patient. */\n inferences: Array<RadiologyInsightsInferenceOutput>;\n}\n\n/**\n * An inference made by the Radiology Insights model regarding a patient.\n * - AgeMismatch\n * - SexMismatch\n * - LateralityDiscrepancy\n * - CompleteOrderDiscrepancy\n * - LimitedOrderDiscrepancy\n * - Finding\n * - CriticalResult\n * - FollowupRecommendation\n * - RadiologyProcedure\n * - FollowupCommunication\n * - ScoringAndAssessment\n * - Guidance\n * - QualityMeasure\n */\n\n/** An inference made by the Radiology Insights model regarding a patient: AgeMismatch, SexMismatch, LateralityDiscrepancy, CompleteOrderDiscrepancy, LimitedOrderDiscrepancy, Finding, CriticalResult, FollowupRecommendation, RadiologyProcedure, FollowupCommunicatio */\nexport interface RadiologyInsightsInferenceOutputParent {\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n /** The kind of inference*/\n kind: string;\n}\n\n/** A notification for age mismatch is displayed when the age mentioned in a document for a specific patient does not match the age specified in the patient information. */\nexport interface AgeMismatchInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"ageMismatch\";\n}\n\n/** A notification for a sex mismatch is displayed when the gender, personal pronouns, gender-related body parts, or gender-related procedures mentioned in a patient's clinical document are either inconsistent or do not match the gender specified in the patient information. */\nexport interface SexMismatchInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"sexMismatch\";\n /** Sex indication : SNOMED CT code for gender finding. */\n sexIndication: CodeableConceptOutput;\n}\n\n/** A laterality mismatch occurs when there is a discrepancy between the clinical documentation and the ordered procedure (orderLateralityMismatch), a contradiction within the clinical document (textLateralityContradiction), or when no laterality is mentioned (textLateralityMissing). */\nexport interface LateralityDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"lateralityDiscrepancy\";\n /** Laterality indication : SNOMED CT code for laterality qualifier value. */\n lateralityIndication?: CodeableConceptOutput;\n /**\n * Mismatch type : orderLateralityMismatch, textLateralityContradiction, textLateralityMissing.\n *\n * Possible values: \"orderLateralityMismatch\", \"textLateralityContradiction\", \"textLateralityMissing\"\n */\n discrepancyType: LateralityDiscrepancyTypeOutput;\n}\n\n/** A complete order discrepancy is shown when one or more body parts and/or measurements that should be in the document (because there is a complete order) are not present. */\nexport interface CompleteOrderDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"completeOrderDiscrepancy\";\n /** Order type : CPT ultrasound complete code for abdomen, retroperitoneal, pelvis or breast. */\n orderType: CodeableConceptOutput;\n /** List of missing body parts required by a complete order : SNOMED CT codes. */\n missingBodyParts?: Array<CodeableConceptOutput>;\n /** List of missing body parts that require measurement by a complete order : SNOMED CT codes. */\n missingBodyPartMeasurements?: Array<CodeableConceptOutput>;\n}\n\n/** A limited order discrepancy occurs when there is a limited order, but all body parts and measurements that are needed for a complete order are present in the document. */\nexport interface LimitedOrderDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"limitedOrderDiscrepancy\";\n /** Order type : CPT ultrasound complete code for abdomen, retroperitoneal, pelvis or breast. */\n orderType: CodeableConceptOutput;\n /** List of body parts found in the document : SNOMED CT codes. */\n presentBodyParts?: Array<CodeableConceptOutput>;\n /** List of body parts that are measured according to the document : SNOMED CT codes. */\n presentBodyPartMeasurements?: Array<CodeableConceptOutput>;\n}\n\n/** Findings in a radiology report typically describe abnormalities, lesions, or other notable observations related to the anatomy or pathology of the imaged area. */\nexport interface FindingInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"finding\";\n /** Finding data : contains extensions, fields and components linked with the finding. */\n finding: ObservationOutput;\n}\n\n/** Critical results refer to findings of utmost importance that may require timely attention due to their potential impact on patient care. */\nexport interface CriticalResultInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"criticalResult\";\n /** The complete Critical Result, as outlined below, will be reused for the recommendation. */\n result: CriticalResultOutput;\n}\n\n/** Critical Result consists of two properties. */\nexport interface CriticalResultOutput {\n /** Description : medical problem. */\n description: string;\n /** Finding linked to the critical result. */\n finding?: ObservationOutput;\n}\n\n/** Radiology procedures are the specific imaging studies or examinations ordered for the patient, extracted from the document information and text. */\nexport interface RadiologyProcedureInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"radiologyProcedure\";\n /** LOINC codes for the procedure. */\n procedureCodes?: Array<CodeableConceptOutput>;\n /** Imaging procedures. */\n imagingProcedures: Array<ImagingProcedureOutput>;\n /** Ordered procedure information from the document information or text. */\n orderedProcedure: OrderedProcedureOutput;\n}\n\n/** Imaging procedure. */\nexport interface ImagingProcedureOutput {\n /** Modality : SNOMED CT code. */\n modality: CodeableConceptOutput;\n /** Anatomy : SNOMED CT code. */\n anatomy: CodeableConceptOutput;\n /** Laterality : SNOMED CT code. */\n laterality?: CodeableConceptOutput;\n /** Contrast : see RadiologyCodeWithTypes (below). */\n contrast?: RadiologyCodeWithTypesOutput;\n /** View : see RadiologyCodeWithTypes (below). */\n view?: RadiologyCodeWithTypesOutput;\n}\n\n/** Radiology code with types : used in imaging procedure recommendation for contrast and view. */\nexport interface RadiologyCodeWithTypesOutput {\n /** The SNOMED CT code indicates whether imaging was conducted with or without contrast in the case of contrast, and in the case of views, it denotes the number of views. */\n code: CodeableConceptOutput;\n /** The collection of types will indicate the contrast substance used in the case of contrast and, in the case of views, it will specify the types of views, such as lateral and frontal, etc. */\n types: Array<CodeableConceptOutput>;\n}\n\n/** Follow-up recommendations offer guidance to healthcare providers on managing and monitoring patients based on the findings of imaging studies. */\nexport interface FollowupRecommendationInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"followupRecommendation\";\n /** Date and time are displayed when the procedure is recommended to be done at a specific point in time. */\n effectiveAt?: string;\n /** The period is shown if a specific period is mentioned, with a start and end date-time. */\n effectivePeriod?: PeriodOutput;\n /** Findings related to the recommendation. */\n findings?: Array<RecommendationFindingOutput>;\n /** The conditional value indicates whether or not the sentence containing the recommendation includes a conditional statement. Keywords for conditional statements include 'if', 'when', 'unless', and so on. */\n isConditional: boolean;\n /** The option value indicates whether or not the sentence containing the recommendation includes an optional statement. Keywords for optional statements include 'recommend', 'consider', and so on. */\n isOption: boolean;\n /** The guideline value indicates whether or not the recommendation is part of a guideline section that compiles all recommendations applicable to various findings. */\n isGuideline: boolean;\n /** Hedging refers to ambiguous, vague or imprecise language within the sentence of the recommendation. Keywords for hedging are 'can be','may be',and so on. */\n isHedging: boolean;\n /** The procedure recommendation can be a generic procedure or an imaging procedure. */\n recommendedProcedure: ProcedureRecommendationOutput;\n}\n\n/** Finding reference for recommendation. */\nexport interface RecommendationFindingOutput {\n /** Finding linked to a recommendation. */\n finding?: ObservationOutput;\n /** Critical result linked to a recommendation. */\n criticalFinding?: CriticalResultOutput;\n /**\n * Recommendation finding status.\n *\n * Possible values: \"present\", \"differential\", \"ruleOut\", \"conditional\"\n */\n recommendationFindingStatus: RecommendationFindingStatusTypeOutput;\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n}\n\n/** The procedure recommendation can be a generic procedure or an imaging procedure. */\nexport interface ProcedureRecommendationOutputParent {\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n /** The kind of procedure recommendation eg. generic or imaging */\n kind: string;\n}\n\n/** Generic procedure information. */\nexport interface GenericProcedureRecommendationOutput extends ProcedureRecommendationOutputParent {\n /** Procedure type : generic. */\n kind: \"genericProcedureRecommendation\";\n /** Procedure modality : SNOMED CT code. */\n code: CodeableConceptOutput;\n /** Procedure description : MANAGEMENT PROCEDURE (PROCEDURE) or CONSULTATION (PROCEDURE) based on SNOMED CT. */\n description?: string;\n}\n\n/** Imaging procedures. */\nexport interface ImagingProcedureRecommendationOutput extends ProcedureRecommendationOutputParent {\n /** Procedure type : imaging. */\n kind: \"imagingProcedureRecommendation\";\n /** LOINC codes for the procedure. */\n procedureCodes?: Array<CodeableConceptOutput>;\n /** Imaging procedures. */\n imagingProcedures: Array<ImagingProcedureOutput>;\n}\n\n/** Follow-up communication involves the exchange of important information, recommendations, or updates between radiologists and other healthcare professionals involved in a patient's care. */\nexport interface FollowupCommunicationInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"followupCommunication\";\n /** Communication date and time. */\n communicatedAt?: string[];\n /** Recipient of the communication. */\n recipient?: MedicalProfessionalTypeOutput[];\n /** Communication was acknowledged. */\n wasAcknowledged: boolean;\n}\n\n/** Identifies and highlights Risk, Scoring, Assessment and Classifications and correspondent values dictated in a report, e.g. 'BIRADS 5' */\nexport interface ScoringAndAssessmentInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"scoringAndAssessment\";\n /**\n * Category, e.g. BIRADS\n *\n * Possible values: \"BIRADS\", \"C-RADS COLONIC FINDINGS\", \"CAD-RADS\", \"LI-RADS\", \"LUNG-RADS\", \"NI-RADS\", \"O-RADS\", \"PI-RADS\", \"TI-RADS\", \"C-RADS EXTRACOLONIC FINDINGS\", \"LIFETIME BREAST CANCER RISK\", \"ASCVD RISK\", \"MODIFIED GAIL MODEL RISK\", \"TYRER CUSICK MODEL RISK\", \"AGATSTON SCORE\", \"10 YEAR CHD RISK\", \"Z-SCORE\", \"T-SCORE\", \"CALCIUM VOLUME SCORE\", \"US LI-RADS VISUALIZATION SCORE\", \"US LI-RADS\", \"CEUS LI-RADS\", \"TREATMENT RESPONSE LI-RADS\", \"O-RADS MRI\", \"CALCIUM MASS SCORE\", \"RISK OF MALIGNANCY INDEX\", \"HNPCC MUTATION RISK\", \"ALBERTA STROKE PROGRAM EARLY CT SCORE\", \"KELLGREN-LAWRENCE GRADING SCALE\", \"TONNIS CLASSIFICATION\", \"CALCIUM SCORE (UNSPECIFIED)\", \"10 YEAR CHD RISK (OBSERVED AGE)\", \"10 YEAR CHD RISK (ARTERIAL AGE)\", \"FRAX SCORE\"\n */\n category: ScoringAndAssessmentCategoryTypeOutput;\n /** The expansion of the category (which is an abbreviation.) */\n categoryDescription: string;\n /** The value. If the value is a range, use field valueRange. */\n singleValue?: string;\n /** The range. */\n rangeValue?: AssessmentValueRangeOutput;\n}\n\n/** A range of values. */\nexport interface AssessmentValueRangeOutput {\n /** The minimum value. */\n minimum: string;\n /** The maximum value. */\n maximum: string;\n}\n\n/** A guidance inference collects structured information about a specific finding in the report and can possibly propose appropriate follow-up recommendations, based upon established, evidence-based best practices i.e. ACR guidelines. */\nexport interface GuidanceInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"guidance\";\n /** The finding associated with the guidance. */\n finding: FindingInferenceOutput;\n /** The guidance identifier, as a concept */\n identifier: CodeableConceptOutput;\n /** presentGuidanceInformation lists each item of the structured information (e.g. laterality) and corresponding details (left, right, bilateral) that is present in the document. */\n presentGuidanceInformation?: Array<PresentGuidanceInformationOutput>;\n /**\n * See doc of GuidanceRankingType.\n *\n * Possible values: \"high\", \"low\"\n */\n ranking: GuidanceRankingTypeOutput;\n /** The proposed follow-up recommendations, if any. If this is filled, missingGuidanceInformation cannot be filled (and vice versa). */\n recommendationProposals?: Array<FollowupRecommendationInferenceOutput>;\n /** Contains all missing items that are needed to determine follow-up. */\n missingGuidanceInformation?: string[];\n}\n\n/** An item of the structured information (e.g. laterality or size) and one or more corresponding details (e.g. left or size-value) */\nexport interface PresentGuidanceInformationOutput {\n /** The item of the structured information */\n presentGuidanceItem: string;\n /** A list of size values, if the item is about size. */\n sizes?: Array<ObservationOutput>;\n /** The maximum diameter value, if the item is about the maximum diameter. */\n maximumDiameterAsInText?: QuantityOutput;\n /** The list of item values that are mentioned in the report. */\n presentGuidanceValues?: string[];\n /** Additional Content defined by implementations */\n extension?: Array<ExtensionOutput>;\n}\n\n/** A QualityMeasure inference captures the MIPS ('measure based incentive payment system') quality measure criteria in the document that are used to measure the data completeness. */\nexport interface QualityMeasureInferenceOutput extends RadiologyInsightsInferenceOutputParent {\n /** Inference type. */\n kind: \"qualityMeasure\";\n /** The denominator, which identifies the QualityMeasure kind. */\n qualityMeasureDenominator: string;\n /**\n * The ComplianceType indicates whether the document is compliant for the specified QualityMeasure or not, or if exceptions apply.\n *\n * Possible values: \"notEligible\", \"performanceNotMet\", \"performanceMet\", \"denominatorException\"\n */\n complianceType: QualityMeasureComplianceTypeOutput;\n /** List of quality criteria identified in the document, if any. */\n qualityCriteria?: string[];\n}\n\n/** A response containing error details. */\nexport interface HealthInsightsErrorResponseOutput {\n /** The error object. */\n error: ErrorModel;\n}\n\n/**\n * A resource with narrative, extensions, and contained resources\n * Based on [FHIR DomainResource](https://www.hl7.org/fhir/domainresource.html)\n */\nexport type DomainResourceOutput =\n | DomainResourceOutputParent\n | ObservationOutput\n | ConditionOutput\n | ResearchStudyOutput;\n/**\n * An inference made by the Radiology Insights model regarding a patient.\n * - AgeMismatch\n * - SexMismatch\n * - LateralityDiscrepancy\n * - CompleteOrderDiscrepancy\n * - LimitedOrderDiscrepancy\n * - Finding\n * - CriticalResult\n * - FollowupRecommendation\n * - RadiologyProcedure\n * - FollowupCommunication\n * - ScoringAndAssessment\n * - Guidance\n * - QualityMeasure\n */\nexport type RadiologyInsightsInferenceOutput =\n | RadiologyInsightsInferenceOutputParent\n | AgeMismatchInferenceOutput\n | SexMismatchInferenceOutput\n | LateralityDiscrepancyInferenceOutput\n | CompleteOrderDiscrepancyInferenceOutput\n | LimitedOrderDiscrepancyInferenceOutput\n | FindingInferenceOutput\n | CriticalResultInferenceOutput\n | RadiologyProcedureInferenceOutput\n | FollowupRecommendationInferenceOutput\n | FollowupCommunicationInferenceOutput\n | ScoringAndAssessmentInferenceOutput\n | GuidanceInferenceOutput\n | QualityMeasureInferenceOutput;\n/** The procedure recommendation can be a generic procedure or an imaging procedure. */\nexport type ProcedureRecommendationOutput =\n | ProcedureRecommendationOutputParent\n | GenericProcedureRecommendationOutput\n | ImagingProcedureRecommendationOutput;\n/** Alias for PatientSexOutput */\nexport type PatientSexOutput = string;\n/** Alias for ContactPointSystemOutput */\nexport type ContactPointSystemOutput = string;\n/** Alias for ContactPointUseOutput */\nexport type ContactPointUseOutput = string;\n/** Alias for ObservationStatusCodeTypeOutput */\nexport type ObservationStatusCodeTypeOutput = string;\n/** Alias for ResearchStudyStatusCodeTypeOutput */\nexport type ResearchStudyStatusCodeTypeOutput = string;\n/** Alias for EncounterClassOutput */\nexport type EncounterClassOutput = string;\n/** Alias for DocumentTypeOutput */\nexport type DocumentTypeOutput = string;\n/** Alias for ClinicalDocumentTypeOutput */\nexport type ClinicalDocumentTypeOutput = string;\n/** Alias for SpecialtyTypeOutput */\nexport type SpecialtyTypeOutput = string;\n/** Alias for DocumentContentSourceTypeOutput */\nexport type DocumentContentSourceTypeOutput = string;\n/** Alias for RadiologyInsightsInferenceTypeOutput */\nexport type RadiologyInsightsInferenceTypeOutput = string;\n/** Alias for QualityMeasureTypeOutput */\nexport type QualityMeasureTypeOutput = string;\n/** Alias for LateralityDiscrepancyTypeOutput */\nexport type LateralityDiscrepancyTypeOutput = string;\n/** Alias for RecommendationFindingStatusTypeOutput */\nexport type RecommendationFindingStatusTypeOutput = string;\n/** Alias for MedicalProfessionalTypeOutput */\nexport type MedicalProfessionalTypeOutput = string;\n/** Alias for ScoringAndAssessmentCategoryTypeOutput */\nexport type ScoringAndAssessmentCategoryTypeOutput = string;\n/** Alias for GuidanceRankingTypeOutput */\nexport type GuidanceRankingTypeOutput = string;\n/** Alias for QualityMeasureComplianceTypeOutput */\nexport type QualityMeasureComplianceTypeOutput = string;\n/** Alias for JobStatusOutput */\nexport type JobStatusOutput = string;\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"outputModels.d.ts","sourceRoot":"","sources":["../../src/outputModels.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"outputModels.d.ts","sourceRoot":"","sources":["../../src/outputModels.ts"],"names":[],"mappings":"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"}