0.1.0 - ci-build International flag

JohnMoehrkeTestBundle, published by John Moehrke (himself). This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/JohnMoehrke/testBundle/ and changes regularly. See the Directory of published versions

Example Bundle

The Bundle examples include security tagging. Below is narrative extract. To see the whole Bundle look to the Example Bundle.

{
    "resourceType" : "Bundle",
    "meta" : {
        "security" : [{
            "system" : "http://terminology.hl7.org/CodeSystem/v3-ActCode",
            "code" : "DELAU"
        },
        {
            "system" : "http://terminology.hl7.org/CodeSystem/v3-Confidentiality",
            "code" : "R"
        }]
    },
    "type" : "searchset",
 ... other headers etc.....
    "entry" : [
 ... other entries ....
    {
        "resource": {
            "resourceType" : "DocumentReference",
            "id" : "1",
            "meta" : {
                "security" : [{
                    "system" : "http://terminology.hl7.org/CodeSystem/v3-ActCode",
                    "code" : "ETHUD"
                },
                {
                    "system" : "http://terminology.hl7.org/CodeSystem/v3-Confidentiality",
                    "code" : "R"
                }]
            },
  ... other content etc.....
        }
    },
  ... other entries ....     

    ]
}