FHIR © HL7.org  |  FHIRsmith 4.0.1  |  Server Home  |  XIG Home  |  XIG Stats  | 

FHIR IG analytics

Packageopenehr.base
Resource TypeStructureDefinition
IdStructureDefinition-DV-AMOUNT.json
FHIR VersionR5
Sourcehttp://fhir.org/guides/openehr/base/0.1.0-snapshot/StructureDefinition-DV-AMOUNT.html
URLhttp://openehr.org/fhir/StructureDefinition/DV-AMOUNT
Version0.1.0-snapshot
Statusactive
Date2025-09-06T15:35:39+10:00
NameDV_AMOUNT
TitleDV_AMOUNT
Realmuv
Authorityhl7
DescriptionAbstract class defining the concept of relative quantified 'amounts'. For relative quantities, the `+` and `-` operators are defined (unlike descendants of `DV_ABSOLUTE_QUANTITY`, such as the date/time types).
Typehttp://openehr.org/fhir/StructureDefinition/DV_AMOUNT
Kindlogical

Resources that use this resource

StructureDefinition
openehr.base#0.1.0-snapshotDV-ABSOLUTE-QUANTITYDV_ABSOLUTE_QUANTITY
openehr.base#0.1.0-snapshotDV-COUNTDV_COUNT
openehr.base#0.1.0-snapshotDV-DURATIONDV_DURATION
openehr.base#0.1.0-snapshotDV-QUANTITYDV_QUANTITY

Resources that this resource uses

StructureDefinition
openehr.base#0.1.0-snapshotDV-QUANTIFIEDDV_QUANTIFIED

Narrative

Note: links and images are rebased to the (stated) source

Generated Narrative: StructureDefinition DV-AMOUNT

NameFlagsCard.TypeDescription & Constraintsdoco
.. DV_AMOUNT C0..*DV_QUANTIFIEDThis is an abstract type. Child types: DV_COUNT, DV_DURATION, DV_QUANTITY
Abstract class defining the concept of relative quantified 'amounts'.

Elements defined in Ancestors:CR, LF, Local_terminology_id, normal_status, normal_range, other_reference_ranges, magnitude_status, accuracy
Constraints: Accuracy_is_percent_validity, Accuracy_validity
... accuracy_is_percent 0..1booleanIf `True`, indicates that when this object was created, `_accuracy_` was recorded as a percent value; if `False`, as an absolute quantity value.
... accuracy 0..1decimalAccuracy of measurement, expressed either as a half-range percent value (`_accuracy_is_percent_` = `True`) or a half-range quantity.

doco Documentation for this format

Source1

