FHIR © HL7.org  |  Server Home  |  XIG Home  |  XIG Stats  |  Server Source  |  FHIR  

FHIR IG Statistics: StructureMap/Annotation3to4

Packagehl7.fhir.uv.xver
Resource TypeStructureMap
IdAnnotation3to4
FHIR VersionR5
Sourcehttp://hl7.org/fhir/extensions/https://build.fhir.org/ig/HL7/fhir-cross-version/StructureMap-Annotation3to4.html
URLhttp://hl7.org/fhir/StructureMap/Annotation3to4
Version0.1.0
Statusactive
Date2024-02-22T03:16:50+00:00
NameAnnotation3to4
TitleAnnotation Transforms: R3 to R4
Realmuv
Authorityhl7
DescriptionAnnotationTransformsR3toR4

Resources that use this resource

No resources found


Resources that this resource uses

No resources found


Narrative

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

/// url = 'http://hl7.org/fhir/StructureMap/Annotation3to4'
/// name = 'Annotation3to4'
/// title = 'Annotation Transforms: R3 to R4'
/// status = 'active'

uses "http://hl7.org/fhir/3.0/Annotation" alias AnnotationR3 as source
uses "http://hl7.org/fhir/3.0/string" alias StringR3 as source
uses "http://hl7.org/fhir/4.0/Annotation" alias Annotation as target

imports "http://hl7.org/fhir/StructureMap/*3to4"

group Annotation(source src : AnnotationR3, target tgt : Annotation) extends Element <<type+>> {
  src.author : Reference as vs -> tgt.author = create('Reference') as vt then Reference(vs, vt);
  src.author : string as vs -> tgt.author = create('string') as vt then string(vs, vt);
  src.time -> tgt.time;
  src.text -> tgt.text;
}

group string2Annotation(source src : stringR3, target tgt : Annotation) extends Element <<types>> {
  src -> tgt.text as vt0 then string(src, vt0) "text";
}


Source

{
  "resourceType": "StructureMap",
  "id": "Annotation3to4",
  "text": {
    "status": "generated",
    "div": "<!-- snip (see above) -->"
  },
  "extension": [
    {
      "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg",
      "valueCode": "fhir"
    },
    {
      "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm",
      "valueInteger": 1,
      "_valueInteger": {
        "extension": [
          {
            "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-conformance-derivedFrom",
            "valueCanonical": "http://hl7.org/fhir/extensions/ImplementationGuide/hl7.fhir.uv.xver"
          }
        ]
      }
    },
    {
      "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status",
      "valueCode": "draft",
      "_valueCode": {
        "extension": [
          {
            "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-conformance-derivedFrom",
            "valueCanonical": "http://hl7.org/fhir/extensions/ImplementationGuide/hl7.fhir.uv.xver"
          }
        ]
      }
    }
  ],
  "url": "http://hl7.org/fhir/StructureMap/Annotation3to4",
  "version": "0.1.0",
  "name": "Annotation3to4",
  "title": "Annotation Transforms: R3 to R4",
  "status": "active",
  "date": "2024-02-22T03:16:50+00:00",
  "publisher": "HL7 International / FHIR Infrastructure",
  "contact": [
    {
      "telecom": [
        {
          "system": "url",
          "value": "http://www.hl7.org/Special/committees/fiwg"
        }
      ]
    }
  ],
  "description": "AnnotationTransformsR3toR4",
  "jurisdiction": [
    {
      "coding": [
        {
          "system": "http://unstats.un.org/unsd/methods/m49/m49.htm",
          "code": "001"
        }
      ]
    }
  ],
  "structure": [
    {
      "url": "http://hl7.org/fhir/3.0/Annotation",
      "mode": "source",
      "alias": "AnnotationR3"
    },
    {
      "url": "http://hl7.org/fhir/3.0/string",
      "mode": "source",
      "alias": "StringR3"
    },
    {
      "url": "http://hl7.org/fhir/4.0/Annotation",
      "mode": "target",
      "alias": "Annotation"
    }
  ],
  "import": [
    "http://hl7.org/fhir/StructureMap/*3to4"
  ],
  "group": [
    {
      "name": "Annotation",
      "extends": "Element",
      "typeMode": "type-and-types",
      "input": [
        {
          "name": "src",
          "type": "AnnotationR3",
          "mode": "source"
        },
        {
          "name": "tgt",
          "type": "Annotation",
          "mode": "target"
        }
      ],
      "rule": [
        {
          "name": "authorReference",
          "source": [
            {
              "context": "src",
              "type": "Reference",
              "element": "author",
              "variable": "vs"
            }
          ],
          "target": [
            {
              "context": "tgt",
              "element": "author",
              "variable": "vt",
              "transform": "create",
              "parameter": [
                {
                  "valueString": "Reference"
                }
              ]
            }
          ],
          "dependent": [
            {
              "name": "Reference",
              "parameter": [
                {
                  "valueId": "vs"
                },
                {
                  "valueId": "vt"
                }
              ]
            }
          ]
        },
        {
          "name": "authorString",
          "source": [
            {
              "context": "src",
              "type": "string",
              "element": "author",
              "variable": "vs"
            }
          ],
          "target": [
            {
              "context": "tgt",
              "element": "author",
              "variable": "vt",
              "transform": "create",
              "parameter": [
                {
                  "valueString": "string"
                }
              ]
            }
          ],
          "dependent": [
            {
              "name": "string",
              "parameter": [
                {
                  "valueId": "vs"
                },
                {
                  "valueId": "vt"
                }
              ]
            }
          ]
        },
        {
          "name": "time",
          "source": [
            {
              "context": "src",
              "element": "time",
              "variable": "vvv"
            }
          ],
          "target": [
            {
              "context": "tgt",
              "element": "time",
              "variable": "vvv",
              "transform": "create"
            }
          ],
          "dependent": [
            {
              "name": "DefaultMappingGroupAnonymousAlias",
              "parameter": [
                {
                  "valueId": "vvv"
                },
                {
                  "valueId": "vvv"
                }
              ]
            }
          ]
        },
        {
          "name": "text",
          "source": [
            {
              "context": "src",
              "element": "text",
              "variable": "vvv"
            }
          ],
          "target": [
            {
              "context": "tgt",
              "element": "text",
              "variable": "vvv",
              "transform": "create"
            }
          ],
          "dependent": [
            {
              "name": "DefaultMappingGroupAnonymousAlias",
              "parameter": [
                {
                  "valueId": "vvv"
                },
                {
                  "valueId": "vvv"
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "string2Annotation",
      "extends": "Element",
      "typeMode": "types",
      "input": [
        {
          "name": "src",
          "type": "stringR3",
          "mode": "source"
        },
        {
          "name": "tgt",
          "type": "Annotation",
          "mode": "target"
        }
      ],
      "rule": [
        {
          "name": "text",
          "source": [
            {
              "context": "src"
            }
          ],
          "target": [
            {
              "context": "tgt",
              "element": "text",
              "variable": "vt0"
            }
          ],
          "dependent": [
            {
              "name": "string",
              "parameter": [
                {
                  "valueId": "src"
                },
                {
                  "valueId": "vt0"
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}