Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleSTEP 3: Optionally, add any custom or extension profiles you wish to add onto the standard specification

If any custom or extension profiles are needed you can add the <custom_profiles>.json files to the Specifications/Custom folder. Note that if the custom profile’s specification exists as a standalone resource, it will need to be nested within a larger bundle resource definition. For example, this custom patient profile’s specification would go under the resource table:

Code Block
languagejson
{
    "entry": [
        {
            "fullUrl": "http://hl7.org/fhir/StructureDefinition/Patient",
            "resource": {
                "resourceType": "StructureDefinition",
                "id": "custom-patient-profile",
                ....
            }
        }
    ],
    "id": "resources",
    "meta": {
        "lastUpdated": "2019-11-01T09:29:23.356+11:00"
    },
    "resourceType": "Bundle",
    "type": "collection"
}

...