{
  "resourceType": "StructureDefinition",
  "id": "DV-AMOUNT",
  "text": {
    "status": "extensions",
    "div": "<!-- snip (see above) -->"
  },
  "contained": [
    {
      "resourceType": "OperationDefinition",
      "id": "valid_percentage",
      "name": "valid_percentage",
      "title": "valid_percentage",
      "status": "active",
      "kind": "operation",
      "description": "Test whether a number is a valid percentage, i.e. between 0 and 100. ",
      "code": "valid_percentage",
      "system": false,
      "instance": true,
      "parameter": [
        {
          "name": "number",
          "use": "in",
          "min": 1,
          "max": "1",
          "type": "Parameters"
        },
        {
          "name": "return",
          "use": "out",
          "min": 1,
          "max": "1",
          "type": "boolean"
        }
      ]
    },
    {
      "resourceType": "OperationDefinition",
      "id": "add",
      "name": "add",
      "title": "add",
      "status": "active",
      "kind": "operation",
      "description": "Sum of this amount and another. The value of accuracy in the result is either:\n\n* the sum of the accuracies of the operands, if both present, or;\n* both operand accuracies are unknown_accuracy_value.\n\nIf the accuracy value is a percentage in one operand and not in the other, the form in the result is that of the larger operand.",
      "code": "add",
      "system": false,
      "instance": true,
      "parameter": [
        {
          "name": "other",
          "use": "in",
          "min": 1,
          "max": "1",
          "type": "Parameters"
        },
        {
          "name": "return",
          "use": "out",
          "min": 1,
          "max": "1",
          "type": "Parameters"
        }
      ]
    },
    {
      "resourceType": "OperationDefinition",
      "id": "subtract",
      "name": "subtract",
      "title": "subtract",
      "status": "active",
      "kind": "operation",
      "description": "Difference of this amount and another. The value of `_accuracy_` in the result is either:\n\n* the sum of the accuracies of the operands, if both present, or;\n* unknown, if either or both operand accuracies are unknown.\n\nIf the `_accuracy_` value is a percentage in one operand and not in the other, the form in the result is that of the larger operand.",
      "code": "subtract",
      "system": false,
      "instance": true,
      "parameter": [
        {
          "name": "other",
          "use": "in",
          "min": 1,
          "max": "1",
          "type": "Parameters"
        },
        {
          "name": "return",
          "use": "out",
          "min": 1,
          "max": "1",
          "type": "Parameters"
        }
      ]
    },
    {
      "resourceType": "OperationDefinition",
      "id": "is_equal",
      "name": "is_equal",
      "title": "is_equal",
      "status": "active",
      "kind": "operation",
      "description": "Return True if this `DV_AMOUNT` is considered equal to `_other_`.",
      "code": "is_equal",
      "system": false,
      "instance": true,
      "parameter": [
        {
          "name": "other",
          "use": "in",
          "min": 1,
          "max": "1",
          "type": "Parameters"
        },
        {
          "name": "return",
          "use": "out",
          "min": 1,
          "max": "1",
          "type": "boolean"
        }
      ]
    },
    {
      "resourceType": "OperationDefinition",
      "id": "multiply",
      "name": "multiply",
      "title": "multiply",
      "status": "active",
      "kind": "operation",
      "description": "Product of this Amount and `_factor_`.",
      "code": "multiply",
      "system": false,
      "instance": true,
      "parameter": [
        {
          "name": "factor",
          "use": "in",
          "min": 1,
          "max": "1",
          "type": "decimal"
        },
        {
          "name": "return",
          "use": "out",
          "min": 1,
          "max": "1",
          "type": "Parameters"
        }
      ]
    },
    {
      "resourceType": "OperationDefinition",
      "id": "negative",
      "name": "negative",
      "title": "negative",
      "status": "active",
      "kind": "operation",
      "description": "Negated version of current object, such as used for representing a difference, e.g. a weight loss.",
      "code": "negative",
      "system": false,
      "instance": true,
      "parameter": [
        {
          "name": "return",
          "use": "out",
          "min": 1,
          "max": "1",
          "type": "Parameters"
        }
      ]
    },
    {
      "resourceType": "OperationDefinition",
      "id": "less_than",
      "name": "less_than",
      "title": "less_than",
      "status": "active",
      "kind": "operation",
      "description": "True if this object is less than `_other_`. Based on comparison of `_magnitude_`.",
      "code": "less_than",
      "system": false,
      "instance": true,
      "parameter": [
        {
          "name": "other",
          "use": "in",
          "min": 1,
          "max": "1",
          "type": "Parameters"
        },
        {
          "name": "return",
          "use": "out",
          "min": 1,
          "max": "1",
          "type": "boolean"
        }
      ]
    }
  ],
  "extension": [
    {
      "url": "http://hl7.org/fhir/tools/StructureDefinition/web-source",
      "valueUrl": "https://specifications.openehr.org/releases/RM/Release-1.1.0/data_types.html#_dv_amount_class"
    },
    {
      "url": "http://hl7.org/fhir/tools/StructureDefinition/type-operation",
      "valueCanonical": "#valid_percentage"
    },
    {
      "url": "http://hl7.org/fhir/tools/StructureDefinition/type-operation",
      "valueCanonical": "#add"
    },
    {
      "url": "http://hl7.org/fhir/tools/StructureDefinition/type-operation",
      "valueCanonical": "#subtract"
    },
    {
      "url": "http://hl7.org/fhir/tools/StructureDefinition/type-operation",
      "valueCanonical": "#is_equal"
    },
    {
      "url": "http://hl7.org/fhir/tools/StructureDefinition/type-operation",
      "valueCanonical": "#multiply"
    },
    {
      "url": "http://hl7.org/fhir/tools/StructureDefinition/type-operation",
      "valueCanonical": "#negative"
    },
    {
      "url": "http://hl7.org/fhir/tools/StructureDefinition/type-operation",
      "valueCanonical": "#less_than"
    },
    {
      "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg",
      "valueCode": "fhir"
    },
    {
      "url": "http://hl7.org/fhir/tools/StructureDefinition/view-hint",
      "valueCode": "element-view-as-leaf"
    },
    {
      "url": "http://hl7.org/fhir/tools/StructureDefinition/view-hint",
      "valueCode": "element-view-defns-parent"
    },
    {
      "url": "http://hl7.org/fhir/tools/StructureDefinition/view-hint",
      "valueCode": "element-view-replace-cardinality"
    },
    {
      "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm",
      "valueInteger": 3,
      "_valueInteger": {
        "extension": [
          {
            "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-conformance-derivedFrom",
            "valueCanonical": "http://openehr.org/fhir/ImplementationGuide/openehr.base"
          }
        ]
      }
    },
    {
      "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status",
      "valueCode": "informative",
      "_valueCode": {
        "extension": [
          {
            "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-conformance-derivedFrom",
            "valueCanonical": "http://openehr.org/fhir/ImplementationGuide/openehr.base"
          }
        ]
      }
    }
  ],
  "url": "http://openehr.org/fhir/StructureDefinition/DV-AMOUNT",
  "version": "0.1.0-snapshot",
  "name": "DV_AMOUNT",
  "title": "DV_AMOUNT",
  "status": "active",
  "experimental": false,
  "date": "2025-09-06T15:35:39+10:00",
  "publisher": "openEHR + HL7",
  "contact": [
    {
      "telecom": [
        {
          "system": "url",
          "value": "http://www.openehr.org"
        }
      ]
    }
  ],
  "description": "Abstract class defining the concept of relative quantified  'amounts'. For relative quantities, the  `+` and  `-` operators are defined (unlike descendants of `DV_ABSOLUTE_QUANTITY`, such as the date/time types). \n",
  "jurisdiction": [
    {
      "coding": [
        {
          "system": "http://unstats.un.org/unsd/methods/m49/m49.htm",
          "code": "001"
        }
      ]
    }
  ],
  "fhirVersion": "5.0.0",
  "mapping": [
    {
      "identity": "rim",
      "uri": "http://hl7.org/v3",
      "name": "RIM Mapping"
    }
  ],
  "kind": "logical",
  "abstract": true,
  "type": "http://openehr.org/fhir/StructureDefinition/DV_AMOUNT",
  "baseDefinition": "http://openehr.org/fhir/StructureDefinition/DV-QUANTIFIED",
  "derivation": "specialization",
  "snapshot": {
    "extension": [
      {
        "url": "http://hl7.org/fhir/tools/StructureDefinition/snapshot-base-version",
        "valueString": "0.1.0-snapshot"
      }
    ],
    "element": [
      {
        "id": "DV_AMOUNT",
        "path": "DV_AMOUNT",
        "short": "Abstract class defining the concept of relative quantified  'amounts'.",
        "definition": "Abstract class defining the concept of relative quantified  'amounts'. For relative quantities, the  `+` and  `-` operators are defined (unlike descendants of `DV_ABSOLUTE_QUANTITY`, such as the date/time types). \n",
        "min": 0,
        "max": "*",
        "base": {
          "path": "Base",
          "min": 0,
          "max": "*"
        },
        "constraint": [
          {
            "key": "Other_reference_ranges_validity",
            "severity": "error",
            "human": "Other reference ranges validity must be present",
            "expression": "other_reference_ranges.exists() implies other_reference_ranges.empty().not()",
            "source": "http://openehr.org/fhir/StructureDefinition/DV-ORDERED"
          },
          {
            "key": "Is_simple_validity",
            "severity": "error",
            "human": "Is simple validity must satisfy conditional constraints",
            "expression": "(normal_range .empty() and other_reference_ranges .empty()) implies is_simple()",
            "source": "http://openehr.org/fhir/StructureDefinition/DV-ORDERED"
          },
          {
            "key": "Normal_range_and_status_consistency",
            "severity": "error",
            "human": "Normal range and status consistency must be present",
            "expression": "(normal_range.exists() and normal_status.exists()) implies (normal_status.code_string.is_equal (ā€œNā€) xor normal_range.not().has (self))",
            "source": "http://openehr.org/fhir/StructureDefinition/DV-ORDERED"
          },
          {
            "key": "Magnitude_status_valid",
            "severity": "error",
            "human": "Magnitude status valid must be present",
            "expression": "magnitude_status.exists() implies valid_magnitude_status() (magnitude_status)",
            "source": "http://openehr.org/fhir/StructureDefinition/DV-QUANTIFIED"
          },
          {
            "key": "Accuracy_is_percent_validity",
            "severity": "error",
            "human": "Accuracy is percent validity must satisfy conditional constraints",
            "expression": "accuracy = 0 implies accuracy_is_percent.not()"
          },
          {
            "key": "Accuracy_validity",
            "severity": "error",
            "human": "Accuracy validity must satisfy conditional constraints",
            "expression": "accuracy_is_percent implies valid_percentage() (accuracy)"
          }
        ],
        "isModifier": false,
        "mapping": [
          {
            "identity": "rim",
            "map": "n/a"
          }
        ]
      },
      {
        "id": "DV_AMOUNT.CR",
        "path": "DV_AMOUNT.CR",
        "short": "Carriage return character.",
        "definition": "Carriage return character.",
        "min": 1,
        "max": "1",
        "base": {
          "path": "BASIC_DEFINITIONS.CR",
          "min": 1,
          "max": "1"
        },
        "type": [
          {
            "code": "string"
          }
        ],
        "isModifier": false
      },
      {
        "id": "DV_AMOUNT.LF",
        "path": "DV_AMOUNT.LF",
        "short": "Line feed character.",
        "definition": "Line feed character.",
        "min": 1,
        "max": "1",
        "base": {
          "path": "BASIC_DEFINITIONS.LF",
          "min": 1,
          "max": "1"
        },
        "type": [
          {
            "code": "string"
          }
        ],
        "isModifier": false
      },
      {
        "id": "DV_AMOUNT.Local-terminology-id",
        "path": "DV_AMOUNT.Local_terminology_id",
        "short": "Predefined terminology identifier",
        "definition": "Predefined terminology identifier to indicate it is local to the knowledge resource in which it occurs, e.g. an archetype",
        "min": 1,
        "max": "1",
        "base": {
          "path": "OPENEHR_DEFINITIONS.Local_terminology_id",
          "min": 1,
          "max": "1"
        },
        "type": [
          {
            "code": "string"
          }
        ],
        "isModifier": false
      },
      {
        "id": "DV_AMOUNT.normal-status",
        "path": "DV_AMOUNT.normal_status",
        "short": "Optional normal status indicator of value with respect to normal range for this value.",
        "definition": "Optional normal status indicator of value with respect to normal range for this value. Often included by lab, even if the normal range itself is not included. Coded by ordinals in series HHH, HH, H, (nothing), L, LL, LLL; see openEHR terminology group  `normal_status`.",
        "min": 0,
        "max": "1",
        "base": {
          "path": "DV_ORDERED.normal_status",
          "min": 0,
          "max": "1"
        },
        "type": [
          {
            "code": "http://openehr.org/fhir/StructureDefinition/CODE-PHRASE"
          }
        ],
        "isModifier": false
      },
      {
        "id": "DV_AMOUNT.normal-range",
        "path": "DV_AMOUNT.normal_range",
        "short": "Optional normal range.",
        "definition": "Optional normal range.",
        "min": 0,
        "max": "1",
        "base": {
          "path": "DV_ORDERED.normal_range",
          "min": 0,
          "max": "1"
        },
        "type": [
          {
            "code": "http://openehr.org/fhir/StructureDefinition/DV-INTERVAL"
          }
        ],
        "isModifier": false
      },
      {
        "id": "DV_AMOUNT.other-reference-ranges",
        "path": "DV_AMOUNT.other_reference_ranges",
        "short": "Optional tagged other reference ranges for this value in its particular measurement context.",
        "definition": "Optional tagged other reference ranges for this value in its particular measurement context.",
        "min": 0,
        "max": "*",
        "base": {
          "path": "DV_ORDERED.other_reference_ranges",
          "min": 0,
          "max": "*"
        },
        "type": [
          {
            "extension": [
              {
                "extension": [
                  {
                    "url": "name",
                    "valueCode": "T"
                  },
                  {
                    "url": "type",
                    "valueUri": "http://openehr.org/fhir/StructureDefinition/DV-ORDERED"
                  }
                ],
                "url": "http://hl7.org/fhir/tools/StructureDefinition/type-parameter"
              }
            ],
            "code": "http://openehr.org/fhir/StructureDefinition/REFERENCE-RANGE"
          }
        ],
        "isModifier": false
      },
      {
        "id": "DV_AMOUNT.magnitude-status",
        "path": "DV_AMOUNT.magnitude_status",
        "short": "Optional status of magnitude with values: \n\n* `\"=\"`   :   magnitude is a point value \n* `\"<\"`   :   value is < magnitude \n* `\">\"`   :   value is > magnitude \n* `\"<=\"` : value is <= magnitude \n* `\">=\"` : value is >= magnitude \n* `\"~\"`   :   value is approximately magnitude \n\nIf not present, assumed meaning is  `\"=\"` .",
        "definition": "Optional status of magnitude with values: \n\n* `\"=\"`   :   magnitude is a point value \n* `\"<\"`   :   value is < magnitude \n* `\">\"`   :   value is > magnitude \n* `\"<=\"` : value is <= magnitude \n* `\">=\"` : value is >= magnitude \n* `\"~\"`   :   value is approximately magnitude \n\nIf not present, assumed meaning is  `\"=\"` .",
        "min": 0,
        "max": "1",
        "base": {
          "path": "DV_QUANTIFIED.magnitude_status",
          "min": 0,
          "max": "1"
        },
        "type": [
          {
            "code": "string"
          }
        ],
        "isModifier": false
      },
      {
        "id": "DV_AMOUNT.accuracy",
        "path": "DV_AMOUNT.accuracy",
        "short": "Accuracy of measurement, expressed either as a half-range percent value (`_accuracy_is_percent_` = `True`) or a half-range quantity.",
        "definition": "Accuracy of measurement, expressed either as a half-range percent value (`_accuracy_is_percent_` = `True`) or a half-range quantity. A value of `0` means that accuracy is 100%, i.e. no error.\n\nA value of `_unknown_accuracy_value_` means that accuracy was not recorded.",
        "min": 0,
        "max": "1",
        "base": {
          "path": "DV_QUANTIFIED.accuracy",
          "min": 0,
          "max": "1"
        },
        "type": [
          {
            "code": "decimal"
          }
        ],
        "isModifier": false
      },
      {
        "id": "DV_AMOUNT.accuracy-is-percent",
        "path": "DV_AMOUNT.accuracy_is_percent",
        "short": "If `True`, indicates that when this object was created, `_accuracy_` was recorded as a percent value; if `False`, as an absolute quantity value.",
        "definition": "If `True`, indicates that when this object was created, `_accuracy_` was recorded as a percent value; if `False`, as an absolute quantity value.",
        "min": 0,
        "max": "1",
        "base": {
          "path": "DV_AMOUNT.accuracy_is_percent",
          "min": 0,
          "max": "1"
        },
        "type": [
          {
            "code": "boolean"
          }
        ],
        "isModifier": false
      }
    ]
  },
  "differential": {
    "element": [
      {
        "id": "DV_AMOUNT",
        "path": "DV_AMOUNT",
        "short": "Abstract class defining the concept of relative quantified  'amounts'.",
        "definition": "Abstract class defining the concept of relative quantified  'amounts'. For relative quantities, the  `+` and  `-` operators are defined (unlike descendants of `DV_ABSOLUTE_QUANTITY`, such as the date/time types). \n",
        "min": 0,
        "max": "*",
        "constraint": [
          {
            "key": "Accuracy_is_percent_validity",
            "severity": "error",
            "human": "Accuracy is percent validity must satisfy conditional constraints",
            "expression": "accuracy = 0 implies accuracy_is_percent.not()"
          },
          {
            "key": "Accuracy_validity",
            "severity": "error",
            "human": "Accuracy validity must satisfy conditional constraints",
            "expression": "accuracy_is_percent implies valid_percentage() (accuracy)"
          }
        ],
        "isModifier": false
      },
      {
        "id": "DV_AMOUNT.accuracy-is-percent",
        "path": "DV_AMOUNT.accuracy_is_percent",
        "short": "If `True`, indicates that when this object was created, `_accuracy_` was recorded as a percent value; if `False`, as an absolute quantity value.",
        "definition": "If `True`, indicates that when this object was created, `_accuracy_` was recorded as a percent value; if `False`, as an absolute quantity value.",
        "min": 0,
        "max": "1",
        "type": [
          {
            "code": "boolean"
          }
        ],
        "isModifier": false
      },
      {
        "id": "DV_AMOUNT.accuracy",
        "path": "DV_AMOUNT.accuracy",
        "short": "Accuracy of measurement, expressed either as a half-range percent value (`_accuracy_is_percent_` = `True`) or a half-range quantity.",
        "definition": "Accuracy of measurement, expressed either as a half-range percent value (`_accuracy_is_percent_` = `True`) or a half-range quantity. A value of `0` means that accuracy is 100%, i.e. no error.\n\nA value of `_unknown_accuracy_value_` means that accuracy was not recorded.",
        "min": 0,
        "max": "1",
        "type": [
          {
            "code": "decimal"
          }
        ],
        "isModifier": false
      }
    ]
  }
}