Merge branch 'master' of github.com:jamesagnew/hapi-fhir
This commit is contained in:
commit
02633e2cc2
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A financial tool for tracking value accrued for a particular purpose. In the healthcare field, used to track charges for a patient, cost centers, etc.
|
||||
*/
|
||||
@ResourceDef(name="Account", profile="http://hl7.org/fhir/Profile/Account")
|
||||
@ResourceDef(name="Account", profile="http://hl7.org/fhir/StructureDefinition/Account")
|
||||
public class Account extends DomainResource {
|
||||
|
||||
public enum AccountStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This resource allows for the definition of some activity to be performed, independent of a particular patient, practitioner, or other performance context.
|
||||
*/
|
||||
@ResourceDef(name="ActivityDefinition", profile="http://hl7.org/fhir/Profile/ActivityDefinition")
|
||||
@ResourceDef(name="ActivityDefinition", profile="http://hl7.org/fhir/StructureDefinition/ActivityDefinition")
|
||||
@ChildOrder(names={"url", "identifier", "version", "name", "title", "status", "experimental", "date", "publisher", "description", "purpose", "usage", "approvalDate", "lastReviewDate", "effectivePeriod", "useContext", "jurisdiction", "topic", "contributor", "contact", "copyright", "relatedArtifact", "library", "kind", "code", "timing[x]", "location", "participant", "product[x]", "quantity", "dosage", "bodySite", "transform", "dynamicValue"})
|
||||
public class ActivityDefinition extends MetadataResource {
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Actual or potential/avoided event causing unintended physical injury resulting from or contributed to by medical care, a research study or other healthcare setting factors that requires additional monitoring, treatment, or hospitalization, or that results in death.
|
||||
*/
|
||||
@ResourceDef(name="AdverseEvent", profile="http://hl7.org/fhir/Profile/AdverseEvent")
|
||||
@ResourceDef(name="AdverseEvent", profile="http://hl7.org/fhir/StructureDefinition/AdverseEvent")
|
||||
public class AdverseEvent extends DomainResource {
|
||||
|
||||
public enum AdverseEventCategory {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Risk of harmful or undesirable, physiological response which is unique to an individual and associated with exposure to a substance.
|
||||
*/
|
||||
@ResourceDef(name="AllergyIntolerance", profile="http://hl7.org/fhir/Profile/AllergyIntolerance")
|
||||
@ResourceDef(name="AllergyIntolerance", profile="http://hl7.org/fhir/StructureDefinition/AllergyIntolerance")
|
||||
public class AllergyIntolerance extends DomainResource {
|
||||
|
||||
public enum AllergyIntoleranceClinicalStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A booking of a healthcare event among patient(s), practitioner(s), related person(s) and/or device(s) for a specific date/time. This may result in one or more Encounter(s).
|
||||
*/
|
||||
@ResourceDef(name="Appointment", profile="http://hl7.org/fhir/Profile/Appointment")
|
||||
@ResourceDef(name="Appointment", profile="http://hl7.org/fhir/StructureDefinition/Appointment")
|
||||
public class Appointment extends DomainResource {
|
||||
|
||||
public enum AppointmentStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection.
|
||||
*/
|
||||
@ResourceDef(name="AppointmentResponse", profile="http://hl7.org/fhir/Profile/AppointmentResponse")
|
||||
@ResourceDef(name="AppointmentResponse", profile="http://hl7.org/fhir/StructureDefinition/AppointmentResponse")
|
||||
public class AppointmentResponse extends DomainResource {
|
||||
|
||||
public enum ParticipantStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A record of an event made for purposes of maintaining a security log. Typical uses include detection of intrusion attempts and monitoring for inappropriate usage.
|
||||
*/
|
||||
@ResourceDef(name="AuditEvent", profile="http://hl7.org/fhir/Profile/AuditEvent")
|
||||
@ResourceDef(name="AuditEvent", profile="http://hl7.org/fhir/StructureDefinition/AuditEvent")
|
||||
public class AuditEvent extends DomainResource {
|
||||
|
||||
public enum AuditEventAction {
|
||||
|
|
|
@ -45,7 +45,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Basic is used for handling concepts not yet defined in FHIR, narrative-only resources that don't map to an existing resource, and custom resources not appropriate for inclusion in the FHIR specification.
|
||||
*/
|
||||
@ResourceDef(name="Basic", profile="http://hl7.org/fhir/Profile/Basic")
|
||||
@ResourceDef(name="Basic", profile="http://hl7.org/fhir/StructureDefinition/Basic")
|
||||
public class Basic extends DomainResource {
|
||||
|
||||
/**
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A binary resource can contain any content, whether text, image, pdf, zip archive, etc.
|
||||
*/
|
||||
@ResourceDef(name="Binary", profile="http://hl7.org/fhir/Profile/Binary")
|
||||
@ResourceDef(name="Binary", profile="http://hl7.org/fhir/StructureDefinition/Binary")
|
||||
public class Binary extends BaseBinary implements IBaseBinary {
|
||||
|
||||
/**
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Record details about the anatomical location of a specimen or body part. This resource may be used when a coded concept does not provide the necessary detail needed for the use case.
|
||||
*/
|
||||
@ResourceDef(name="BodySite", profile="http://hl7.org/fhir/Profile/BodySite")
|
||||
@ResourceDef(name="BodySite", profile="http://hl7.org/fhir/StructureDefinition/BodySite")
|
||||
public class BodySite extends DomainResource {
|
||||
|
||||
/**
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A container for a collection of resources.
|
||||
*/
|
||||
@ResourceDef(name="Bundle", profile="http://hl7.org/fhir/Profile/Bundle")
|
||||
@ResourceDef(name="Bundle", profile="http://hl7.org/fhir/StructureDefinition/Bundle")
|
||||
public class Bundle extends Resource implements IBaseBundle {
|
||||
|
||||
public enum BundleType {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A Capability Statement documents a set of capabilities (behaviors) of a FHIR Server that may be used as a statement of actual server functionality or a statement of required or desired server implementation.
|
||||
*/
|
||||
@ResourceDef(name="CapabilityStatement", profile="http://hl7.org/fhir/Profile/CapabilityStatement")
|
||||
@ResourceDef(name="CapabilityStatement", profile="http://hl7.org/fhir/StructureDefinition/CapabilityStatement")
|
||||
@ChildOrder(names={"url", "version", "name", "title", "status", "experimental", "date", "publisher", "contact", "description", "useContext", "jurisdiction", "purpose", "copyright", "kind", "instantiates", "software", "implementation", "fhirVersion", "acceptUnknown", "format", "patchFormat", "implementationGuide", "profile", "rest", "messaging", "document"})
|
||||
public class CapabilityStatement extends MetadataResource implements IBaseConformance {
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Describes the intention of how one or more practitioners intend to deliver care for a particular patient, group or community for a period of time, possibly limited to care for a specific condition or set of conditions.
|
||||
*/
|
||||
@ResourceDef(name="CarePlan", profile="http://hl7.org/fhir/Profile/CarePlan")
|
||||
@ResourceDef(name="CarePlan", profile="http://hl7.org/fhir/StructureDefinition/CarePlan")
|
||||
public class CarePlan extends DomainResource {
|
||||
|
||||
public enum CarePlanStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* The Care Team includes all the people and organizations who plan to participate in the coordination and delivery of care for a patient.
|
||||
*/
|
||||
@ResourceDef(name="CareTeam", profile="http://hl7.org/fhir/Profile/CareTeam")
|
||||
@ResourceDef(name="CareTeam", profile="http://hl7.org/fhir/StructureDefinition/CareTeam")
|
||||
public class CareTeam extends DomainResource {
|
||||
|
||||
public enum CareTeamStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* The resource ChargeItem describes the provision of healthcare provider products for a certain patient, therefore referring not only to the product, but containing in addition details of the provision, like date, time, amounts and participating organizations and persons. Main Usage of the ChargeItem is to enable the billing process and internal cost allocation.
|
||||
*/
|
||||
@ResourceDef(name="ChargeItem", profile="http://hl7.org/fhir/Profile/ChargeItem")
|
||||
@ResourceDef(name="ChargeItem", profile="http://hl7.org/fhir/StructureDefinition/ChargeItem")
|
||||
public class ChargeItem extends DomainResource {
|
||||
|
||||
public enum ChargeItemStatus {
|
||||
|
|
|
@ -48,7 +48,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A provider issued list of services and products provided, or to be provided, to a patient which is provided to an insurer for payment recovery.
|
||||
*/
|
||||
@ResourceDef(name="Claim", profile="http://hl7.org/fhir/Profile/Claim")
|
||||
@ResourceDef(name="Claim", profile="http://hl7.org/fhir/StructureDefinition/Claim")
|
||||
public class Claim extends DomainResource {
|
||||
|
||||
public enum ClaimStatus {
|
||||
|
|
|
@ -48,7 +48,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This resource provides the adjudication details from the processing of a Claim resource.
|
||||
*/
|
||||
@ResourceDef(name="ClaimResponse", profile="http://hl7.org/fhir/Profile/ClaimResponse")
|
||||
@ResourceDef(name="ClaimResponse", profile="http://hl7.org/fhir/StructureDefinition/ClaimResponse")
|
||||
public class ClaimResponse extends DomainResource {
|
||||
|
||||
public enum ClaimResponseStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A record of a clinical assessment performed to determine what problem(s) may affect the patient and before planning the treatments or management strategies that are best to manage a patient's condition. Assessments are often 1:1 with a clinical consultation / encounter, but this varies greatly depending on the clinical workflow. This resource is called "ClinicalImpression" rather than "ClinicalAssessment" to avoid confusion with the recording of assessment tools such as Apgar score.
|
||||
*/
|
||||
@ResourceDef(name="ClinicalImpression", profile="http://hl7.org/fhir/Profile/ClinicalImpression")
|
||||
@ResourceDef(name="ClinicalImpression", profile="http://hl7.org/fhir/StructureDefinition/ClinicalImpression")
|
||||
public class ClinicalImpression extends DomainResource {
|
||||
|
||||
public enum ClinicalImpressionStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A code system resource specifies a set of codes drawn from one or more code systems.
|
||||
*/
|
||||
@ResourceDef(name="CodeSystem", profile="http://hl7.org/fhir/Profile/CodeSystem")
|
||||
@ResourceDef(name="CodeSystem", profile="http://hl7.org/fhir/StructureDefinition/CodeSystem")
|
||||
@ChildOrder(names={"url", "identifier", "version", "name", "title", "status", "experimental", "date", "publisher", "contact", "description", "useContext", "jurisdiction", "purpose", "copyright", "caseSensitive", "valueSet", "hierarchyMeaning", "compositional", "versionNeeded", "content", "count", "filter", "property", "concept"})
|
||||
public class CodeSystem extends MetadataResource {
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* An occurrence of information being transmitted; e.g. an alert that was sent to a responsible provider, a public health agency was notified about a reportable condition.
|
||||
*/
|
||||
@ResourceDef(name="Communication", profile="http://hl7.org/fhir/Profile/Communication")
|
||||
@ResourceDef(name="Communication", profile="http://hl7.org/fhir/StructureDefinition/Communication")
|
||||
public class Communication extends DomainResource {
|
||||
|
||||
public enum CommunicationStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A request to convey information; e.g. the CDS system proposes that an alert be sent to a responsible provider, the CDS system proposes that the public health agency be notified about a reportable condition.
|
||||
*/
|
||||
@ResourceDef(name="CommunicationRequest", profile="http://hl7.org/fhir/Profile/CommunicationRequest")
|
||||
@ResourceDef(name="CommunicationRequest", profile="http://hl7.org/fhir/StructureDefinition/CommunicationRequest")
|
||||
public class CommunicationRequest extends DomainResource {
|
||||
|
||||
public enum CommunicationRequestStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A compartment definition that defines how resources are accessed on a server.
|
||||
*/
|
||||
@ResourceDef(name="CompartmentDefinition", profile="http://hl7.org/fhir/Profile/CompartmentDefinition")
|
||||
@ResourceDef(name="CompartmentDefinition", profile="http://hl7.org/fhir/StructureDefinition/CompartmentDefinition")
|
||||
@ChildOrder(names={"url", "name", "title", "status", "experimental", "date", "publisher", "contact", "description", "purpose", "useContext", "jurisdiction", "code", "search", "resource"})
|
||||
public class CompartmentDefinition extends MetadataResource {
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A set of healthcare-related information that is assembled together into a single logical document that provides a single coherent statement of meaning, establishes its own context and that has clinical attestation with regard to who is making the statement. While a Composition defines the structure, it does not actually contain the content: rather the full content of a document is contained in a Bundle, of which the Composition is the first resource contained.
|
||||
*/
|
||||
@ResourceDef(name="Composition", profile="http://hl7.org/fhir/Profile/Composition")
|
||||
@ResourceDef(name="Composition", profile="http://hl7.org/fhir/StructureDefinition/Composition")
|
||||
public class Composition extends DomainResource {
|
||||
|
||||
public enum CompositionStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A statement of relationships from one set of concepts to one or more other concepts - either code systems or data elements, or classes in class models.
|
||||
*/
|
||||
@ResourceDef(name="ConceptMap", profile="http://hl7.org/fhir/Profile/ConceptMap")
|
||||
@ResourceDef(name="ConceptMap", profile="http://hl7.org/fhir/StructureDefinition/ConceptMap")
|
||||
@ChildOrder(names={"url", "identifier", "version", "name", "title", "status", "experimental", "date", "publisher", "contact", "description", "useContext", "jurisdiction", "purpose", "copyright", "source[x]", "target[x]", "group"})
|
||||
public class ConceptMap extends MetadataResource {
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A clinical condition, problem, diagnosis, or other event, situation, issue, or clinical concept that has risen to a level of concern.
|
||||
*/
|
||||
@ResourceDef(name="Condition", profile="http://hl7.org/fhir/Profile/Condition")
|
||||
@ResourceDef(name="Condition", profile="http://hl7.org/fhir/StructureDefinition/Condition")
|
||||
public class Condition extends DomainResource {
|
||||
|
||||
public enum ConditionClinicalStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A record of a healthcare consumer’s policy choices, which permits or denies identified recipient(s) or recipient role(s) to perform one or more actions within a given policy context, for specific purposes and periods of time.
|
||||
*/
|
||||
@ResourceDef(name="Consent", profile="http://hl7.org/fhir/Profile/Consent")
|
||||
@ResourceDef(name="Consent", profile="http://hl7.org/fhir/StructureDefinition/Consent")
|
||||
public class Consent extends DomainResource {
|
||||
|
||||
public enum ConsentState {
|
||||
|
|
|
@ -48,7 +48,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A formal agreement between parties regarding the conduct of business, exchange of information or other matters.
|
||||
*/
|
||||
@ResourceDef(name="Contract", profile="http://hl7.org/fhir/Profile/Contract")
|
||||
@ResourceDef(name="Contract", profile="http://hl7.org/fhir/StructureDefinition/Contract")
|
||||
public class Contract extends DomainResource {
|
||||
|
||||
public enum ContractStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Financial instrument which may be used to reimburse or pay for health care products and services.
|
||||
*/
|
||||
@ResourceDef(name="Coverage", profile="http://hl7.org/fhir/Profile/Coverage")
|
||||
@ResourceDef(name="Coverage", profile="http://hl7.org/fhir/StructureDefinition/Coverage")
|
||||
public class Coverage extends DomainResource {
|
||||
|
||||
public enum CoverageStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* The formal description of a single piece of information that can be gathered and reported.
|
||||
*/
|
||||
@ResourceDef(name="DataElement", profile="http://hl7.org/fhir/Profile/DataElement")
|
||||
@ResourceDef(name="DataElement", profile="http://hl7.org/fhir/StructureDefinition/DataElement")
|
||||
@ChildOrder(names={"url", "identifier", "version", "status", "experimental", "date", "publisher", "name", "title", "contact", "useContext", "jurisdiction", "copyright", "stringency", "mapping", "element"})
|
||||
public class DataElement extends MetadataResource {
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Indicates an actual or potential clinical issue with or between one or more active or proposed clinical actions for a patient; e.g. Drug-drug interaction, Ineffective treatment frequency, Procedure-condition conflict, etc.
|
||||
*/
|
||||
@ResourceDef(name="DetectedIssue", profile="http://hl7.org/fhir/Profile/DetectedIssue")
|
||||
@ResourceDef(name="DetectedIssue", profile="http://hl7.org/fhir/StructureDefinition/DetectedIssue")
|
||||
public class DetectedIssue extends DomainResource {
|
||||
|
||||
public enum DetectedIssueStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This resource identifies an instance or a type of a manufactured item that is used in the provision of healthcare without being substantially changed through that activity. The device may be a medical or non-medical device. Medical devices include durable (reusable) medical equipment, implantable devices, as well as disposable equipment used for diagnostic, treatment, and research for healthcare and public health. Non-medical devices may include items such as a machine, cellphone, computer, application, etc.
|
||||
*/
|
||||
@ResourceDef(name="Device", profile="http://hl7.org/fhir/Profile/Device")
|
||||
@ResourceDef(name="Device", profile="http://hl7.org/fhir/StructureDefinition/Device")
|
||||
public class Device extends DomainResource {
|
||||
|
||||
public enum UDIEntryType {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* The characteristics, operational status and capabilities of a medical-related component of a medical device.
|
||||
*/
|
||||
@ResourceDef(name="DeviceComponent", profile="http://hl7.org/fhir/Profile/DeviceComponent")
|
||||
@ResourceDef(name="DeviceComponent", profile="http://hl7.org/fhir/StructureDefinition/DeviceComponent")
|
||||
public class DeviceComponent extends DomainResource {
|
||||
|
||||
public enum MeasmntPrinciple {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Describes a measurement, calculation or setting capability of a medical device.
|
||||
*/
|
||||
@ResourceDef(name="DeviceMetric", profile="http://hl7.org/fhir/Profile/DeviceMetric")
|
||||
@ResourceDef(name="DeviceMetric", profile="http://hl7.org/fhir/StructureDefinition/DeviceMetric")
|
||||
public class DeviceMetric extends DomainResource {
|
||||
|
||||
public enum DeviceMetricOperationalStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Represents a request for a patient to employ a medical device. The device may be an implantable device, or an external assistive device, such as a walker.
|
||||
*/
|
||||
@ResourceDef(name="DeviceRequest", profile="http://hl7.org/fhir/Profile/DeviceRequest")
|
||||
@ResourceDef(name="DeviceRequest", profile="http://hl7.org/fhir/StructureDefinition/DeviceRequest")
|
||||
public class DeviceRequest extends DomainResource {
|
||||
|
||||
public enum DeviceRequestStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A record of a device being used by a patient where the record is the result of a report from the patient or another clinician.
|
||||
*/
|
||||
@ResourceDef(name="DeviceUseStatement", profile="http://hl7.org/fhir/Profile/DeviceUseStatement")
|
||||
@ResourceDef(name="DeviceUseStatement", profile="http://hl7.org/fhir/StructureDefinition/DeviceUseStatement")
|
||||
public class DeviceUseStatement extends DomainResource {
|
||||
|
||||
public enum DeviceUseStatementStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* The findings and interpretation of diagnostic tests performed on patients, groups of patients, devices, and locations, and/or specimens derived from these. The report includes clinical context such as requesting and provider information, and some mix of atomic results, images, textual and coded interpretations, and formatted representation of diagnostic reports.
|
||||
*/
|
||||
@ResourceDef(name="DiagnosticReport", profile="http://hl7.org/fhir/Profile/DiagnosticReport")
|
||||
@ResourceDef(name="DiagnosticReport", profile="http://hl7.org/fhir/StructureDefinition/DiagnosticReport")
|
||||
public class DiagnosticReport extends DomainResource {
|
||||
|
||||
public enum DiagnosticReportStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A collection of documents compiled for a purpose together with metadata that applies to the collection.
|
||||
*/
|
||||
@ResourceDef(name="DocumentManifest", profile="http://hl7.org/fhir/Profile/DocumentManifest")
|
||||
@ResourceDef(name="DocumentManifest", profile="http://hl7.org/fhir/StructureDefinition/DocumentManifest")
|
||||
public class DocumentManifest extends DomainResource {
|
||||
|
||||
@Block()
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A reference to a document.
|
||||
*/
|
||||
@ResourceDef(name="DocumentReference", profile="http://hl7.org/fhir/Profile/DocumentReference")
|
||||
@ResourceDef(name="DocumentReference", profile="http://hl7.org/fhir/StructureDefinition/DocumentReference")
|
||||
public class DocumentReference extends DomainResource {
|
||||
|
||||
public enum ReferredDocumentStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* The EligibilityRequest provides patient and insurance coverage information to an insurer for them to respond, in the form of an EligibilityResponse, with information regarding whether the stated coverage is valid and in-force and optionally to provide the insurance details of the policy.
|
||||
*/
|
||||
@ResourceDef(name="EligibilityRequest", profile="http://hl7.org/fhir/Profile/EligibilityRequest")
|
||||
@ResourceDef(name="EligibilityRequest", profile="http://hl7.org/fhir/StructureDefinition/EligibilityRequest")
|
||||
public class EligibilityRequest extends DomainResource {
|
||||
|
||||
public enum EligibilityRequestStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This resource provides eligibility and plan details from the processing of an Eligibility resource.
|
||||
*/
|
||||
@ResourceDef(name="EligibilityResponse", profile="http://hl7.org/fhir/Profile/EligibilityResponse")
|
||||
@ResourceDef(name="EligibilityResponse", profile="http://hl7.org/fhir/StructureDefinition/EligibilityResponse")
|
||||
public class EligibilityResponse extends DomainResource {
|
||||
|
||||
public enum EligibilityResponseStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient.
|
||||
*/
|
||||
@ResourceDef(name="Encounter", profile="http://hl7.org/fhir/Profile/Encounter")
|
||||
@ResourceDef(name="Encounter", profile="http://hl7.org/fhir/StructureDefinition/Encounter")
|
||||
public class Encounter extends DomainResource {
|
||||
|
||||
public enum EncounterStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* The technical details of an endpoint that can be used for electronic services, such as for web services providing XDS.b or a REST endpoint for another FHIR server. This may include any security context information.
|
||||
*/
|
||||
@ResourceDef(name="Endpoint", profile="http://hl7.org/fhir/Profile/Endpoint")
|
||||
@ResourceDef(name="Endpoint", profile="http://hl7.org/fhir/StructureDefinition/Endpoint")
|
||||
public class Endpoint extends DomainResource {
|
||||
|
||||
public enum EndpointStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This resource provides the insurance enrollment details to the insurer regarding a specified coverage.
|
||||
*/
|
||||
@ResourceDef(name="EnrollmentRequest", profile="http://hl7.org/fhir/Profile/EnrollmentRequest")
|
||||
@ResourceDef(name="EnrollmentRequest", profile="http://hl7.org/fhir/StructureDefinition/EnrollmentRequest")
|
||||
public class EnrollmentRequest extends DomainResource {
|
||||
|
||||
public enum EnrollmentRequestStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This resource provides enrollment and plan details from the processing of an Enrollment resource.
|
||||
*/
|
||||
@ResourceDef(name="EnrollmentResponse", profile="http://hl7.org/fhir/Profile/EnrollmentResponse")
|
||||
@ResourceDef(name="EnrollmentResponse", profile="http://hl7.org/fhir/StructureDefinition/EnrollmentResponse")
|
||||
public class EnrollmentResponse extends DomainResource {
|
||||
|
||||
public enum EnrollmentResponseStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* An association between a patient and an organization / healthcare provider(s) during which time encounters may occur. The managing organization assumes a level of responsibility for the patient during this time.
|
||||
*/
|
||||
@ResourceDef(name="EpisodeOfCare", profile="http://hl7.org/fhir/Profile/EpisodeOfCare")
|
||||
@ResourceDef(name="EpisodeOfCare", profile="http://hl7.org/fhir/StructureDefinition/EpisodeOfCare")
|
||||
public class EpisodeOfCare extends DomainResource {
|
||||
|
||||
public enum EpisodeOfCareStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Resource to define constraints on the Expansion of a FHIR ValueSet.
|
||||
*/
|
||||
@ResourceDef(name="ExpansionProfile", profile="http://hl7.org/fhir/Profile/ExpansionProfile")
|
||||
@ResourceDef(name="ExpansionProfile", profile="http://hl7.org/fhir/StructureDefinition/ExpansionProfile")
|
||||
@ChildOrder(names={"url", "identifier", "version", "name", "status", "experimental", "date", "publisher", "contact", "description", "useContext", "jurisdiction", "fixedVersion", "excludedSystem", "includeDesignations", "designation", "includeDefinition", "activeOnly", "excludeNested", "excludeNotForUI", "excludePostCoordinated", "displayLanguage", "limitedExpansion"})
|
||||
public class ExpansionProfile extends MetadataResource {
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This resource provides: the claim details; adjudication details from the processing of a Claim; and optionally account balance information, for informing the subscriber of the benefits provided.
|
||||
*/
|
||||
@ResourceDef(name="ExplanationOfBenefit", profile="http://hl7.org/fhir/Profile/ExplanationOfBenefit")
|
||||
@ResourceDef(name="ExplanationOfBenefit", profile="http://hl7.org/fhir/StructureDefinition/ExplanationOfBenefit")
|
||||
public class ExplanationOfBenefit extends DomainResource {
|
||||
|
||||
public enum ExplanationOfBenefitStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Significant health events and conditions for a person related to the patient relevant in the context of care for the patient.
|
||||
*/
|
||||
@ResourceDef(name="FamilyMemberHistory", profile="http://hl7.org/fhir/Profile/FamilyMemberHistory")
|
||||
@ResourceDef(name="FamilyMemberHistory", profile="http://hl7.org/fhir/StructureDefinition/FamilyMemberHistory")
|
||||
public class FamilyMemberHistory extends DomainResource {
|
||||
|
||||
public enum FamilyHistoryStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Prospective warnings of potential issues when providing care to the patient.
|
||||
*/
|
||||
@ResourceDef(name="Flag", profile="http://hl7.org/fhir/Profile/Flag")
|
||||
@ResourceDef(name="Flag", profile="http://hl7.org/fhir/StructureDefinition/Flag")
|
||||
public class Flag extends DomainResource {
|
||||
|
||||
public enum FlagStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Describes the intended objective(s) for a patient, group or organization care, for example, weight loss, restoring an activity of daily living, obtaining herd immunity via immunization, meeting a process improvement objective, etc.
|
||||
*/
|
||||
@ResourceDef(name="Goal", profile="http://hl7.org/fhir/Profile/Goal")
|
||||
@ResourceDef(name="Goal", profile="http://hl7.org/fhir/StructureDefinition/Goal")
|
||||
public class Goal extends DomainResource {
|
||||
|
||||
public enum GoalStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A formal computable definition of a graph of resources - that is, a coherent set of resources that form a graph by following references. The Graph Definition resource defines a set and makes rules about the set.
|
||||
*/
|
||||
@ResourceDef(name="GraphDefinition", profile="http://hl7.org/fhir/Profile/GraphDefinition")
|
||||
@ResourceDef(name="GraphDefinition", profile="http://hl7.org/fhir/StructureDefinition/GraphDefinition")
|
||||
@ChildOrder(names={"url", "version", "name", "status", "experimental", "date", "publisher", "contact", "description", "useContext", "jurisdiction", "purpose", "start", "profile", "link"})
|
||||
public class GraphDefinition extends MetadataResource {
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Represents a defined collection of entities that may be discussed or acted upon collectively but which are not expected to act collectively and are not formally or legally recognized; i.e. a collection of entities that isn't an Organization.
|
||||
*/
|
||||
@ResourceDef(name="Group", profile="http://hl7.org/fhir/Profile/Group")
|
||||
@ResourceDef(name="Group", profile="http://hl7.org/fhir/StructureDefinition/Group")
|
||||
public class Group extends DomainResource {
|
||||
|
||||
public enum GroupType {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A guidance response is the formal response to a guidance request, including any output parameters returned by the evaluation, as well as the description of any proposed actions to be taken.
|
||||
*/
|
||||
@ResourceDef(name="GuidanceResponse", profile="http://hl7.org/fhir/Profile/GuidanceResponse")
|
||||
@ResourceDef(name="GuidanceResponse", profile="http://hl7.org/fhir/StructureDefinition/GuidanceResponse")
|
||||
public class GuidanceResponse extends DomainResource {
|
||||
|
||||
public enum GuidanceResponseStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* The details of a healthcare service available at a location.
|
||||
*/
|
||||
@ResourceDef(name="HealthcareService", profile="http://hl7.org/fhir/Profile/HealthcareService")
|
||||
@ResourceDef(name="HealthcareService", profile="http://hl7.org/fhir/StructureDefinition/HealthcareService")
|
||||
public class HealthcareService extends DomainResource {
|
||||
|
||||
public enum DaysOfWeek {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A text description of the DICOM SOP instances selected in the ImagingManifest; or the reason for, or significance of, the selection.
|
||||
*/
|
||||
@ResourceDef(name="ImagingManifest", profile="http://hl7.org/fhir/Profile/ImagingManifest")
|
||||
@ResourceDef(name="ImagingManifest", profile="http://hl7.org/fhir/StructureDefinition/ImagingManifest")
|
||||
public class ImagingManifest extends DomainResource {
|
||||
|
||||
@Block()
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Representation of the content produced in a DICOM imaging study. A study comprises a set of series, each of which includes a set of Service-Object Pair Instances (SOP Instances - images or other data) acquired or produced in a common context. A series is of only one modality (e.g. X-ray, CT, MR, ultrasound), but a study may have multiple series of different modalities.
|
||||
*/
|
||||
@ResourceDef(name="ImagingStudy", profile="http://hl7.org/fhir/Profile/ImagingStudy")
|
||||
@ResourceDef(name="ImagingStudy", profile="http://hl7.org/fhir/StructureDefinition/ImagingStudy")
|
||||
public class ImagingStudy extends DomainResource {
|
||||
|
||||
public enum InstanceAvailability {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Describes the event of a patient being administered a vaccination or a record of a vaccination as reported by a patient, a clinician or another party and may include vaccine reaction information and what vaccination protocol was followed.
|
||||
*/
|
||||
@ResourceDef(name="Immunization", profile="http://hl7.org/fhir/Profile/Immunization")
|
||||
@ResourceDef(name="Immunization", profile="http://hl7.org/fhir/StructureDefinition/Immunization")
|
||||
public class Immunization extends DomainResource {
|
||||
|
||||
public enum ImmunizationStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A patient's point-in-time immunization and recommendation (i.e. forecasting a patient's immunization eligibility according to a published schedule) with optional supporting justification.
|
||||
*/
|
||||
@ResourceDef(name="ImmunizationRecommendation", profile="http://hl7.org/fhir/Profile/ImmunizationRecommendation")
|
||||
@ResourceDef(name="ImmunizationRecommendation", profile="http://hl7.org/fhir/StructureDefinition/ImmunizationRecommendation")
|
||||
public class ImmunizationRecommendation extends DomainResource {
|
||||
|
||||
@Block()
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A set of rules of how FHIR is used to solve a particular problem. This resource is used to gather all the parts of an implementation guide into a logical whole and to publish a computable definition of all the parts.
|
||||
*/
|
||||
@ResourceDef(name="ImplementationGuide", profile="http://hl7.org/fhir/Profile/ImplementationGuide")
|
||||
@ResourceDef(name="ImplementationGuide", profile="http://hl7.org/fhir/StructureDefinition/ImplementationGuide")
|
||||
@ChildOrder(names={"url", "version", "name", "status", "experimental", "date", "publisher", "contact", "description", "useContext", "jurisdiction", "copyright", "fhirVersion", "dependency", "package", "global", "binary", "page"})
|
||||
public class ImplementationGuide extends MetadataResource {
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* The Library resource is a general-purpose container for knowledge asset definitions. It can be used to describe and expose existing knowledge assets such as logic libraries and information model descriptions, as well as to describe a collection of knowledge assets.
|
||||
*/
|
||||
@ResourceDef(name="Library", profile="http://hl7.org/fhir/Profile/Library")
|
||||
@ResourceDef(name="Library", profile="http://hl7.org/fhir/StructureDefinition/Library")
|
||||
@ChildOrder(names={"url", "identifier", "version", "name", "title", "status", "experimental", "type", "date", "publisher", "description", "purpose", "usage", "approvalDate", "lastReviewDate", "effectivePeriod", "useContext", "jurisdiction", "topic", "contributor", "contact", "copyright", "relatedArtifact", "parameter", "dataRequirement", "content"})
|
||||
public class Library extends MetadataResource {
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Identifies two or more records (resource instances) that are referring to the same real-world "occurrence".
|
||||
*/
|
||||
@ResourceDef(name="Linkage", profile="http://hl7.org/fhir/Profile/Linkage")
|
||||
@ResourceDef(name="Linkage", profile="http://hl7.org/fhir/StructureDefinition/Linkage")
|
||||
public class Linkage extends DomainResource {
|
||||
|
||||
public enum LinkageType {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A set of information summarized from a list of other resources.
|
||||
*/
|
||||
@ResourceDef(name="List", profile="http://hl7.org/fhir/Profile/ListResource")
|
||||
@ResourceDef(name="List", profile="http://hl7.org/fhir/StructureDefinition/ListResource")
|
||||
public class ListResource extends DomainResource {
|
||||
|
||||
public enum ListStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Details and position information for a physical place where services are provided and resources and participants may be stored, found, contained or accommodated.
|
||||
*/
|
||||
@ResourceDef(name="Location", profile="http://hl7.org/fhir/Profile/Location")
|
||||
@ResourceDef(name="Location", profile="http://hl7.org/fhir/StructureDefinition/Location")
|
||||
public class Location extends DomainResource {
|
||||
|
||||
public enum LocationStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* The Measure resource provides the definition of a quality measure.
|
||||
*/
|
||||
@ResourceDef(name="Measure", profile="http://hl7.org/fhir/Profile/Measure")
|
||||
@ResourceDef(name="Measure", profile="http://hl7.org/fhir/StructureDefinition/Measure")
|
||||
@ChildOrder(names={"url", "identifier", "version", "name", "title", "status", "experimental", "date", "publisher", "description", "purpose", "usage", "approvalDate", "lastReviewDate", "effectivePeriod", "useContext", "jurisdiction", "topic", "contributor", "contact", "copyright", "relatedArtifact", "library", "disclaimer", "scoring", "compositeScoring", "type", "riskAdjustment", "rateAggregation", "rationale", "clinicalRecommendationStatement", "improvementNotation", "definition", "guidance", "set", "group", "supplementalData"})
|
||||
public class Measure extends MetadataResource {
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* The MeasureReport resource contains the results of evaluating a measure.
|
||||
*/
|
||||
@ResourceDef(name="MeasureReport", profile="http://hl7.org/fhir/Profile/MeasureReport")
|
||||
@ResourceDef(name="MeasureReport", profile="http://hl7.org/fhir/StructureDefinition/MeasureReport")
|
||||
public class MeasureReport extends DomainResource {
|
||||
|
||||
public enum MeasureReportStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A photo, video, or audio recording acquired or used in healthcare. The actual content may be inline or provided by direct reference.
|
||||
*/
|
||||
@ResourceDef(name="Media", profile="http://hl7.org/fhir/Profile/Media")
|
||||
@ResourceDef(name="Media", profile="http://hl7.org/fhir/StructureDefinition/Media")
|
||||
public class Media extends DomainResource {
|
||||
|
||||
public enum DigitalMediaType {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This resource is primarily used for the identification and definition of a medication. It covers the ingredients and the packaging for a medication.
|
||||
*/
|
||||
@ResourceDef(name="Medication", profile="http://hl7.org/fhir/Profile/Medication")
|
||||
@ResourceDef(name="Medication", profile="http://hl7.org/fhir/StructureDefinition/Medication")
|
||||
public class Medication extends DomainResource {
|
||||
|
||||
public enum MedicationStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Describes the event of a patient consuming or otherwise being administered a medication. This may be as simple as swallowing a tablet or it may be a long running infusion. Related resources tie this event to the authorizing prescription, and the specific encounter between patient and health care practitioner.
|
||||
*/
|
||||
@ResourceDef(name="MedicationAdministration", profile="http://hl7.org/fhir/Profile/MedicationAdministration")
|
||||
@ResourceDef(name="MedicationAdministration", profile="http://hl7.org/fhir/StructureDefinition/MedicationAdministration")
|
||||
public class MedicationAdministration extends DomainResource {
|
||||
|
||||
public enum MedicationAdministrationStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Indicates that a medication product is to be or has been dispensed for a named person/patient. This includes a description of the medication product (supply) provided and the instructions for administering the medication. The medication dispense is the result of a pharmacy system responding to a medication order.
|
||||
*/
|
||||
@ResourceDef(name="MedicationDispense", profile="http://hl7.org/fhir/Profile/MedicationDispense")
|
||||
@ResourceDef(name="MedicationDispense", profile="http://hl7.org/fhir/StructureDefinition/MedicationDispense")
|
||||
public class MedicationDispense extends DomainResource {
|
||||
|
||||
public enum MedicationDispenseStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* An order or request for both supply of the medication and the instructions for administration of the medication to a patient. The resource is called "MedicationRequest" rather than "MedicationPrescription" or "MedicationOrder" to generalize the use across inpatient and outpatient settings, including care plans, etc., and to harmonize with workflow patterns.
|
||||
*/
|
||||
@ResourceDef(name="MedicationRequest", profile="http://hl7.org/fhir/Profile/MedicationRequest")
|
||||
@ResourceDef(name="MedicationRequest", profile="http://hl7.org/fhir/StructureDefinition/MedicationRequest")
|
||||
public class MedicationRequest extends DomainResource {
|
||||
|
||||
public enum MedicationRequestStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A record of a medication that is being consumed by a patient. A MedicationStatement may indicate that the patient may be taking the medication now, or has taken the medication in the past or will be taking the medication in the future. The source of this information can be the patient, significant other (such as a family member or spouse), or a clinician. A common scenario where this information is captured is during the history taking process during a patient visit or stay. The medication information may come from sources such as the patient's memory, from a prescription bottle, or from a list of medications the patient, clinician or other party maintains
The primary difference between a medication statement and a medication administration is that the medication administration has complete administration information and is based on actual administration information from the person who administered the medication. A medication statement is often, if not always, less specific. There is no required date/time when the medication was administered, in fact we only know that a source has reported the patient is taking this medication, where details such as time, quantity, or rate or even medication product may be incomplete or missing or less precise. As stated earlier, the medication statement information may come from the patient's memory, from a prescription bottle or from a list of medications the patient, clinician or other party maintains. Medication administration is more formal and is not missing detailed information.
|
||||
*/
|
||||
@ResourceDef(name="MedicationStatement", profile="http://hl7.org/fhir/Profile/MedicationStatement")
|
||||
@ResourceDef(name="MedicationStatement", profile="http://hl7.org/fhir/StructureDefinition/MedicationStatement")
|
||||
public class MedicationStatement extends DomainResource {
|
||||
|
||||
public enum MedicationStatementStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Defines the characteristics of a message that can be shared between systems, including the type of event that initiates the message, the content to be transmitted and what response(s), if any, are permitted.
|
||||
*/
|
||||
@ResourceDef(name="MessageDefinition", profile="http://hl7.org/fhir/Profile/MessageDefinition")
|
||||
@ResourceDef(name="MessageDefinition", profile="http://hl7.org/fhir/StructureDefinition/MessageDefinition")
|
||||
@ChildOrder(names={"url", "identifier", "version", "name", "title", "status", "experimental", "date", "publisher", "contact", "description", "useContext", "jurisdiction", "purpose", "copyright", "base", "parent", "replaces", "event", "category", "focus", "responseRequired", "allowedResponse"})
|
||||
public class MessageDefinition extends MetadataResource {
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* The header for a message exchange that is either requesting or responding to an action. The reference(s) that are the subject of the action as well as other information related to the action are typically transmitted in a bundle in which the MessageHeader resource instance is the first resource in the bundle.
|
||||
*/
|
||||
@ResourceDef(name="MessageHeader", profile="http://hl7.org/fhir/Profile/MessageHeader")
|
||||
@ResourceDef(name="MessageHeader", profile="http://hl7.org/fhir/StructureDefinition/MessageHeader")
|
||||
public class MessageHeader extends DomainResource {
|
||||
|
||||
public enum ResponseType {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A curated namespace that issues unique symbols within that namespace for the identification of concepts, people, devices, etc. Represents a "System" used within the Identifier and Coding data types.
|
||||
*/
|
||||
@ResourceDef(name="NamingSystem", profile="http://hl7.org/fhir/Profile/NamingSystem")
|
||||
@ResourceDef(name="NamingSystem", profile="http://hl7.org/fhir/StructureDefinition/NamingSystem")
|
||||
@ChildOrder(names={"name", "status", "kind", "date", "publisher", "contact", "responsible", "type", "description", "useContext", "jurisdiction", "usage", "uniqueId", "replacedBy"})
|
||||
public class NamingSystem extends MetadataResource {
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A request to supply a diet, formula feeding (enteral) or oral nutritional supplement to a patient/resident.
|
||||
*/
|
||||
@ResourceDef(name="NutritionOrder", profile="http://hl7.org/fhir/Profile/NutritionOrder")
|
||||
@ResourceDef(name="NutritionOrder", profile="http://hl7.org/fhir/StructureDefinition/NutritionOrder")
|
||||
public class NutritionOrder extends DomainResource {
|
||||
|
||||
public enum NutritionOrderStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Measurements and simple assertions made about a patient, device or other subject.
|
||||
*/
|
||||
@ResourceDef(name="Observation", profile="http://hl7.org/fhir/Profile/Observation")
|
||||
@ResourceDef(name="Observation", profile="http://hl7.org/fhir/StructureDefinition/Observation")
|
||||
public class Observation extends DomainResource {
|
||||
|
||||
public enum ObservationStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A formal computable definition of an operation (on the RESTful interface) or a named query (using the search interaction).
|
||||
*/
|
||||
@ResourceDef(name="OperationDefinition", profile="http://hl7.org/fhir/Profile/OperationDefinition")
|
||||
@ResourceDef(name="OperationDefinition", profile="http://hl7.org/fhir/StructureDefinition/OperationDefinition")
|
||||
@ChildOrder(names={"url", "version", "name", "status", "kind", "experimental", "date", "publisher", "contact", "description", "useContext", "jurisdiction", "purpose", "idempotent", "code", "comment", "base", "resource", "system", "type", "instance", "parameter", "overload"})
|
||||
public class OperationDefinition extends MetadataResource {
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A collection of error, warning or information messages that result from a system action.
|
||||
*/
|
||||
@ResourceDef(name="OperationOutcome", profile="http://hl7.org/fhir/Profile/OperationOutcome")
|
||||
@ResourceDef(name="OperationOutcome", profile="http://hl7.org/fhir/StructureDefinition/OperationOutcome")
|
||||
public class OperationOutcome extends DomainResource implements IBaseOperationOutcome {
|
||||
|
||||
public enum IssueSeverity {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, etc.
|
||||
*/
|
||||
@ResourceDef(name="Organization", profile="http://hl7.org/fhir/Profile/Organization")
|
||||
@ResourceDef(name="Organization", profile="http://hl7.org/fhir/StructureDefinition/Organization")
|
||||
public class Organization extends DomainResource {
|
||||
|
||||
@Block()
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This special resource type is used to represent an operation request and response (operations.html). It has no other use, and there is no RESTful endpoint associated with it.
|
||||
*/
|
||||
@ResourceDef(name="Parameters", profile="http://hl7.org/fhir/Profile/Parameters")
|
||||
@ResourceDef(name="Parameters", profile="http://hl7.org/fhir/StructureDefinition/Parameters")
|
||||
public class Parameters extends Resource implements IBaseParameters {
|
||||
|
||||
@Block()
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Demographics and other administrative information about an individual or animal receiving care or other health-related services.
|
||||
*/
|
||||
@ResourceDef(name="Patient", profile="http://hl7.org/fhir/Profile/Patient")
|
||||
@ResourceDef(name="Patient", profile="http://hl7.org/fhir/StructureDefinition/Patient")
|
||||
public class Patient extends DomainResource {
|
||||
|
||||
public enum LinkType {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This resource provides the status of the payment for goods and services rendered, and the request and response resource references.
|
||||
*/
|
||||
@ResourceDef(name="PaymentNotice", profile="http://hl7.org/fhir/Profile/PaymentNotice")
|
||||
@ResourceDef(name="PaymentNotice", profile="http://hl7.org/fhir/StructureDefinition/PaymentNotice")
|
||||
public class PaymentNotice extends DomainResource {
|
||||
|
||||
public enum PaymentNoticeStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This resource provides payment details and claim references supporting a bulk payment.
|
||||
*/
|
||||
@ResourceDef(name="PaymentReconciliation", profile="http://hl7.org/fhir/Profile/PaymentReconciliation")
|
||||
@ResourceDef(name="PaymentReconciliation", profile="http://hl7.org/fhir/StructureDefinition/PaymentReconciliation")
|
||||
public class PaymentReconciliation extends DomainResource {
|
||||
|
||||
public enum PaymentReconciliationStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Demographics and administrative information about a person independent of a specific health-related context.
|
||||
*/
|
||||
@ResourceDef(name="Person", profile="http://hl7.org/fhir/Profile/Person")
|
||||
@ResourceDef(name="Person", profile="http://hl7.org/fhir/StructureDefinition/Person")
|
||||
public class Person extends DomainResource {
|
||||
|
||||
public enum IdentityAssuranceLevel {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This resource allows for the definition of various types of plans as a sharable, consumable, and executable artifact. The resource is general enough to support the description of a broad range of clinical artifacts such as clinical decision support rules, order sets and protocols.
|
||||
*/
|
||||
@ResourceDef(name="PlanDefinition", profile="http://hl7.org/fhir/Profile/PlanDefinition")
|
||||
@ResourceDef(name="PlanDefinition", profile="http://hl7.org/fhir/StructureDefinition/PlanDefinition")
|
||||
@ChildOrder(names={"url", "identifier", "version", "name", "title", "type", "status", "experimental", "date", "publisher", "description", "purpose", "usage", "approvalDate", "lastReviewDate", "effectivePeriod", "useContext", "jurisdiction", "topic", "contributor", "contact", "copyright", "relatedArtifact", "library", "goal", "action"})
|
||||
public class PlanDefinition extends MetadataResource {
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A person who is directly or indirectly involved in the provisioning of healthcare.
|
||||
*/
|
||||
@ResourceDef(name="Practitioner", profile="http://hl7.org/fhir/Profile/Practitioner")
|
||||
@ResourceDef(name="Practitioner", profile="http://hl7.org/fhir/StructureDefinition/Practitioner")
|
||||
public class Practitioner extends DomainResource {
|
||||
|
||||
@Block()
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A specific set of Roles/Locations/specialties/services that a practitioner may perform at an organization for a period of time.
|
||||
*/
|
||||
@ResourceDef(name="PractitionerRole", profile="http://hl7.org/fhir/Profile/PractitionerRole")
|
||||
@ResourceDef(name="PractitionerRole", profile="http://hl7.org/fhir/StructureDefinition/PractitionerRole")
|
||||
public class PractitionerRole extends DomainResource {
|
||||
|
||||
public enum DaysOfWeek {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* An action that is or was performed on a patient. This can be a physical intervention like an operation, or less invasive like counseling or hypnotherapy.
|
||||
*/
|
||||
@ResourceDef(name="Procedure", profile="http://hl7.org/fhir/Profile/Procedure")
|
||||
@ResourceDef(name="Procedure", profile="http://hl7.org/fhir/StructureDefinition/Procedure")
|
||||
public class Procedure extends DomainResource {
|
||||
|
||||
public enum ProcedureStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A record of a request for diagnostic investigations, treatments, or operations to be performed.
|
||||
*/
|
||||
@ResourceDef(name="ProcedureRequest", profile="http://hl7.org/fhir/Profile/ProcedureRequest")
|
||||
@ResourceDef(name="ProcedureRequest", profile="http://hl7.org/fhir/StructureDefinition/ProcedureRequest")
|
||||
public class ProcedureRequest extends DomainResource {
|
||||
|
||||
public enum ProcedureRequestStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This resource provides the target, request and response, and action details for an action to be performed by the target on or about existing resources.
|
||||
*/
|
||||
@ResourceDef(name="ProcessRequest", profile="http://hl7.org/fhir/Profile/ProcessRequest")
|
||||
@ResourceDef(name="ProcessRequest", profile="http://hl7.org/fhir/StructureDefinition/ProcessRequest")
|
||||
public class ProcessRequest extends DomainResource {
|
||||
|
||||
public enum ProcessRequestStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* This resource provides processing status, errors and notes from the processing of a resource.
|
||||
*/
|
||||
@ResourceDef(name="ProcessResponse", profile="http://hl7.org/fhir/Profile/ProcessResponse")
|
||||
@ResourceDef(name="ProcessResponse", profile="http://hl7.org/fhir/StructureDefinition/ProcessResponse")
|
||||
public class ProcessResponse extends DomainResource {
|
||||
|
||||
public enum ProcessResponseStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Provenance of a resource is a record that describes entities and processes involved in producing and delivering or otherwise influencing that resource. Provenance provides a critical foundation for assessing authenticity, enabling trust, and allowing reproducibility. Provenance assertions are a form of contextual metadata and can themselves become important records with their own provenance. Provenance statement indicates clinical significance in terms of confidence in authenticity, reliability, and trustworthiness, integrity, and stage in lifecycle (e.g. Document Completion - has the artifact been legally authenticated), all of which may impact security, privacy, and trust policies.
|
||||
*/
|
||||
@ResourceDef(name="Provenance", profile="http://hl7.org/fhir/Profile/Provenance")
|
||||
@ResourceDef(name="Provenance", profile="http://hl7.org/fhir/StructureDefinition/Provenance")
|
||||
public class Provenance extends DomainResource {
|
||||
|
||||
public enum ProvenanceEntityRole {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A structured set of questions intended to guide the collection of answers from end-users. Questionnaires provide detailed control over order, presentation, phraseology and grouping to allow coherent, consistent data collection.
|
||||
*/
|
||||
@ResourceDef(name="Questionnaire", profile="http://hl7.org/fhir/Profile/Questionnaire")
|
||||
@ResourceDef(name="Questionnaire", profile="http://hl7.org/fhir/StructureDefinition/Questionnaire")
|
||||
@ChildOrder(names={"url", "identifier", "version", "name", "title", "status", "experimental", "date", "publisher", "description", "purpose", "approvalDate", "lastReviewDate", "effectivePeriod", "useContext", "jurisdiction", "contact", "copyright", "code", "subjectType", "item"})
|
||||
public class Questionnaire extends MetadataResource {
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A structured set of questions and their answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the questionnaire being responded to.
|
||||
*/
|
||||
@ResourceDef(name="QuestionnaireResponse", profile="http://hl7.org/fhir/Profile/QuestionnaireResponse")
|
||||
@ResourceDef(name="QuestionnaireResponse", profile="http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse")
|
||||
public class QuestionnaireResponse extends DomainResource {
|
||||
|
||||
public enum QuestionnaireResponseStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Used to record and send details about a request for referral service or transfer of a patient to the care of another provider or provider organization.
|
||||
*/
|
||||
@ResourceDef(name="ReferralRequest", profile="http://hl7.org/fhir/Profile/ReferralRequest")
|
||||
@ResourceDef(name="ReferralRequest", profile="http://hl7.org/fhir/StructureDefinition/ReferralRequest")
|
||||
public class ReferralRequest extends DomainResource {
|
||||
|
||||
public enum ReferralRequestStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* Information about a person that is involved in the care for a patient, but who is not the target of healthcare, nor has a formal responsibility in the care process.
|
||||
*/
|
||||
@ResourceDef(name="RelatedPerson", profile="http://hl7.org/fhir/Profile/RelatedPerson")
|
||||
@ResourceDef(name="RelatedPerson", profile="http://hl7.org/fhir/StructureDefinition/RelatedPerson")
|
||||
public class RelatedPerson extends DomainResource {
|
||||
|
||||
/**
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A group of related requests that can be used to capture intended activities that have inter-dependencies such as "give this medication after that one".
|
||||
*/
|
||||
@ResourceDef(name="RequestGroup", profile="http://hl7.org/fhir/Profile/RequestGroup")
|
||||
@ResourceDef(name="RequestGroup", profile="http://hl7.org/fhir/StructureDefinition/RequestGroup")
|
||||
public class RequestGroup extends DomainResource {
|
||||
|
||||
public enum RequestStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A process where a researcher or organization plans and then executes a series of steps intended to increase the field of healthcare-related knowledge. This includes studies of safety, efficacy, comparative effectiveness and other information about medications, devices, therapies and other interventional and investigative techniques. A ResearchStudy involves the gathering of information about human or animal subjects.
|
||||
*/
|
||||
@ResourceDef(name="ResearchStudy", profile="http://hl7.org/fhir/Profile/ResearchStudy")
|
||||
@ResourceDef(name="ResearchStudy", profile="http://hl7.org/fhir/StructureDefinition/ResearchStudy")
|
||||
public class ResearchStudy extends DomainResource {
|
||||
|
||||
public enum ResearchStudyStatus {
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* A process where a researcher or organization plans and then executes a series of steps intended to increase the field of healthcare-related knowledge. This includes studies of safety, efficacy, comparative effectiveness and other information about medications, devices, therapies and other interventional and investigative techniques. A ResearchStudy involves the gathering of information about human or animal subjects.
|
||||
*/
|
||||
@ResourceDef(name="ResearchSubject", profile="http://hl7.org/fhir/Profile/ResearchSubject")
|
||||
@ResourceDef(name="ResearchSubject", profile="http://hl7.org/fhir/StructureDefinition/ResearchSubject")
|
||||
public class ResearchSubject extends DomainResource {
|
||||
|
||||
public enum ResearchSubjectStatus {
|
||||
|
|
|
@ -47,7 +47,7 @@ import org.hl7.fhir.exceptions.FHIRFormatError;
|
|||
/**
|
||||
* An assessment of the likely outcome(s) for a patient or other subject as well as the likelihood of each outcome.
|
||||
*/
|
||||
@ResourceDef(name="RiskAssessment", profile="http://hl7.org/fhir/Profile/RiskAssessment")
|
||||
@ResourceDef(name="RiskAssessment", profile="http://hl7.org/fhir/StructureDefinition/RiskAssessment")
|
||||
public class RiskAssessment extends DomainResource {
|
||||
|
||||
public enum RiskAssessmentStatus {
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue