diff --git a/.devcontainer/scripts/init-container.sh b/.devcontainer/scripts/init-container.sh index a958a85..8e72752 100644 --- a/.devcontainer/scripts/init-container.sh +++ b/.devcontainer/scripts/init-container.sh @@ -2,6 +2,7 @@ set -e +sudo luarocks install argparse sudo luarocks install lua-cjson sudo luarocks install rapidjson sudo luarocks install lunajson diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d2cf68a --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,26 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Debug Lua Interpreter", + "type": "lua-local", + "request": "launch", + "program": { + "lua": "lua", + "file": "${file}" + } + }, + { + "name": "Debug Custom Lua Environment", + "type": "lua-local", + "request": "launch", + "program": { + "command": "command" + }, + "args": [] + } + ] +} diff --git a/README.md b/README.md index 01cd8c5..62d7815 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,27 @@ to_json("/path/to/file", {file = true}) to_json("xml content", {pretty = true}) -- convert an XML file given as a location to JSON and prettyprint it to_json("/path/to/file", {file = true, pretty = true}) +-- supported versions are 'R4', 'STU3', and 'auto' (default) +-- 'auto' will try all FHIR versions starting from R4 and going down +to_json("xml content", {fhirversion = "R4"}) +to_json("xml content", {fhirversion = "STU3"}) +to_json("xml content", {fhirversion = "auto"}) -- convert given JSON content as a string to XML to_xml("json content") -- convert an JSON file given as a location to XML to_xml("/path/to/file", {file = true}) - --- get the FHIR definition of an element +-- convert JSON content as a string to XML and prettyprint it +to_xml("json content", {pretty = true}) +-- convert an JSON file given as a location to XML and prettyprint it +to_xml("/path/to/file", {file = true, pretty = true}) +-- supported versions are 'R4', 'STU3', and 'auto' (default) +-- 'auto' will try all FHIR versions starting from R4 and going down +to_xml("json content", {fhirversion = "R4"}) +to_xml("json content", {fhirversion = "STU3"}) +to_xml("json content", {fhirversion = "auto"}) + +-- get the FHIR definition of an element. Defaults to STU3 get_fhir_definition('Patient', 'animal', 'species') -- returns a table with metadata about the element. Do not modify this table. Keys are: -- _min (int): minimum cardinality @@ -39,6 +53,10 @@ get_fhir_definition('Patient', 'animal', 'species') -- _type (string): FHIR element type. Possible values are: Address, Age, Annotation, Attachment, BackboneElement, CodeableConcept, Coding, ContactDetail, ContactPoint, Contributor, Count, DataRequirement, Distance, DomainResource, Duration, Element, ElementDefinition, Extension, HumanName, Identifier, Meta, Money, Narrative, ParameterDefinition, Period, Quantity, Range, Ratio, Reference, RelatedResource, Resource, SampledData, Signature, Timing, TriggerDefinition, UsageContext, base64Binary, boolean, code, date, dateTime, decimal, id, instant, integer, markdown, oid, positiveInt, string, time, unsignedInt, uri, xhtml -- [1]: if present, this is a link to the base type of the resource -- _derivations: if present, this is a map of resources that extend on this resource + +-- last argument can be either 'R4' or 'STU3' to specify version. Defaults to STU3 +get_fhir_definition('Patient', 'contact', 'relationship', 'R4') +get_fhir_definition('Patient', 'animal', 'species', 'STU3') ``` ### Examples diff --git a/spec/R4/auto_versioning_spec.lua b/spec/R4/auto_versioning_spec.lua new file mode 100644 index 0000000..07e9eaf --- /dev/null +++ b/spec/R4/auto_versioning_spec.lua @@ -0,0 +1,65 @@ +--[[ + FHIR Formats + + Copyright (C) 2016 Vadim Peretokin + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +]] + +package.path = "src/?.lua;"..package.path +local in_fhir_json = require("fhirformats").to_json +local in_fhir_xml = require("fhirformats").to_xml +local cjson = require("cjson") +local xml = require("xml") +local inspect = require("inspect") + +describe("auto-version xml to json", function() + local positive_example, negative_example, immunization_example, + positive_example_data, immunization_example_data + + setup(function() + io.input("spec/R4/stu3-immunization.json") + positive_example_data = io.read("*a") + immunization_example_data = in_fhir_json("spec/R4/stu3-immunization.xml", {file = true, fhirversion = "auto"}) + + -- for same div data test + assert:set_parameter("TableFormatLevel", -1) + end) + + before_each(function() + positive_example = cjson.decode(positive_example_data) + immunization_example = cjson.decode(immunization_example_data) + end) + + it("should have the same non-div data", function() + assert.same(positive_example, immunization_example) + end) + end) + +describe("auto-version json to xml", function() + local positive_example, negative_example, immunization_example, + positive_example_data, immunization_example_data + + setup(function() + io.input("spec/R4/stu3-immunization.xml") + positive_example_data = io.read("*a") + immunization_example_data = in_fhir_xml("spec/R4/stu3-immunization.json", {file = true, fhirversion = "auto"}) + + -- for same div data test + assert:set_parameter("TableFormatLevel", -1) + end) + + it("should have the same data, order included", function() + assert.same(positive_example_data, immunization_example_data) + end) + end) diff --git a/spec/R4/deviceusestatement-example.json b/spec/R4/deviceusestatement-example.json new file mode 100644 index 0000000..edcd841 --- /dev/null +++ b/spec/R4/deviceusestatement-example.json @@ -0,0 +1,27 @@ +{ + "resourceType": "DeviceUseStatement", + "id": "example", + "text": { + "status": "generated", + "div": "

Generated Narrative with Details

id: example

identifier: 51ebb7a9-4e3a-4360-9a05-0cc2d869086f

status: active

subject: Patient/example

device: Device/example

reasonReference: Appendectomy (surgery)

" + }, + "identifier": [ + { + "system": "http:goodhealth.org/identifiers", + "value": "51ebb7a9-4e3a-4360-9a05-0cc2d869086f" + } + ], + "status": "active", + "subject": { + "reference": "Patient/example" + }, + "device": { + "reference": "Device/example" + }, + "reasonReference": [ + { + "reference": "Procedure/example", + "display": "Appendectomy (surgery)" + } + ] +} \ No newline at end of file diff --git a/spec/R4/deviceusestatement-example.xml b/spec/R4/deviceusestatement-example.xml new file mode 100644 index 0000000..37d99e3 --- /dev/null +++ b/spec/R4/deviceusestatement-example.xml @@ -0,0 +1,18 @@ + + +

Generated Narrative with Details

id: example

identifier: 51ebb7a9-4e3a-4360-9a05-0cc2d869086f

status: active

subject: Patient/example

device: Device/example

reasonReference: Appendectomy (surgery)

+ + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/spec/R4/deviceusestatement_spec.lua b/spec/R4/deviceusestatement_spec.lua new file mode 100644 index 0000000..ff28d32 --- /dev/null +++ b/spec/R4/deviceusestatement_spec.lua @@ -0,0 +1,81 @@ +--[[ + FHIR Formats + + Copyright (C) 2022 Vadim Peretokin + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +]] + +package.path = "src/?.lua;"..package.path +local in_fhir_json = require("fhirformats").to_json +local in_fhir_xml = require("fhirformats").to_xml +local cjson = require("cjson") +local xml = require("xml") +local inspect = require("inspect") + +describe("xml to json", function() + local positive_example, negative_example, deviceusestatement_example, + positive_example_data, deviceusestatement_example_data + + setup(function() + io.input("spec/R4/deviceusestatement-example.json") + positive_example_data = io.read("*a") + deviceusestatement_example_data = in_fhir_json("spec/R4/deviceusestatement-example.xml", + {file = true, fhirversion = "R4"}) + + -- for same div data test + assert:set_parameter("TableFormatLevel", -1) + end) + + before_each(function() + positive_example = cjson.decode(positive_example_data) + deviceusestatement_example = cjson.decode(deviceusestatement_example_data) + end) + + it("should have the same non-div data", function() + -- cut out the div's, since the whitespace doesn't matter as much in xml + positive_example.text.div = nil + deviceusestatement_example.text.div = nil + assert.same(positive_example, deviceusestatement_example) + end) + + it("should have xml-comparable div data", function() + local positive_example_div = xml.load(positive_example.text.div) + local deviceusestatement_example_div = xml.load(deviceusestatement_example.text.div) + --print(inspect(positive_example_div)) + --print(inspect(deviceusestatement_example_div)) + assert.same(positive_example_div, deviceusestatement_example_div) + end) + end) + +describe("json to xml", function() + local positive_example, negative_example, deviceusestatement_example, + positive_example_data, deviceusestatement_example_data + + setup(function() + io.input("spec/R4/deviceusestatement-example.xml") + positive_example_data = io.read("*a") + deviceusestatement_example_data = in_fhir_xml("spec/R4/deviceusestatement-example.json", + {file = true, fhirversion = "R4"}) + + -- for same div data test + assert:set_parameter("TableFormatLevel", -1) + end) + + it("should have the same data", function() + -- convert it down to JSON since order of elements doesn't matter in JSON, while it does in XML + assert.same( + cjson.decode(in_fhir_json(positive_example_data, {fhirversion = "R4"})), + cjson.decode(in_fhir_json(deviceusestatement_example_data, {fhirversion = "R4"}))) + end) + end) diff --git a/spec/R4/immunization-example.json b/spec/R4/immunization-example.json new file mode 100644 index 0000000..b469a22 --- /dev/null +++ b/spec/R4/immunization-example.json @@ -0,0 +1,132 @@ +{ + "resourceType": "Immunization", + "id": "example", + "text": { + "status": "generated", + "div": "

Generated Narrative with Details

id: example

identifier: urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234

status: completed

vaccineCode: Fluvax (Influenza) (Details : {urn:oid:1.2.36.1.2001.1005.17 code 'FLUVAX' = 'Fluvax)

patient: Patient/example

encounter: Encounter/example

occurrence: 10/01/2013

primarySource: true

location: Location/1

manufacturer: Organization/hl7

lotNumber: AAJN11K

expirationDate: 15/02/2015

site: left arm (Details : {http://terminology.hl7.org/CodeSystem/v3-ActSite code 'LA' = 'left arm', given as 'left arm'})

route: Injection, intramuscular (Details : {http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration code 'IM' = 'Injection, intramuscular', given as 'Injection, intramuscular'})

doseQuantity: 5 mg (Details: UCUM code mg = 'mg')

performer

function: Ordering Provider (Details : {http://terminology.hl7.org/CodeSystem/v2-0443 code 'OP' = 'Ordering Provider)

actor: Practitioner/example

performer

function: Administering Provider (Details : {http://terminology.hl7.org/CodeSystem/v2-0443 code 'AP' = 'Administering Provider)

actor: Practitioner/example

note: Notes on adminstration of vaccine

reasonCode: Procedure to meet occupational requirement (Details : {SNOMED CT code '429060002' = 'Procedure to meet occupational requirement)

isSubpotent: true

Educations

-DocumentTypePublicationDatePresentationDate
*25308869830001031112070202/07/201210/01/2013

programEligibility: Not Eligible (Details : {http://terminology.hl7.org/CodeSystem/immunization-program-eligibility code 'ineligible' = 'Not Eligible)

fundingSource: Private (Details : {http://terminology.hl7.org/CodeSystem/immunization-funding-source code 'private' = 'Private)

" + }, + "identifier": [ + { + "system": "urn:ietf:rfc:3986", + "value": "urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234" + } + ], + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "urn:oid:1.2.36.1.2001.1005.17", + "code": "FLUVAX" + } + ], + "text": "Fluvax (Influenza)" + }, + "patient": { + "reference": "Patient/example" + }, + "encounter": { + "reference": "Encounter/example" + }, + "occurrenceDateTime": "2013-01-10", + "primarySource": true, + "location": { + "reference": "Location/1" + }, + "manufacturer": { + "reference": "Organization/hl7" + }, + "lotNumber": "AAJN11K", + "expirationDate": "2015-02-15", + "site": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActSite", + "code": "LA", + "display": "left arm" + } + ] + }, + "route": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration", + "code": "IM", + "display": "Injection, intramuscular" + } + ] + }, + "doseQuantity": { + "value": 5, + "system": "http://unitsofmeasure.org", + "code": "mg" + }, + "performer": [ + { + "function": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0443", + "code": "OP" + } + ] + }, + "actor": { + "reference": "Practitioner/example" + } + }, + { + "function": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0443", + "code": "AP" + } + ] + }, + "actor": { + "reference": "Practitioner/example" + } + } + ], + "note": [ + { + "text": "Notes on adminstration of vaccine" + } + ], + "reasonCode": [ + { + "coding": [ + { + "system": "http://snomed.info/sct", + "code": "429060002" + } + ] + } + ], + "isSubpotent": true, + "education": [ + { + "documentType": "253088698300010311120702", + "publicationDate": "2012-07-02", + "presentationDate": "2013-01-10" + } + ], + "programEligibility": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/immunization-program-eligibility", + "code": "ineligible" + } + ] + } + ], + "fundingSource": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/immunization-funding-source", + "code": "private" + } + ] + } +} \ No newline at end of file diff --git a/spec/R4/immunization-example.xml b/spec/R4/immunization-example.xml new file mode 100644 index 0000000..18ec551 --- /dev/null +++ b/spec/R4/immunization-example.xml @@ -0,0 +1,99 @@ + + +

Generated Narrative with Details

id: example

identifier: urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234

status: completed

vaccineCode: Fluvax (Influenza) (Details : {urn:oid:1.2.36.1.2001.1005.17 code 'FLUVAX' = 'Fluvax)

patient: Patient/example

encounter: Encounter/example

occurrence: 10/01/2013

primarySource: true

location: Location/1

manufacturer: Organization/hl7

lotNumber: AAJN11K

expirationDate: 15/02/2015

site: left arm (Details : {http://terminology.hl7.org/CodeSystem/v3-ActSite code 'LA' = 'left arm', given as 'left arm'})

route: Injection, intramuscular (Details : {http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration code 'IM' = 'Injection, intramuscular', given as 'Injection, intramuscular'})

doseQuantity: 5 mg (Details: UCUM code mg = 'mg')

performer

function: Ordering Provider (Details : {http://terminology.hl7.org/CodeSystem/v2-0443 code 'OP' = 'Ordering Provider)

actor: Practitioner/example

performer

function: Administering Provider (Details : {http://terminology.hl7.org/CodeSystem/v2-0443 code 'AP' = 'Administering Provider)

actor: Practitioner/example

note: Notes on adminstration of vaccine

reasonCode: Procedure to meet occupational requirement (Details : {SNOMED CT code '429060002' = 'Procedure to meet occupational requirement)

isSubpotent: true

Educations

-DocumentTypePublicationDatePresentationDate
*25308869830001031112070202/07/201210/01/2013

programEligibility: Not Eligible (Details : {http://terminology.hl7.org/CodeSystem/immunization-program-eligibility code 'ineligible' = 'Not Eligible)

fundingSource: Private (Details : {http://terminology.hl7.org/CodeSystem/immunization-funding-source code 'private' = 'Private)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/spec/R4/immunization_spec.lua b/spec/R4/immunization_spec.lua new file mode 100644 index 0000000..5c4e3c7 --- /dev/null +++ b/spec/R4/immunization_spec.lua @@ -0,0 +1,77 @@ +--[[ + FHIR Formats + + Copyright (C) 2022 Vadim Peretokin + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +]] + +package.path = "src/?.lua;"..package.path +local in_fhir_json = require("fhirformats").to_json +local in_fhir_xml = require("fhirformats").to_xml +local cjson = require("cjson") +local xml = require("xml") +local inspect = require("inspect") + +describe("xml to json", function() + local positive_example, negative_example, immunization_example, + positive_example_data, immunization_example_data + + setup(function() + io.input("spec/R4/immunization-example.json") + positive_example_data = io.read("*a") + immunization_example_data = in_fhir_json("spec/R4/immunization-example.xml", {file = true, fhirversion = "R4"}) + + -- for same div data test + assert:set_parameter("TableFormatLevel", -1) + end) + + before_each(function() + positive_example = cjson.decode(positive_example_data) + immunization_example = cjson.decode(immunization_example_data) + end) + + it("should have the same non-div data", function() + -- cut out the div's, since the whitespace doesn't matter as much in xml + positive_example.text.div = nil + immunization_example.text.div = nil + assert.same(positive_example, immunization_example) + end) + + it("should have xml-comparable div data", function() + local positive_example_div = xml.load(positive_example.text.div) + local immunization_example_div = xml.load(immunization_example.text.div) + --print(inspect(positive_example_div)) + --print(inspect(immunization_example_div)) + assert.same(positive_example_div, immunization_example_div) + end) + end) + +describe("json to xml", function() + local positive_example, negative_example, immunization_example, + positive_example_data, immunization_example_data + + setup(function() + io.input("spec/R4/immunization-example.xml") + positive_example_data = io.read("*a") + immunization_example_data = in_fhir_xml("spec/R4/immunization-example.json", {file = true, fhirversion = "R4"}) + + -- for same div data test + assert:set_parameter("TableFormatLevel", -1) + end) + + it("should have the same data", function() + -- convert it down to JSON since order of elements doesn't matter in JSON, while it does in XML + assert.same(cjson.decode(in_fhir_json(positive_example_data, {fhirversion = "R4"})), cjson.decode(in_fhir_json(immunization_example_data, {fhirversion = "R4"}))) + end) + end) diff --git a/spec/R4/stu3-immunization.json b/spec/R4/stu3-immunization.json new file mode 100644 index 0000000..20cf2af --- /dev/null +++ b/spec/R4/stu3-immunization.json @@ -0,0 +1,153 @@ +{ + "resourceType": "Immunization", + "id": "example", + "identifier": [ + { + "system": "urn:ietf:rfc:3986", + "value": "urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234" + } + ], + "status": "completed", + "notGiven": false, + "vaccineCode": { + "coding": [ + { + "system": "urn:oid:1.2.36.1.2001.1005.17", + "code": "FLUVAX" + } + ], + "text": "Fluvax (Influenza)" + }, + "patient": { + "reference": "Patient/example" + }, + "encounter": { + "reference": "Encounter/example" + }, + "date": "2013-01-10", + "primarySource": true, + "location": { + "reference": "Location/1" + }, + "manufacturer": { + "reference": "Organization/hl7" + }, + "lotNumber": "AAJN11K", + "expirationDate": "2015-02-15", + "site": { + "coding": [ + { + "system": "http://hl7.org/fhir/v3/ActSite", + "code": "LA", + "display": "left arm" + } + ] + }, + "route": { + "coding": [ + { + "system": "http://hl7.org/fhir/v3/RouteOfAdministration", + "code": "IM", + "display": "Injection, intramuscular" + } + ] + }, + "doseQuantity": { + "value": 5, + "system": "http://unitsofmeasure.org", + "code": "mg" + }, + "practitioner": [ + { + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/v2/0443", + "code": "OP" + } + ] + }, + "actor": { + "reference": "Practitioner/example" + } + }, + { + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/v2/0443", + "code": "AP" + } + ] + }, + "actor": { + "reference": "Practitioner/example" + } + } + ], + "note": [ + { + "text": "Notes on adminstration of vaccine" + } + ], + "explanation": { + "reason": [ + { + "coding": [ + { + "system": "http://snomed.info/sct", + "code": "429060002" + } + ] + } + ] + }, + "reaction": [ + { + "date": "2013-01-10", + "detail": { + "reference": "Observation/example" + }, + "reported": true + } + ], + "vaccinationProtocol": [ + { + "doseSequence": 1, + "description": "Vaccination Protocol Sequence 1", + "authority": { + "reference": "Organization/hl7" + }, + "series": "Vaccination Series 1", + "seriesDoses": 2, + "targetDisease": [ + { + "coding": [ + { + "system": "http://snomed.info/sct", + "code": "1857005" + } + ] + } + ], + "doseStatus": { + "coding": [ + { + "system": "http://hl7.org/fhir/vaccination-protocol-dose-status", + "code": "count", + "display": "Counts" + } + ] + }, + "doseStatusReason": { + "coding": [ + { + "system": "http://hl7.org/fhir/vaccination-protocol-dose-status-reason", + "code": "coldchbrk", + "display": "Cold chain break" + } + ] + } + } + ] +} diff --git a/spec/R4/stu3-immunization.xml b/spec/R4/stu3-immunization.xml new file mode 100644 index 0000000..d0c92d4 --- /dev/null +++ b/spec/R4/stu3-immunization.xml @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spec/bundle-response.json b/spec/STU3/bundle-response.json similarity index 100% rename from spec/bundle-response.json rename to spec/STU3/bundle-response.json diff --git a/spec/bundle-response.xml b/spec/STU3/bundle-response.xml similarity index 100% rename from spec/bundle-response.xml rename to spec/STU3/bundle-response.xml diff --git a/spec/complex-type-with-extension.json b/spec/STU3/complex-type-with-extension.json similarity index 100% rename from spec/complex-type-with-extension.json rename to spec/STU3/complex-type-with-extension.json diff --git a/spec/complex-type-with-extension.xml b/spec/STU3/complex-type-with-extension.xml similarity index 100% rename from spec/complex-type-with-extension.xml rename to spec/STU3/complex-type-with-extension.xml diff --git a/spec/STU3/convert-json-edge-cases.lua b/spec/STU3/convert-json-edge-cases.lua new file mode 100644 index 0000000..c0350a1 --- /dev/null +++ b/spec/STU3/convert-json-edge-cases.lua @@ -0,0 +1,10 @@ +package.path = "src/?.lua;"..package.path +local to_json = require("fhirformats").to_json +local to_xml = require("fhirformats").to_xml +local inspect = require("inspect") + +io.output("spec/STU3/json-edge-cases (fhir-formats).xml") +io.write(to_xml("spec/STU3/json-edge-cases.json", {file = true, fhirversion = "STU3"})) +io.output("spec/STU3/json-edge-cases (fhir-formats).json") +io.write(to_json("spec/STU3/json-edge-cases.xml", {file=true, pretty = true}, "STU3")) +io.output():close() diff --git a/spec/dynamic_spec.lua b/spec/STU3/dynamic_spec.lua similarity index 93% rename from spec/dynamic_spec.lua rename to spec/STU3/dynamic_spec.lua index 325a4f6..f2865ed 100644 --- a/spec/dynamic_spec.lua +++ b/spec/STU3/dynamic_spec.lua @@ -40,9 +40,9 @@ for _, testcase in ipairs(data) do describe(case_name.." xml to json", function() -- do the setup outside of setup(), as setup() can't handle creating it()'s within it local t = {} - io.input("spec/"..json_file) + io.input("spec/STU3/"..json_file) t.json_data = io.read("*a") - t.xml_data = in_fhir_json("spec/"..xml_file, {file = true}) + t.xml_data = in_fhir_json("spec/STU3/"..xml_file, {file = true, fhirversion = "STU3"}) t.json_example = cjson.decode(t.json_data) t.xml_example = cjson.decode(t.xml_data) @@ -78,9 +78,9 @@ for _, testcase in ipairs(data) do describe(case_name.. " json to xml", function() -- do the setup outside of setup(), as setup() can't handle creating it()'s within it local t = {} - io.input("spec/"..xml_file) + io.input("spec/STU3/"..xml_file) t.xml_data = io.read("*a") - t.json_data = in_fhir_xml("spec/"..json_file, {file = true}) + t.json_data = in_fhir_xml("spec/STU3/"..json_file, {file = true, fhirversion = "STU3"}) t.json_example = xml.load(t.json_data) t.xml_example = xml.load(t.xml_data) diff --git a/spec/handle_previously_problematic_cases_spec.lua b/spec/STU3/handle_previously_problematic_cases_spec.lua similarity index 98% rename from spec/handle_previously_problematic_cases_spec.lua rename to spec/STU3/handle_previously_problematic_cases_spec.lua index 68b00d8..a8e8a61 100644 --- a/spec/handle_previously_problematic_cases_spec.lua +++ b/spec/STU3/handle_previously_problematic_cases_spec.lua @@ -68,7 +68,7 @@ describe("previously failing conversions", function() -]]) +]], {fhirversion = "STU3"}) end) describe("should handle ValueSet.url correctly", function() @@ -132,7 +132,8 @@ describe("previously failing conversions", function() ], "date": "2015-06-22", "description": "This is an example value set that includes all the LOINC codes for serum/plasma cholesterol from v2.36.", - "copyright": "This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use."}]]) + "copyright": "This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use."}]], + {fhirversion = "STU3"}) end) -end) \ No newline at end of file +end) diff --git a/spec/json-edge-cases (fhir-formats).json b/spec/STU3/json-edge-cases (fhir-formats).json similarity index 100% rename from spec/json-edge-cases (fhir-formats).json rename to spec/STU3/json-edge-cases (fhir-formats).json diff --git a/spec/json-edge-cases (fhir-formats).xml b/spec/STU3/json-edge-cases (fhir-formats).xml similarity index 100% rename from spec/json-edge-cases (fhir-formats).xml rename to spec/STU3/json-edge-cases (fhir-formats).xml diff --git a/spec/json-edge-cases.json b/spec/STU3/json-edge-cases.json similarity index 100% rename from spec/json-edge-cases.json rename to spec/STU3/json-edge-cases.json diff --git a/spec/json-edge-cases.xml b/spec/STU3/json-edge-cases.xml similarity index 100% rename from spec/json-edge-cases.xml rename to spec/STU3/json-edge-cases.xml diff --git a/spec/misc_functions_spec.lua b/spec/STU3/misc_functions_spec.lua similarity index 100% rename from spec/misc_functions_spec.lua rename to spec/STU3/misc_functions_spec.lua diff --git a/spec/patient-example-good.json b/spec/STU3/patient-example-good.json similarity index 100% rename from spec/patient-example-good.json rename to spec/STU3/patient-example-good.json diff --git a/spec/patient-example.xml b/spec/STU3/patient-example.xml similarity index 100% rename from spec/patient-example.xml rename to spec/STU3/patient-example.xml diff --git a/spec/patient_example_spec.lua b/spec/STU3/patient_example_spec.lua similarity index 84% rename from spec/patient_example_spec.lua rename to spec/STU3/patient_example_spec.lua index 755a3a5..3a68f06 100644 --- a/spec/patient_example_spec.lua +++ b/spec/STU3/patient_example_spec.lua @@ -28,9 +28,9 @@ describe("xml to json", function() positive_example_data, patient_example_data setup(function() - io.input("spec/patient-example-good.json") + io.input("spec/STU3/patient-example-good.json") positive_example_data = io.read("*a") - patient_example_data = in_fhir_json("spec/patient-example.xml", {file = true}) + patient_example_data = in_fhir_json("spec/STU3/patient-example.xml", {file = true, fhirversion = "STU3"}) -- for same div data test assert:set_parameter("TableFormatLevel", -1) @@ -62,9 +62,9 @@ describe("json to xml", function() positive_example_data, patient_example_data setup(function() - io.input("spec/patient-example.xml") + io.input("spec/STU3/patient-example.xml") positive_example_data = io.read("*a") - patient_example_data = in_fhir_xml("spec/patient-example-good.json", {file = true}) + patient_example_data = in_fhir_xml("spec/STU3/patient-example-good.json", {file = true, fhirversion = "STU3"}) -- for same div data test assert:set_parameter("TableFormatLevel", -1) @@ -72,6 +72,6 @@ describe("json to xml", function() it("should have the same data", function() -- convert it down to JSON since order of elements doesn't matter in JSON, while it does in XML - assert.same(cjson.decode(in_fhir_json(positive_example_data)), cjson.decode(in_fhir_json(patient_example_data))) + assert.same(cjson.decode(in_fhir_json(positive_example_data, {fhirversion = "STU3"})), cjson.decode(in_fhir_json(patient_example_data, {fhirversion = "STU3"}))) end) - end) \ No newline at end of file + end) diff --git a/spec/convert-json-edge-cases.lua b/spec/convert-json-edge-cases.lua deleted file mode 100644 index f2555a8..0000000 --- a/spec/convert-json-edge-cases.lua +++ /dev/null @@ -1,10 +0,0 @@ -package.path = "src/?.lua;"..package.path -local to_json = require("fhirformats").to_json -local to_xml = require("fhirformats").to_xml -local inspect = require("inspect") - -io.output("spec/json-edge-cases (fhir-formats).xml") -io.write(to_xml("spec/json-edge-cases.json", {file = true})) -io.output("spec/json-edge-cases (fhir-formats).json") -io.write(to_json("spec/json-edge-cases.xml", {file=true, pretty = true})) -io.output():close() \ No newline at end of file diff --git a/src/fhir-data/R4/fhir-elements.json b/src/fhir-data/R4/fhir-elements.json new file mode 100644 index 0000000..44f7fb9 --- /dev/null +++ b/src/fhir-data/R4/fhir-elements.json @@ -0,0 +1,59858 @@ +[ + { + "min": 0, + "path": "Element", + "weight": 1, + "max": "*", + "kind": "complex-type", + "derivations": [ + "Address", + "Annotation", + "Attachment", + "BackboneElement", + "CodeableConcept", + "Coding", + "ContactDetail", + "ContactPoint", + "Contributor", + "DataRequirement", + "Expression", + "Extension", + "HumanName", + "Identifier", + "Meta", + "Money", + "Narrative", + "ParameterDefinition", + "Period", + "Quantity", + "Range", + "Ratio", + "Reference", + "RelatedArtifact", + "SampledData", + "Signature", + "TriggerDefinition", + "UsageContext", + "base64Binary", + "boolean", + "date", + "dateTime", + "decimal", + "instant", + "integer", + "string", + "time", + "uri", + "xhtml" + ] + }, + { + "min": 0, + "path": "Element.id", + "weight": 2, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Element.extension", + "weight": 3, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BackboneElement", + "weight": 4, + "max": "*", + "kind": "complex-type", + "derivations": [ + "Dosage", + "ElementDefinition", + "MarketingStatus", + "Population", + "ProdCharacteristic", + "ProductShelfLife", + "SubstanceAmount", + "Timing" + ], + "type": "Element" + }, + { + "min": 0, + "path": "BackboneElement.id", + "weight": 5, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "BackboneElement.extension", + "weight": 6, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BackboneElement.modifierExtension", + "weight": 7, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "base64Binary", + "weight": 8, + "max": "*", + "kind": "primitive-type", + "type": "Element" + }, + { + "min": 0, + "path": "base64Binary.id", + "weight": 9, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "base64Binary.extension", + "weight": 10, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "base64Binary.value", + "weight": 11, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "boolean", + "weight": 12, + "max": "*", + "kind": "primitive-type", + "type": "Element" + }, + { + "min": 0, + "path": "boolean.id", + "weight": 13, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "boolean.extension", + "weight": 14, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "boolean.value", + "weight": 15, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.Boolean" + }, + { + "min": 0, + "path": "canonical", + "weight": 16, + "max": "*", + "kind": "primitive-type", + "type": "uri" + }, + { + "min": 0, + "path": "canonical.id", + "weight": 17, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "canonical.extension", + "weight": 18, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "canonical.value", + "weight": 19, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "code", + "weight": 20, + "max": "*", + "kind": "primitive-type", + "type": "string" + }, + { + "min": 0, + "path": "code.id", + "weight": 21, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "code.extension", + "weight": 22, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "code.value", + "weight": 23, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "date", + "weight": 24, + "max": "*", + "kind": "primitive-type", + "type": "Element" + }, + { + "min": 0, + "path": "date.id", + "weight": 25, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "date.extension", + "weight": 26, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "date.value", + "weight": 27, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.Date" + }, + { + "min": 0, + "path": "dateTime", + "weight": 28, + "max": "*", + "kind": "primitive-type", + "type": "Element" + }, + { + "min": 0, + "path": "dateTime.id", + "weight": 29, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "dateTime.extension", + "weight": 30, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "dateTime.value", + "weight": 31, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.DateTime" + }, + { + "min": 0, + "path": "decimal", + "weight": 32, + "max": "*", + "kind": "primitive-type", + "type": "Element" + }, + { + "min": 0, + "path": "decimal.id", + "weight": 33, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "decimal.extension", + "weight": 34, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "decimal.value", + "weight": 35, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.Decimal" + }, + { + "min": 0, + "path": "id", + "weight": 36, + "max": "*", + "kind": "primitive-type", + "type": "string" + }, + { + "min": 0, + "path": "id.id", + "weight": 37, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "id.extension", + "weight": 38, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "id.value", + "weight": 39, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "instant", + "weight": 40, + "max": "*", + "kind": "primitive-type", + "type": "Element" + }, + { + "min": 0, + "path": "instant.id", + "weight": 41, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "instant.extension", + "weight": 42, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "instant.value", + "weight": 43, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.DateTime" + }, + { + "min": 0, + "path": "integer", + "weight": 44, + "max": "*", + "kind": "primitive-type", + "derivations": [ + "positiveInt", + "unsignedInt" + ], + "type": "Element" + }, + { + "min": 0, + "path": "integer.id", + "weight": 45, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "integer.extension", + "weight": 46, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "integer.value", + "weight": 47, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.Integer" + }, + { + "min": 0, + "path": "markdown", + "weight": 48, + "max": "*", + "kind": "primitive-type", + "type": "string" + }, + { + "min": 0, + "path": "markdown.id", + "weight": 49, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "markdown.extension", + "weight": 50, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "markdown.value", + "weight": 51, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "oid", + "weight": 52, + "max": "*", + "kind": "primitive-type", + "type": "uri" + }, + { + "min": 0, + "path": "oid.id", + "weight": 53, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "oid.extension", + "weight": 54, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "oid.value", + "weight": 55, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "positiveInt", + "weight": 56, + "max": "*", + "kind": "primitive-type", + "type": "integer" + }, + { + "min": 0, + "path": "positiveInt.id", + "weight": 57, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "positiveInt.extension", + "weight": 58, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "positiveInt.value", + "weight": 59, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "string", + "weight": 60, + "max": "*", + "kind": "primitive-type", + "derivations": [ + "code", + "id", + "markdown" + ], + "type": "Element" + }, + { + "min": 0, + "path": "string.id", + "weight": 61, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "string.extension", + "weight": 62, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "string.value", + "weight": 63, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "time", + "weight": 64, + "max": "*", + "kind": "primitive-type", + "type": "Element" + }, + { + "min": 0, + "path": "time.id", + "weight": 65, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "time.extension", + "weight": 66, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "time.value", + "weight": 67, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.Time" + }, + { + "min": 0, + "path": "unsignedInt", + "weight": 68, + "max": "*", + "kind": "primitive-type", + "type": "integer" + }, + { + "min": 0, + "path": "unsignedInt.id", + "weight": 69, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "unsignedInt.extension", + "weight": 70, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "unsignedInt.value", + "weight": 71, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "uri", + "weight": 72, + "max": "*", + "kind": "primitive-type", + "derivations": [ + "canonical", + "oid", + "url", + "uuid" + ], + "type": "Element" + }, + { + "min": 0, + "path": "uri.id", + "weight": 73, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "uri.extension", + "weight": 74, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "uri.value", + "weight": 75, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "url", + "weight": 76, + "max": "*", + "kind": "primitive-type", + "type": "uri" + }, + { + "min": 0, + "path": "url.id", + "weight": 77, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "url.extension", + "weight": 78, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "url.value", + "weight": 79, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "uuid", + "weight": 80, + "max": "*", + "kind": "primitive-type", + "type": "uri" + }, + { + "min": 0, + "path": "uuid.id", + "weight": 81, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "uuid.extension", + "weight": 82, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "uuid.value", + "weight": 83, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "xhtml", + "weight": 84, + "max": "*", + "kind": "primitive-type", + "type": "Element" + }, + { + "min": 0, + "path": "xhtml.id", + "weight": 85, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "xhtml.extension", + "weight": 86, + "max": "0", + "type": "Extension" + }, + { + "min": 1, + "path": "xhtml.value", + "weight": 87, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Address", + "weight": 88, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Address.id", + "weight": 89, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Address.extension", + "weight": 90, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Address.use", + "weight": 91, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Address.type", + "weight": 92, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Address.text", + "weight": 93, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Address.line", + "weight": 94, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Address.city", + "weight": 95, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Address.district", + "weight": 96, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Address.state", + "weight": 97, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Address.postalCode", + "weight": 98, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Address.country", + "weight": 99, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Address.period", + "weight": 100, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Age", + "weight": 101, + "max": "*", + "kind": "complex-type", + "type": "Quantity" + }, + { + "min": 0, + "path": "Age.id", + "weight": 102, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Age.extension", + "weight": 103, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Age.value", + "weight": 104, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Age.comparator", + "weight": 105, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Age.unit", + "weight": 106, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Age.system", + "weight": 107, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Age.code", + "weight": 108, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Annotation", + "weight": 109, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Annotation.id", + "weight": 110, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Annotation.extension", + "weight": 111, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Annotation.authorReference", + "weight": 112, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Annotation.authorString", + "weight": 112, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Annotation.time", + "weight": 113, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "Annotation.text", + "weight": 114, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Attachment", + "weight": 115, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Attachment.id", + "weight": 116, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Attachment.extension", + "weight": 117, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Attachment.contentType", + "weight": 118, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Attachment.language", + "weight": 119, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Attachment.data", + "weight": 120, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "Attachment.url", + "weight": 121, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "Attachment.size", + "weight": 122, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "Attachment.hash", + "weight": 123, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "Attachment.title", + "weight": 124, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Attachment.creation", + "weight": 125, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "CodeableConcept", + "weight": 126, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "CodeableConcept.id", + "weight": 127, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CodeableConcept.extension", + "weight": 128, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CodeableConcept.coding", + "weight": 129, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "CodeableConcept.text", + "weight": 130, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Coding", + "weight": 131, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Coding.id", + "weight": 132, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Coding.extension", + "weight": 133, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Coding.system", + "weight": 134, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Coding.version", + "weight": 135, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Coding.code", + "weight": 136, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Coding.display", + "weight": 137, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Coding.userSelected", + "weight": 138, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ContactDetail", + "weight": 139, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "ContactDetail.id", + "weight": 140, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ContactDetail.extension", + "weight": 141, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ContactDetail.name", + "weight": 142, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ContactDetail.telecom", + "weight": 143, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "ContactPoint", + "weight": 144, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "ContactPoint.id", + "weight": 145, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ContactPoint.extension", + "weight": 146, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ContactPoint.system", + "weight": 147, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ContactPoint.value", + "weight": 148, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ContactPoint.use", + "weight": 149, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ContactPoint.rank", + "weight": 150, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ContactPoint.period", + "weight": 151, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Contributor", + "weight": 152, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Contributor.id", + "weight": 153, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contributor.extension", + "weight": 154, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Contributor.type", + "weight": 155, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Contributor.name", + "weight": 156, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Contributor.contact", + "weight": 157, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Count", + "weight": 158, + "max": "*", + "kind": "complex-type", + "type": "Quantity" + }, + { + "min": 0, + "path": "Count.id", + "weight": 159, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Count.extension", + "weight": 160, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Count.value", + "weight": 161, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Count.comparator", + "weight": 162, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Count.unit", + "weight": 163, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Count.system", + "weight": 164, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Count.code", + "weight": 165, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DataRequirement", + "weight": 166, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "DataRequirement.id", + "weight": 167, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DataRequirement.extension", + "weight": 168, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "DataRequirement.type", + "weight": 169, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DataRequirement.profile", + "weight": 170, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "DataRequirement.subjectCodeableConcept", + "weight": 171, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DataRequirement.subjectReference", + "weight": 171, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DataRequirement.mustSupport", + "weight": 172, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "DataRequirement.codeFilter", + "weight": 173, + "max": "*", + "type": "Element" + }, + { + "min": 0, + "path": "DataRequirement.codeFilter.id", + "weight": 174, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DataRequirement.codeFilter.extension", + "weight": 175, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DataRequirement.codeFilter.path", + "weight": 176, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "DataRequirement.codeFilter.searchParam", + "weight": 177, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "DataRequirement.codeFilter.valueSet", + "weight": 178, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "DataRequirement.codeFilter.code", + "weight": 179, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "DataRequirement.dateFilter", + "weight": 180, + "max": "*", + "type": "Element" + }, + { + "min": 0, + "path": "DataRequirement.dateFilter.id", + "weight": 181, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DataRequirement.dateFilter.extension", + "weight": 182, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DataRequirement.dateFilter.path", + "weight": 183, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "DataRequirement.dateFilter.searchParam", + "weight": 184, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "DataRequirement.dateFilter.valueDateTime", + "weight": 185, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "DataRequirement.dateFilter.valuePeriod", + "weight": 185, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "DataRequirement.dateFilter.valueDuration", + "weight": 185, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "DataRequirement.limit", + "weight": 186, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "DataRequirement.sort", + "weight": 187, + "max": "*", + "type": "Element" + }, + { + "min": 0, + "path": "DataRequirement.sort.id", + "weight": 188, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DataRequirement.sort.extension", + "weight": 189, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "DataRequirement.sort.path", + "weight": 190, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "DataRequirement.sort.direction", + "weight": 191, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Distance", + "weight": 192, + "max": "*", + "kind": "complex-type", + "type": "Quantity" + }, + { + "min": 0, + "path": "Distance.id", + "weight": 193, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Distance.extension", + "weight": 194, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Distance.value", + "weight": 195, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Distance.comparator", + "weight": 196, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Distance.unit", + "weight": 197, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Distance.system", + "weight": 198, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Distance.code", + "weight": 199, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Dosage", + "weight": 200, + "max": "*", + "kind": "complex-type", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Dosage.id", + "weight": 201, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Dosage.extension", + "weight": 202, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Dosage.modifierExtension", + "weight": 203, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Dosage.sequence", + "weight": 204, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "Dosage.text", + "weight": 205, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Dosage.additionalInstruction", + "weight": 206, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Dosage.patientInstruction", + "weight": 207, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Dosage.timing", + "weight": 208, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "Dosage.asNeededBoolean", + "weight": 209, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Dosage.asNeededCodeableConcept", + "weight": 209, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Dosage.site", + "weight": 210, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Dosage.route", + "weight": 211, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Dosage.method", + "weight": 212, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Dosage.doseAndRate", + "weight": 213, + "max": "*", + "type": "Element" + }, + { + "min": 0, + "path": "Dosage.doseAndRate.id", + "weight": 214, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Dosage.doseAndRate.extension", + "weight": 215, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Dosage.doseAndRate.type", + "weight": 216, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Dosage.doseAndRate.doseRange", + "weight": 217, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "Dosage.doseAndRate.doseQuantity", + "weight": 217, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Dosage.doseAndRate.rateRatio", + "weight": 218, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "Dosage.doseAndRate.rateRange", + "weight": 218, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "Dosage.doseAndRate.rateQuantity", + "weight": 218, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Dosage.maxDosePerPeriod", + "weight": 219, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "Dosage.maxDosePerAdministration", + "weight": 220, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Dosage.maxDosePerLifetime", + "weight": 221, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Duration", + "weight": 222, + "max": "*", + "kind": "complex-type", + "type": "Quantity" + }, + { + "min": 0, + "path": "Duration.id", + "weight": 223, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Duration.extension", + "weight": 224, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Duration.value", + "weight": 225, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Duration.comparator", + "weight": 226, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Duration.unit", + "weight": 227, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Duration.system", + "weight": 228, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Duration.code", + "weight": 229, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ElementDefinition", + "weight": 230, + "max": "*", + "kind": "complex-type", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ElementDefinition.id", + "weight": 231, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ElementDefinition.extension", + "weight": 232, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ElementDefinition.modifierExtension", + "weight": 233, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ElementDefinition.path", + "weight": 234, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.representation", + "weight": 235, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "ElementDefinition.sliceName", + "weight": 236, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.sliceIsConstraining", + "weight": 237, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ElementDefinition.label", + "weight": 238, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.code", + "weight": 239, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "ElementDefinition.slicing", + "weight": 240, + "max": "1", + "type": "Element" + }, + { + "min": 0, + "path": "ElementDefinition.slicing.id", + "weight": 241, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ElementDefinition.slicing.extension", + "weight": 242, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ElementDefinition.slicing.discriminator", + "weight": 243, + "max": "*", + "type": "Element" + }, + { + "min": 0, + "path": "ElementDefinition.slicing.discriminator.id", + "weight": 244, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ElementDefinition.slicing.discriminator.extension", + "weight": 245, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ElementDefinition.slicing.discriminator.type", + "weight": 246, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ElementDefinition.slicing.discriminator.path", + "weight": 247, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.slicing.description", + "weight": 248, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.slicing.ordered", + "weight": 249, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "ElementDefinition.slicing.rules", + "weight": 250, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ElementDefinition.short", + "weight": 251, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.definition", + "weight": 252, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ElementDefinition.comment", + "weight": 253, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ElementDefinition.requirements", + "weight": 254, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ElementDefinition.alias", + "weight": 255, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.min", + "weight": 256, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "ElementDefinition.max", + "weight": 257, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.base", + "weight": 258, + "max": "1", + "type": "Element" + }, + { + "min": 0, + "path": "ElementDefinition.base.id", + "weight": 259, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ElementDefinition.base.extension", + "weight": 260, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ElementDefinition.base.path", + "weight": 261, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ElementDefinition.base.min", + "weight": 262, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 1, + "path": "ElementDefinition.base.max", + "weight": 263, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.contentReference", + "weight": 264, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ElementDefinition.type", + "weight": 265, + "max": "*", + "type": "Element" + }, + { + "min": 0, + "path": "ElementDefinition.type.id", + "weight": 266, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ElementDefinition.type.extension", + "weight": 267, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ElementDefinition.type.code", + "weight": 268, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ElementDefinition.type.profile", + "weight": 269, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "ElementDefinition.type.targetProfile", + "weight": 270, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "ElementDefinition.type.aggregation", + "weight": 271, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "ElementDefinition.type.versioning", + "weight": 272, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueBase64Binary", + "weight": 273, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueBoolean", + "weight": 273, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueCanonical", + "weight": 273, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueCode", + "weight": 273, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueDate", + "weight": 273, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueDateTime", + "weight": 273, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueDecimal", + "weight": 273, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueId", + "weight": 273, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueInstant", + "weight": 273, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueInteger", + "weight": 273, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueMarkdown", + "weight": 273, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueOid", + "weight": 273, + "max": "1", + "type": "oid" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValuePositiveInt", + "weight": 273, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueString", + "weight": 273, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueTime", + "weight": 273, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueUnsignedInt", + "weight": 273, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueUri", + "weight": 273, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueUrl", + "weight": 273, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueUuid", + "weight": 273, + "max": "1", + "type": "uuid" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueAddress", + "weight": 273, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueAge", + "weight": 273, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueAnnotation", + "weight": 273, + "max": "1", + "type": "Annotation" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueAttachment", + "weight": 273, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueCodeableConcept", + "weight": 273, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueCoding", + "weight": 273, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueContactPoint", + "weight": 273, + "max": "1", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueCount", + "weight": 273, + "max": "1", + "type": "Count" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueDistance", + "weight": 273, + "max": "1", + "type": "Distance" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueDuration", + "weight": 273, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueHumanName", + "weight": 273, + "max": "1", + "type": "HumanName" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueIdentifier", + "weight": 273, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueMoney", + "weight": 273, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValuePeriod", + "weight": 273, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueQuantity", + "weight": 273, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueRange", + "weight": 273, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueRatio", + "weight": 273, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueReference", + "weight": 273, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueSampledData", + "weight": 273, + "max": "1", + "type": "SampledData" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueSignature", + "weight": 273, + "max": "1", + "type": "Signature" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueTiming", + "weight": 273, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueContactDetail", + "weight": 273, + "max": "1", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueContributor", + "weight": 273, + "max": "1", + "type": "Contributor" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueDataRequirement", + "weight": 273, + "max": "1", + "type": "DataRequirement" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueExpression", + "weight": 273, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueParameterDefinition", + "weight": 273, + "max": "1", + "type": "ParameterDefinition" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueRelatedArtifact", + "weight": 273, + "max": "1", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueTriggerDefinition", + "weight": 273, + "max": "1", + "type": "TriggerDefinition" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueUsageContext", + "weight": 273, + "max": "1", + "type": "UsageContext" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueDosage", + "weight": 273, + "max": "1", + "type": "Dosage" + }, + { + "min": 0, + "path": "ElementDefinition.defaultValueMeta", + "weight": 273, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ElementDefinition.meaningWhenMissing", + "weight": 274, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ElementDefinition.orderMeaning", + "weight": 275, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.fixedBase64Binary", + "weight": 276, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "ElementDefinition.fixedBoolean", + "weight": 276, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ElementDefinition.fixedCanonical", + "weight": 276, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "ElementDefinition.fixedCode", + "weight": 276, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ElementDefinition.fixedDate", + "weight": 276, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ElementDefinition.fixedDateTime", + "weight": 276, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ElementDefinition.fixedDecimal", + "weight": 276, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ElementDefinition.fixedId", + "weight": 276, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "ElementDefinition.fixedInstant", + "weight": 276, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "ElementDefinition.fixedInteger", + "weight": 276, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "ElementDefinition.fixedMarkdown", + "weight": 276, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ElementDefinition.fixedOid", + "weight": 276, + "max": "1", + "type": "oid" + }, + { + "min": 0, + "path": "ElementDefinition.fixedPositiveInt", + "weight": 276, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ElementDefinition.fixedString", + "weight": 276, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.fixedTime", + "weight": 276, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "ElementDefinition.fixedUnsignedInt", + "weight": 276, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "ElementDefinition.fixedUri", + "weight": 276, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ElementDefinition.fixedUrl", + "weight": 276, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "ElementDefinition.fixedUuid", + "weight": 276, + "max": "1", + "type": "uuid" + }, + { + "min": 0, + "path": "ElementDefinition.fixedAddress", + "weight": 276, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "ElementDefinition.fixedAge", + "weight": 276, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "ElementDefinition.fixedAnnotation", + "weight": 276, + "max": "1", + "type": "Annotation" + }, + { + "min": 0, + "path": "ElementDefinition.fixedAttachment", + "weight": 276, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "ElementDefinition.fixedCodeableConcept", + "weight": 276, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ElementDefinition.fixedCoding", + "weight": 276, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "ElementDefinition.fixedContactPoint", + "weight": 276, + "max": "1", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "ElementDefinition.fixedCount", + "weight": 276, + "max": "1", + "type": "Count" + }, + { + "min": 0, + "path": "ElementDefinition.fixedDistance", + "weight": 276, + "max": "1", + "type": "Distance" + }, + { + "min": 0, + "path": "ElementDefinition.fixedDuration", + "weight": 276, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "ElementDefinition.fixedHumanName", + "weight": 276, + "max": "1", + "type": "HumanName" + }, + { + "min": 0, + "path": "ElementDefinition.fixedIdentifier", + "weight": 276, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "ElementDefinition.fixedMoney", + "weight": 276, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ElementDefinition.fixedPeriod", + "weight": 276, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ElementDefinition.fixedQuantity", + "weight": 276, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ElementDefinition.fixedRange", + "weight": 276, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "ElementDefinition.fixedRatio", + "weight": 276, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "ElementDefinition.fixedReference", + "weight": 276, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ElementDefinition.fixedSampledData", + "weight": 276, + "max": "1", + "type": "SampledData" + }, + { + "min": 0, + "path": "ElementDefinition.fixedSignature", + "weight": 276, + "max": "1", + "type": "Signature" + }, + { + "min": 0, + "path": "ElementDefinition.fixedTiming", + "weight": 276, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "ElementDefinition.fixedContactDetail", + "weight": 276, + "max": "1", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ElementDefinition.fixedContributor", + "weight": 276, + "max": "1", + "type": "Contributor" + }, + { + "min": 0, + "path": "ElementDefinition.fixedDataRequirement", + "weight": 276, + "max": "1", + "type": "DataRequirement" + }, + { + "min": 0, + "path": "ElementDefinition.fixedExpression", + "weight": 276, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "ElementDefinition.fixedParameterDefinition", + "weight": 276, + "max": "1", + "type": "ParameterDefinition" + }, + { + "min": 0, + "path": "ElementDefinition.fixedRelatedArtifact", + "weight": 276, + "max": "1", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "ElementDefinition.fixedTriggerDefinition", + "weight": 276, + "max": "1", + "type": "TriggerDefinition" + }, + { + "min": 0, + "path": "ElementDefinition.fixedUsageContext", + "weight": 276, + "max": "1", + "type": "UsageContext" + }, + { + "min": 0, + "path": "ElementDefinition.fixedDosage", + "weight": 276, + "max": "1", + "type": "Dosage" + }, + { + "min": 0, + "path": "ElementDefinition.fixedMeta", + "weight": 276, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ElementDefinition.patternBase64Binary", + "weight": 277, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "ElementDefinition.patternBoolean", + "weight": 277, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ElementDefinition.patternCanonical", + "weight": 277, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "ElementDefinition.patternCode", + "weight": 277, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ElementDefinition.patternDate", + "weight": 277, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ElementDefinition.patternDateTime", + "weight": 277, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ElementDefinition.patternDecimal", + "weight": 277, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ElementDefinition.patternId", + "weight": 277, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "ElementDefinition.patternInstant", + "weight": 277, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "ElementDefinition.patternInteger", + "weight": 277, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "ElementDefinition.patternMarkdown", + "weight": 277, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ElementDefinition.patternOid", + "weight": 277, + "max": "1", + "type": "oid" + }, + { + "min": 0, + "path": "ElementDefinition.patternPositiveInt", + "weight": 277, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ElementDefinition.patternString", + "weight": 277, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.patternTime", + "weight": 277, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "ElementDefinition.patternUnsignedInt", + "weight": 277, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "ElementDefinition.patternUri", + "weight": 277, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ElementDefinition.patternUrl", + "weight": 277, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "ElementDefinition.patternUuid", + "weight": 277, + "max": "1", + "type": "uuid" + }, + { + "min": 0, + "path": "ElementDefinition.patternAddress", + "weight": 277, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "ElementDefinition.patternAge", + "weight": 277, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "ElementDefinition.patternAnnotation", + "weight": 277, + "max": "1", + "type": "Annotation" + }, + { + "min": 0, + "path": "ElementDefinition.patternAttachment", + "weight": 277, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "ElementDefinition.patternCodeableConcept", + "weight": 277, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ElementDefinition.patternCoding", + "weight": 277, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "ElementDefinition.patternContactPoint", + "weight": 277, + "max": "1", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "ElementDefinition.patternCount", + "weight": 277, + "max": "1", + "type": "Count" + }, + { + "min": 0, + "path": "ElementDefinition.patternDistance", + "weight": 277, + "max": "1", + "type": "Distance" + }, + { + "min": 0, + "path": "ElementDefinition.patternDuration", + "weight": 277, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "ElementDefinition.patternHumanName", + "weight": 277, + "max": "1", + "type": "HumanName" + }, + { + "min": 0, + "path": "ElementDefinition.patternIdentifier", + "weight": 277, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "ElementDefinition.patternMoney", + "weight": 277, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ElementDefinition.patternPeriod", + "weight": 277, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ElementDefinition.patternQuantity", + "weight": 277, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ElementDefinition.patternRange", + "weight": 277, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "ElementDefinition.patternRatio", + "weight": 277, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "ElementDefinition.patternReference", + "weight": 277, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ElementDefinition.patternSampledData", + "weight": 277, + "max": "1", + "type": "SampledData" + }, + { + "min": 0, + "path": "ElementDefinition.patternSignature", + "weight": 277, + "max": "1", + "type": "Signature" + }, + { + "min": 0, + "path": "ElementDefinition.patternTiming", + "weight": 277, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "ElementDefinition.patternContactDetail", + "weight": 277, + "max": "1", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ElementDefinition.patternContributor", + "weight": 277, + "max": "1", + "type": "Contributor" + }, + { + "min": 0, + "path": "ElementDefinition.patternDataRequirement", + "weight": 277, + "max": "1", + "type": "DataRequirement" + }, + { + "min": 0, + "path": "ElementDefinition.patternExpression", + "weight": 277, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "ElementDefinition.patternParameterDefinition", + "weight": 277, + "max": "1", + "type": "ParameterDefinition" + }, + { + "min": 0, + "path": "ElementDefinition.patternRelatedArtifact", + "weight": 277, + "max": "1", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "ElementDefinition.patternTriggerDefinition", + "weight": 277, + "max": "1", + "type": "TriggerDefinition" + }, + { + "min": 0, + "path": "ElementDefinition.patternUsageContext", + "weight": 277, + "max": "1", + "type": "UsageContext" + }, + { + "min": 0, + "path": "ElementDefinition.patternDosage", + "weight": 277, + "max": "1", + "type": "Dosage" + }, + { + "min": 0, + "path": "ElementDefinition.patternMeta", + "weight": 277, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ElementDefinition.example", + "weight": 278, + "max": "*", + "type": "Element" + }, + { + "min": 0, + "path": "ElementDefinition.example.id", + "weight": 279, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ElementDefinition.example.extension", + "weight": 280, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ElementDefinition.example.label", + "weight": 281, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueBase64Binary", + "weight": 282, + "max": "1", + "type": "base64Binary" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueBoolean", + "weight": 282, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueCanonical", + "weight": 282, + "max": "1", + "type": "canonical" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueCode", + "weight": 282, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueDate", + "weight": 282, + "max": "1", + "type": "date" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueDateTime", + "weight": 282, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueDecimal", + "weight": 282, + "max": "1", + "type": "decimal" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueId", + "weight": 282, + "max": "1", + "type": "id" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueInstant", + "weight": 282, + "max": "1", + "type": "instant" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueInteger", + "weight": 282, + "max": "1", + "type": "integer" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueMarkdown", + "weight": 282, + "max": "1", + "type": "markdown" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueOid", + "weight": 282, + "max": "1", + "type": "oid" + }, + { + "min": 1, + "path": "ElementDefinition.example.valuePositiveInt", + "weight": 282, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueString", + "weight": 282, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueTime", + "weight": 282, + "max": "1", + "type": "time" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueUnsignedInt", + "weight": 282, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueUri", + "weight": 282, + "max": "1", + "type": "uri" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueUrl", + "weight": 282, + "max": "1", + "type": "url" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueUuid", + "weight": 282, + "max": "1", + "type": "uuid" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueAddress", + "weight": 282, + "max": "1", + "type": "Address" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueAge", + "weight": 282, + "max": "1", + "type": "Age" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueAnnotation", + "weight": 282, + "max": "1", + "type": "Annotation" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueAttachment", + "weight": 282, + "max": "1", + "type": "Attachment" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueCodeableConcept", + "weight": 282, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueCoding", + "weight": 282, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueContactPoint", + "weight": 282, + "max": "1", + "type": "ContactPoint" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueCount", + "weight": 282, + "max": "1", + "type": "Count" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueDistance", + "weight": 282, + "max": "1", + "type": "Distance" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueDuration", + "weight": 282, + "max": "1", + "type": "Duration" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueHumanName", + "weight": 282, + "max": "1", + "type": "HumanName" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueIdentifier", + "weight": 282, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueMoney", + "weight": 282, + "max": "1", + "type": "Money" + }, + { + "min": 1, + "path": "ElementDefinition.example.valuePeriod", + "weight": 282, + "max": "1", + "type": "Period" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueQuantity", + "weight": 282, + "max": "1", + "type": "Quantity" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueRange", + "weight": 282, + "max": "1", + "type": "Range" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueRatio", + "weight": 282, + "max": "1", + "type": "Ratio" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueReference", + "weight": 282, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueSampledData", + "weight": 282, + "max": "1", + "type": "SampledData" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueSignature", + "weight": 282, + "max": "1", + "type": "Signature" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueTiming", + "weight": 282, + "max": "1", + "type": "Timing" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueContactDetail", + "weight": 282, + "max": "1", + "type": "ContactDetail" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueContributor", + "weight": 282, + "max": "1", + "type": "Contributor" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueDataRequirement", + "weight": 282, + "max": "1", + "type": "DataRequirement" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueExpression", + "weight": 282, + "max": "1", + "type": "Expression" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueParameterDefinition", + "weight": 282, + "max": "1", + "type": "ParameterDefinition" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueRelatedArtifact", + "weight": 282, + "max": "1", + "type": "RelatedArtifact" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueTriggerDefinition", + "weight": 282, + "max": "1", + "type": "TriggerDefinition" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueUsageContext", + "weight": 282, + "max": "1", + "type": "UsageContext" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueDosage", + "weight": 282, + "max": "1", + "type": "Dosage" + }, + { + "min": 1, + "path": "ElementDefinition.example.valueMeta", + "weight": 282, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ElementDefinition.minValueDate", + "weight": 283, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ElementDefinition.minValueDateTime", + "weight": 283, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ElementDefinition.minValueInstant", + "weight": 283, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "ElementDefinition.minValueTime", + "weight": 283, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "ElementDefinition.minValueDecimal", + "weight": 283, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ElementDefinition.minValueInteger", + "weight": 283, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "ElementDefinition.minValuePositiveInt", + "weight": 283, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ElementDefinition.minValueUnsignedInt", + "weight": 283, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "ElementDefinition.minValueQuantity", + "weight": 283, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ElementDefinition.maxValueDate", + "weight": 284, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ElementDefinition.maxValueDateTime", + "weight": 284, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ElementDefinition.maxValueInstant", + "weight": 284, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "ElementDefinition.maxValueTime", + "weight": 284, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "ElementDefinition.maxValueDecimal", + "weight": 284, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ElementDefinition.maxValueInteger", + "weight": 284, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "ElementDefinition.maxValuePositiveInt", + "weight": 284, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ElementDefinition.maxValueUnsignedInt", + "weight": 284, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "ElementDefinition.maxValueQuantity", + "weight": 284, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ElementDefinition.maxLength", + "weight": 285, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "ElementDefinition.condition", + "weight": 286, + "max": "*", + "type": "id" + }, + { + "min": 0, + "path": "ElementDefinition.constraint", + "weight": 287, + "max": "*", + "type": "Element" + }, + { + "min": 0, + "path": "ElementDefinition.constraint.id", + "weight": 288, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ElementDefinition.constraint.extension", + "weight": 289, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ElementDefinition.constraint.key", + "weight": 290, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "ElementDefinition.constraint.requirements", + "weight": 291, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ElementDefinition.constraint.severity", + "weight": 292, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ElementDefinition.constraint.human", + "weight": 293, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.constraint.expression", + "weight": 294, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.constraint.xpath", + "weight": 295, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.constraint.source", + "weight": 296, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "ElementDefinition.mustSupport", + "weight": 297, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ElementDefinition.isModifier", + "weight": 298, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ElementDefinition.isModifierReason", + "weight": 299, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.isSummary", + "weight": 300, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ElementDefinition.binding", + "weight": 301, + "max": "1", + "type": "Element" + }, + { + "min": 0, + "path": "ElementDefinition.binding.id", + "weight": 302, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ElementDefinition.binding.extension", + "weight": 303, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ElementDefinition.binding.strength", + "weight": 304, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ElementDefinition.binding.description", + "weight": 305, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.binding.valueSet", + "weight": 306, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "ElementDefinition.mapping", + "weight": 307, + "max": "*", + "type": "Element" + }, + { + "min": 0, + "path": "ElementDefinition.mapping.id", + "weight": 308, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ElementDefinition.mapping.extension", + "weight": 309, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ElementDefinition.mapping.identity", + "weight": 310, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "ElementDefinition.mapping.language", + "weight": 311, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ElementDefinition.mapping.map", + "weight": 312, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ElementDefinition.mapping.comment", + "weight": 313, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Expression", + "weight": 314, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Expression.id", + "weight": 315, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Expression.extension", + "weight": 316, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Expression.description", + "weight": 317, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Expression.name", + "weight": 318, + "max": "1", + "type": "id" + }, + { + "min": 1, + "path": "Expression.language", + "weight": 319, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Expression.expression", + "weight": 320, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Expression.reference", + "weight": 321, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Extension", + "weight": 322, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Extension.id", + "weight": 323, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Extension.extension", + "weight": 324, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Extension.url", + "weight": 325, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Extension.valueBase64Binary", + "weight": 326, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "Extension.valueBoolean", + "weight": 326, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Extension.valueCanonical", + "weight": 326, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "Extension.valueCode", + "weight": 326, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Extension.valueDate", + "weight": 326, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Extension.valueDateTime", + "weight": 326, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Extension.valueDecimal", + "weight": 326, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Extension.valueId", + "weight": 326, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "Extension.valueInstant", + "weight": 326, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "Extension.valueInteger", + "weight": 326, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "Extension.valueMarkdown", + "weight": 326, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Extension.valueOid", + "weight": 326, + "max": "1", + "type": "oid" + }, + { + "min": 0, + "path": "Extension.valuePositiveInt", + "weight": 326, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Extension.valueString", + "weight": 326, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Extension.valueTime", + "weight": 326, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "Extension.valueUnsignedInt", + "weight": 326, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "Extension.valueUri", + "weight": 326, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Extension.valueUrl", + "weight": 326, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "Extension.valueUuid", + "weight": 326, + "max": "1", + "type": "uuid" + }, + { + "min": 0, + "path": "Extension.valueAddress", + "weight": 326, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "Extension.valueAge", + "weight": 326, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "Extension.valueAnnotation", + "weight": 326, + "max": "1", + "type": "Annotation" + }, + { + "min": 0, + "path": "Extension.valueAttachment", + "weight": 326, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "Extension.valueCodeableConcept", + "weight": 326, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Extension.valueCoding", + "weight": 326, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "Extension.valueContactPoint", + "weight": 326, + "max": "1", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "Extension.valueCount", + "weight": 326, + "max": "1", + "type": "Count" + }, + { + "min": 0, + "path": "Extension.valueDistance", + "weight": 326, + "max": "1", + "type": "Distance" + }, + { + "min": 0, + "path": "Extension.valueDuration", + "weight": 326, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "Extension.valueHumanName", + "weight": 326, + "max": "1", + "type": "HumanName" + }, + { + "min": 0, + "path": "Extension.valueIdentifier", + "weight": 326, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "Extension.valueMoney", + "weight": 326, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Extension.valuePeriod", + "weight": 326, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Extension.valueQuantity", + "weight": 326, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Extension.valueRange", + "weight": 326, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "Extension.valueRatio", + "weight": 326, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "Extension.valueReference", + "weight": 326, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Extension.valueSampledData", + "weight": 326, + "max": "1", + "type": "SampledData" + }, + { + "min": 0, + "path": "Extension.valueSignature", + "weight": 326, + "max": "1", + "type": "Signature" + }, + { + "min": 0, + "path": "Extension.valueTiming", + "weight": 326, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "Extension.valueContactDetail", + "weight": 326, + "max": "1", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Extension.valueContributor", + "weight": 326, + "max": "1", + "type": "Contributor" + }, + { + "min": 0, + "path": "Extension.valueDataRequirement", + "weight": 326, + "max": "1", + "type": "DataRequirement" + }, + { + "min": 0, + "path": "Extension.valueExpression", + "weight": 326, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "Extension.valueParameterDefinition", + "weight": 326, + "max": "1", + "type": "ParameterDefinition" + }, + { + "min": 0, + "path": "Extension.valueRelatedArtifact", + "weight": 326, + "max": "1", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "Extension.valueTriggerDefinition", + "weight": 326, + "max": "1", + "type": "TriggerDefinition" + }, + { + "min": 0, + "path": "Extension.valueUsageContext", + "weight": 326, + "max": "1", + "type": "UsageContext" + }, + { + "min": 0, + "path": "Extension.valueDosage", + "weight": 326, + "max": "1", + "type": "Dosage" + }, + { + "min": 0, + "path": "Extension.valueMeta", + "weight": 326, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "HumanName", + "weight": 327, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "HumanName.id", + "weight": 328, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "HumanName.extension", + "weight": 329, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "HumanName.use", + "weight": 330, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "HumanName.text", + "weight": 331, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "HumanName.family", + "weight": 332, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "HumanName.given", + "weight": 333, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "HumanName.prefix", + "weight": 334, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "HumanName.suffix", + "weight": 335, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "HumanName.period", + "weight": 336, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Identifier", + "weight": 337, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Identifier.id", + "weight": 338, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Identifier.extension", + "weight": 339, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Identifier.use", + "weight": 340, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Identifier.type", + "weight": 341, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Identifier.system", + "weight": 342, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Identifier.value", + "weight": 343, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Identifier.period", + "weight": 344, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Identifier.assigner", + "weight": 345, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MarketingStatus", + "weight": 346, + "max": "*", + "kind": "complex-type", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MarketingStatus.id", + "weight": 347, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MarketingStatus.extension", + "weight": 348, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MarketingStatus.modifierExtension", + "weight": 349, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MarketingStatus.country", + "weight": 350, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MarketingStatus.jurisdiction", + "weight": 351, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MarketingStatus.status", + "weight": 352, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MarketingStatus.dateRange", + "weight": 353, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "MarketingStatus.restoreDate", + "weight": 354, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Meta", + "weight": 355, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Meta.id", + "weight": 356, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Meta.extension", + "weight": 357, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Meta.versionId", + "weight": 358, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "Meta.lastUpdated", + "weight": 359, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "Meta.source", + "weight": 360, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Meta.profile", + "weight": 361, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "Meta.security", + "weight": 362, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "Meta.tag", + "weight": 363, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "Money", + "weight": 364, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Money.id", + "weight": 365, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Money.extension", + "weight": 366, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Money.value", + "weight": 367, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Money.currency", + "weight": 368, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Narrative", + "weight": 369, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Narrative.id", + "weight": 370, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Narrative.extension", + "weight": 371, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Narrative.status", + "weight": 372, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Narrative.div", + "weight": 373, + "max": "1", + "type": "xhtml" + }, + { + "min": 0, + "path": "ParameterDefinition", + "weight": 374, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "ParameterDefinition.id", + "weight": 375, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ParameterDefinition.extension", + "weight": 376, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ParameterDefinition.name", + "weight": 377, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ParameterDefinition.use", + "weight": 378, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ParameterDefinition.min", + "weight": 379, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "ParameterDefinition.max", + "weight": 380, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ParameterDefinition.documentation", + "weight": 381, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ParameterDefinition.type", + "weight": 382, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ParameterDefinition.profile", + "weight": 383, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "Period", + "weight": 384, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Period.id", + "weight": 385, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Period.extension", + "weight": 386, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Period.start", + "weight": 387, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Period.end", + "weight": 388, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Population", + "weight": 389, + "max": "*", + "kind": "complex-type", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Population.id", + "weight": 390, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Population.extension", + "weight": 391, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Population.modifierExtension", + "weight": 392, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Population.ageRange", + "weight": 393, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "Population.ageCodeableConcept", + "weight": 393, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Population.gender", + "weight": 394, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Population.race", + "weight": 395, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Population.physiologicalCondition", + "weight": 396, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ProdCharacteristic", + "weight": 397, + "max": "*", + "kind": "complex-type", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ProdCharacteristic.id", + "weight": 398, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ProdCharacteristic.extension", + "weight": 399, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ProdCharacteristic.modifierExtension", + "weight": 400, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ProdCharacteristic.height", + "weight": 401, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ProdCharacteristic.width", + "weight": 402, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ProdCharacteristic.depth", + "weight": 403, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ProdCharacteristic.weight", + "weight": 404, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ProdCharacteristic.nominalVolume", + "weight": 405, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ProdCharacteristic.externalDiameter", + "weight": 406, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ProdCharacteristic.shape", + "weight": 407, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ProdCharacteristic.color", + "weight": 408, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "ProdCharacteristic.imprint", + "weight": 409, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "ProdCharacteristic.image", + "weight": 410, + "max": "*", + "type": "Attachment" + }, + { + "min": 0, + "path": "ProdCharacteristic.scoring", + "weight": 411, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ProductShelfLife", + "weight": 412, + "max": "*", + "kind": "complex-type", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ProductShelfLife.id", + "weight": 413, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ProductShelfLife.extension", + "weight": 414, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ProductShelfLife.modifierExtension", + "weight": 415, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ProductShelfLife.identifier", + "weight": 416, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "ProductShelfLife.type", + "weight": 417, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ProductShelfLife.period", + "weight": 418, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ProductShelfLife.specialPrecautionsForStorage", + "weight": 419, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Quantity", + "weight": 420, + "max": "*", + "kind": "complex-type", + "derivations": [ + "Age", + "Count", + "Distance", + "Duration" + ], + "type": "Element" + }, + { + "min": 0, + "path": "Quantity.id", + "weight": 421, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Quantity.extension", + "weight": 422, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Quantity.value", + "weight": 423, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Quantity.comparator", + "weight": 424, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Quantity.unit", + "weight": 425, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Quantity.system", + "weight": 426, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Quantity.code", + "weight": 427, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Range", + "weight": 428, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Range.id", + "weight": 429, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Range.extension", + "weight": 430, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Range.low", + "weight": 431, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Range.high", + "weight": 432, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Ratio", + "weight": 433, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Ratio.id", + "weight": 434, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Ratio.extension", + "weight": 435, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Ratio.numerator", + "weight": 436, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Ratio.denominator", + "weight": 437, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Reference", + "weight": 438, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Reference.id", + "weight": 439, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Reference.extension", + "weight": 440, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Reference.reference", + "weight": 441, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Reference.type", + "weight": 442, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Reference.identifier", + "weight": 443, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "Reference.display", + "weight": 444, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RelatedArtifact", + "weight": 445, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "RelatedArtifact.id", + "weight": 446, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RelatedArtifact.extension", + "weight": 447, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "RelatedArtifact.type", + "weight": 448, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RelatedArtifact.label", + "weight": 449, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RelatedArtifact.display", + "weight": 450, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RelatedArtifact.citation", + "weight": 451, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "RelatedArtifact.url", + "weight": 452, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "RelatedArtifact.document", + "weight": 453, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "RelatedArtifact.resource", + "weight": 454, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "SampledData", + "weight": 455, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "SampledData.id", + "weight": 456, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SampledData.extension", + "weight": 457, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "SampledData.origin", + "weight": 458, + "max": "1", + "type": "Quantity" + }, + { + "min": 1, + "path": "SampledData.period", + "weight": 459, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "SampledData.factor", + "weight": 460, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "SampledData.lowerLimit", + "weight": 461, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "SampledData.upperLimit", + "weight": 462, + "max": "1", + "type": "decimal" + }, + { + "min": 1, + "path": "SampledData.dimensions", + "weight": 463, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "SampledData.data", + "weight": 464, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Signature", + "weight": 465, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "Signature.id", + "weight": 466, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Signature.extension", + "weight": 467, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Signature.type", + "weight": 468, + "max": "*", + "type": "Coding" + }, + { + "min": 1, + "path": "Signature.when", + "weight": 469, + "max": "1", + "type": "instant" + }, + { + "min": 1, + "path": "Signature.who", + "weight": 470, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Signature.onBehalfOf", + "weight": 471, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Signature.targetFormat", + "weight": 472, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Signature.sigFormat", + "weight": 473, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Signature.data", + "weight": 474, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "SubstanceAmount", + "weight": 475, + "max": "*", + "kind": "complex-type", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceAmount.id", + "weight": 476, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceAmount.extension", + "weight": 477, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceAmount.modifierExtension", + "weight": 478, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceAmount.amountQuantity", + "weight": 479, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "SubstanceAmount.amountRange", + "weight": 479, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "SubstanceAmount.amountString", + "weight": 479, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceAmount.amountType", + "weight": 480, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceAmount.amountText", + "weight": 481, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceAmount.referenceRange", + "weight": 482, + "max": "1", + "type": "Element" + }, + { + "min": 0, + "path": "SubstanceAmount.referenceRange.id", + "weight": 483, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceAmount.referenceRange.extension", + "weight": 484, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceAmount.referenceRange.lowLimit", + "weight": 485, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "SubstanceAmount.referenceRange.highLimit", + "weight": 486, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Timing", + "weight": 487, + "max": "*", + "kind": "complex-type", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Timing.id", + "weight": 488, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Timing.extension", + "weight": 489, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Timing.modifierExtension", + "weight": 490, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Timing.event", + "weight": 491, + "max": "*", + "type": "dateTime" + }, + { + "min": 0, + "path": "Timing.repeat", + "weight": 492, + "max": "1", + "type": "Element" + }, + { + "min": 0, + "path": "Timing.repeat.id", + "weight": 493, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Timing.repeat.extension", + "weight": 494, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Timing.repeat.boundsDuration", + "weight": 495, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "Timing.repeat.boundsRange", + "weight": 495, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "Timing.repeat.boundsPeriod", + "weight": 495, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Timing.repeat.count", + "weight": 496, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Timing.repeat.countMax", + "weight": 497, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Timing.repeat.duration", + "weight": 498, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Timing.repeat.durationMax", + "weight": 499, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Timing.repeat.durationUnit", + "weight": 500, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Timing.repeat.frequency", + "weight": 501, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Timing.repeat.frequencyMax", + "weight": 502, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Timing.repeat.period", + "weight": 503, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Timing.repeat.periodMax", + "weight": 504, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Timing.repeat.periodUnit", + "weight": 505, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Timing.repeat.dayOfWeek", + "weight": 506, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "Timing.repeat.timeOfDay", + "weight": 507, + "max": "*", + "type": "time" + }, + { + "min": 0, + "path": "Timing.repeat.when", + "weight": 508, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "Timing.repeat.offset", + "weight": 509, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "Timing.code", + "weight": 510, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "TriggerDefinition", + "weight": 511, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "TriggerDefinition.id", + "weight": 512, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TriggerDefinition.extension", + "weight": 513, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TriggerDefinition.type", + "weight": 514, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TriggerDefinition.name", + "weight": 515, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TriggerDefinition.timingTiming", + "weight": 516, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "TriggerDefinition.timingReference", + "weight": 516, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "TriggerDefinition.timingDate", + "weight": 516, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "TriggerDefinition.timingDateTime", + "weight": 516, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "TriggerDefinition.data", + "weight": 517, + "max": "*", + "type": "DataRequirement" + }, + { + "min": 0, + "path": "TriggerDefinition.condition", + "weight": 518, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "UsageContext", + "weight": 519, + "max": "*", + "kind": "complex-type", + "type": "Element" + }, + { + "min": 0, + "path": "UsageContext.id", + "weight": 520, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "UsageContext.extension", + "weight": 521, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "UsageContext.code", + "weight": 522, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "UsageContext.valueCodeableConcept", + "weight": 523, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "UsageContext.valueQuantity", + "weight": 523, + "max": "1", + "type": "Quantity" + }, + { + "min": 1, + "path": "UsageContext.valueRange", + "weight": 523, + "max": "1", + "type": "Range" + }, + { + "min": 1, + "path": "UsageContext.valueReference", + "weight": 523, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Resource", + "weight": 524, + "max": "*", + "kind": "resource", + "derivations": [ + "Binary", + "Bundle", + "DomainResource", + "Parameters" + ] + }, + { + "min": 0, + "path": "Resource.id", + "weight": 525, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Resource.meta", + "weight": 526, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Resource.implicitRules", + "weight": 527, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Resource.language", + "weight": 528, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Account", + "weight": 529, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Account.id", + "weight": 530, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Account.meta", + "weight": 531, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Account.implicitRules", + "weight": 532, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Account.language", + "weight": 533, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Account.text", + "weight": 534, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Account.contained", + "weight": 535, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Account.extension", + "weight": 536, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Account.modifierExtension", + "weight": 537, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Account.identifier", + "weight": 538, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "Account.status", + "weight": 539, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Account.type", + "weight": 540, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Account.name", + "weight": 541, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Account.subject", + "weight": 542, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Account.servicePeriod", + "weight": 543, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Account.coverage", + "weight": 544, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Account.coverage.id", + "weight": 545, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Account.coverage.extension", + "weight": 546, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Account.coverage.modifierExtension", + "weight": 547, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Account.coverage.coverage", + "weight": 548, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Account.coverage.priority", + "weight": 549, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Account.owner", + "weight": 550, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Account.description", + "weight": 551, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Account.guarantor", + "weight": 552, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Account.guarantor.id", + "weight": 553, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Account.guarantor.extension", + "weight": 554, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Account.guarantor.modifierExtension", + "weight": 555, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Account.guarantor.party", + "weight": 556, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Account.guarantor.onHold", + "weight": 557, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Account.guarantor.period", + "weight": 558, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Account.partOf", + "weight": 559, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ActivityDefinition", + "weight": 560, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ActivityDefinition.id", + "weight": 561, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ActivityDefinition.meta", + "weight": 562, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ActivityDefinition.implicitRules", + "weight": 563, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ActivityDefinition.language", + "weight": 564, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ActivityDefinition.text", + "weight": 565, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ActivityDefinition.contained", + "weight": 566, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ActivityDefinition.extension", + "weight": 567, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ActivityDefinition.modifierExtension", + "weight": 568, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ActivityDefinition.url", + "weight": 569, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ActivityDefinition.identifier", + "weight": 570, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "ActivityDefinition.version", + "weight": 571, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ActivityDefinition.name", + "weight": 572, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ActivityDefinition.title", + "weight": 573, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ActivityDefinition.subtitle", + "weight": 574, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ActivityDefinition.status", + "weight": 575, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ActivityDefinition.experimental", + "weight": 576, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ActivityDefinition.subjectCodeableConcept", + "weight": 577, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ActivityDefinition.subjectReference", + "weight": 577, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ActivityDefinition.date", + "weight": 578, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ActivityDefinition.publisher", + "weight": 579, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ActivityDefinition.contact", + "weight": 580, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ActivityDefinition.description", + "weight": 581, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ActivityDefinition.useContext", + "weight": 582, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "ActivityDefinition.jurisdiction", + "weight": 583, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ActivityDefinition.purpose", + "weight": 584, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ActivityDefinition.usage", + "weight": 585, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ActivityDefinition.copyright", + "weight": 586, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ActivityDefinition.approvalDate", + "weight": 587, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ActivityDefinition.lastReviewDate", + "weight": 588, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ActivityDefinition.effectivePeriod", + "weight": 589, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ActivityDefinition.topic", + "weight": 590, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ActivityDefinition.author", + "weight": 591, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ActivityDefinition.editor", + "weight": 592, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ActivityDefinition.reviewer", + "weight": 593, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ActivityDefinition.endorser", + "weight": 594, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ActivityDefinition.relatedArtifact", + "weight": 595, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "ActivityDefinition.library", + "weight": 596, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "ActivityDefinition.kind", + "weight": 597, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ActivityDefinition.profile", + "weight": 598, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "ActivityDefinition.code", + "weight": 599, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ActivityDefinition.intent", + "weight": 600, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ActivityDefinition.priority", + "weight": 601, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ActivityDefinition.doNotPerform", + "weight": 602, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ActivityDefinition.timingTiming", + "weight": 603, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "ActivityDefinition.timingDateTime", + "weight": 603, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ActivityDefinition.timingAge", + "weight": 603, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "ActivityDefinition.timingPeriod", + "weight": 603, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ActivityDefinition.timingRange", + "weight": 603, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "ActivityDefinition.timingDuration", + "weight": 603, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "ActivityDefinition.location", + "weight": 604, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ActivityDefinition.participant", + "weight": 605, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ActivityDefinition.participant.id", + "weight": 606, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ActivityDefinition.participant.extension", + "weight": 607, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ActivityDefinition.participant.modifierExtension", + "weight": 608, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ActivityDefinition.participant.type", + "weight": 609, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ActivityDefinition.participant.role", + "weight": 610, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ActivityDefinition.productReference", + "weight": 611, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ActivityDefinition.productCodeableConcept", + "weight": 611, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ActivityDefinition.quantity", + "weight": 612, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ActivityDefinition.dosage", + "weight": 613, + "max": "*", + "type": "Dosage" + }, + { + "min": 0, + "path": "ActivityDefinition.bodySite", + "weight": 614, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ActivityDefinition.specimenRequirement", + "weight": 615, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ActivityDefinition.observationRequirement", + "weight": 616, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ActivityDefinition.observationResultRequirement", + "weight": 617, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ActivityDefinition.transform", + "weight": 618, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "ActivityDefinition.dynamicValue", + "weight": 619, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ActivityDefinition.dynamicValue.id", + "weight": 620, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ActivityDefinition.dynamicValue.extension", + "weight": 621, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ActivityDefinition.dynamicValue.modifierExtension", + "weight": 622, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ActivityDefinition.dynamicValue.path", + "weight": 623, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ActivityDefinition.dynamicValue.expression", + "weight": 624, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "AdverseEvent", + "weight": 625, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "AdverseEvent.id", + "weight": 626, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "AdverseEvent.meta", + "weight": 627, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "AdverseEvent.implicitRules", + "weight": 628, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "AdverseEvent.language", + "weight": 629, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "AdverseEvent.text", + "weight": 630, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "AdverseEvent.contained", + "weight": 631, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "AdverseEvent.extension", + "weight": 632, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AdverseEvent.modifierExtension", + "weight": 633, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AdverseEvent.identifier", + "weight": 634, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "AdverseEvent.actuality", + "weight": 635, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "AdverseEvent.category", + "weight": 636, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "AdverseEvent.event", + "weight": 637, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "AdverseEvent.subject", + "weight": 638, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AdverseEvent.encounter", + "weight": 639, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AdverseEvent.date", + "weight": 640, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "AdverseEvent.detected", + "weight": 641, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "AdverseEvent.recordedDate", + "weight": 642, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "AdverseEvent.resultingCondition", + "weight": 643, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "AdverseEvent.location", + "weight": 644, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AdverseEvent.seriousness", + "weight": 645, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "AdverseEvent.severity", + "weight": 646, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "AdverseEvent.outcome", + "weight": 647, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "AdverseEvent.recorder", + "weight": 648, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AdverseEvent.contributor", + "weight": 649, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "AdverseEvent.suspectEntity", + "weight": 650, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "AdverseEvent.suspectEntity.id", + "weight": 651, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "AdverseEvent.suspectEntity.extension", + "weight": 652, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AdverseEvent.suspectEntity.modifierExtension", + "weight": 653, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "AdverseEvent.suspectEntity.instance", + "weight": 654, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AdverseEvent.suspectEntity.causality", + "weight": 655, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "AdverseEvent.suspectEntity.causality.id", + "weight": 656, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "AdverseEvent.suspectEntity.causality.extension", + "weight": 657, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AdverseEvent.suspectEntity.causality.modifierExtension", + "weight": 658, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AdverseEvent.suspectEntity.causality.assessment", + "weight": 659, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "AdverseEvent.suspectEntity.causality.productRelatedness", + "weight": 660, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "AdverseEvent.suspectEntity.causality.author", + "weight": 661, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AdverseEvent.suspectEntity.causality.method", + "weight": 662, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "AdverseEvent.subjectMedicalHistory", + "weight": 663, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "AdverseEvent.referenceDocument", + "weight": 664, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "AdverseEvent.study", + "weight": 665, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "AllergyIntolerance", + "weight": 666, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "AllergyIntolerance.id", + "weight": 667, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "AllergyIntolerance.meta", + "weight": 668, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "AllergyIntolerance.implicitRules", + "weight": 669, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "AllergyIntolerance.language", + "weight": 670, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "AllergyIntolerance.text", + "weight": 671, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "AllergyIntolerance.contained", + "weight": 672, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "AllergyIntolerance.extension", + "weight": 673, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AllergyIntolerance.modifierExtension", + "weight": 674, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AllergyIntolerance.identifier", + "weight": 675, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "AllergyIntolerance.clinicalStatus", + "weight": 676, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "AllergyIntolerance.verificationStatus", + "weight": 677, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "AllergyIntolerance.type", + "weight": 678, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "AllergyIntolerance.category", + "weight": 679, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "AllergyIntolerance.criticality", + "weight": 680, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "AllergyIntolerance.code", + "weight": 681, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "AllergyIntolerance.patient", + "weight": 682, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AllergyIntolerance.encounter", + "weight": 683, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AllergyIntolerance.onsetDateTime", + "weight": 684, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "AllergyIntolerance.onsetAge", + "weight": 684, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "AllergyIntolerance.onsetPeriod", + "weight": 684, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "AllergyIntolerance.onsetRange", + "weight": 684, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "AllergyIntolerance.onsetString", + "weight": 684, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "AllergyIntolerance.recordedDate", + "weight": 685, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "AllergyIntolerance.recorder", + "weight": 686, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AllergyIntolerance.asserter", + "weight": 687, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AllergyIntolerance.lastOccurrence", + "weight": 688, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "AllergyIntolerance.note", + "weight": 689, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "AllergyIntolerance.reaction", + "weight": 690, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "AllergyIntolerance.reaction.id", + "weight": 691, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "AllergyIntolerance.reaction.extension", + "weight": 692, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AllergyIntolerance.reaction.modifierExtension", + "weight": 693, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AllergyIntolerance.reaction.substance", + "weight": 694, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "AllergyIntolerance.reaction.manifestation", + "weight": 695, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "AllergyIntolerance.reaction.description", + "weight": 696, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "AllergyIntolerance.reaction.onset", + "weight": 697, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "AllergyIntolerance.reaction.severity", + "weight": 698, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "AllergyIntolerance.reaction.exposureRoute", + "weight": 699, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "AllergyIntolerance.reaction.note", + "weight": 700, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Appointment", + "weight": 701, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Appointment.id", + "weight": 702, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Appointment.meta", + "weight": 703, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Appointment.implicitRules", + "weight": 704, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Appointment.language", + "weight": 705, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Appointment.text", + "weight": 706, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Appointment.contained", + "weight": 707, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Appointment.extension", + "weight": 708, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Appointment.modifierExtension", + "weight": 709, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Appointment.identifier", + "weight": 710, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "Appointment.status", + "weight": 711, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Appointment.cancelationReason", + "weight": 712, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Appointment.serviceCategory", + "weight": 713, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Appointment.serviceType", + "weight": 714, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Appointment.specialty", + "weight": 715, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Appointment.appointmentType", + "weight": 716, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Appointment.reasonCode", + "weight": 717, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Appointment.reasonReference", + "weight": 718, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Appointment.priority", + "weight": 719, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "Appointment.description", + "weight": 720, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Appointment.supportingInformation", + "weight": 721, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Appointment.start", + "weight": 722, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "Appointment.end", + "weight": 723, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "Appointment.minutesDuration", + "weight": 724, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Appointment.slot", + "weight": 725, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Appointment.created", + "weight": 726, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Appointment.comment", + "weight": 727, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Appointment.patientInstruction", + "weight": 728, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Appointment.basedOn", + "weight": 729, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "Appointment.participant", + "weight": 730, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Appointment.participant.id", + "weight": 731, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Appointment.participant.extension", + "weight": 732, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Appointment.participant.modifierExtension", + "weight": 733, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Appointment.participant.type", + "weight": 734, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Appointment.participant.actor", + "weight": 735, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Appointment.participant.required", + "weight": 736, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Appointment.participant.status", + "weight": 737, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Appointment.participant.period", + "weight": 738, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Appointment.requestedPeriod", + "weight": 739, + "max": "*", + "type": "Period" + }, + { + "min": 0, + "path": "AppointmentResponse", + "weight": 740, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "AppointmentResponse.id", + "weight": 741, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "AppointmentResponse.meta", + "weight": 742, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "AppointmentResponse.implicitRules", + "weight": 743, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "AppointmentResponse.language", + "weight": 744, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "AppointmentResponse.text", + "weight": 745, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "AppointmentResponse.contained", + "weight": 746, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "AppointmentResponse.extension", + "weight": 747, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AppointmentResponse.modifierExtension", + "weight": 748, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AppointmentResponse.identifier", + "weight": 749, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "AppointmentResponse.appointment", + "weight": 750, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AppointmentResponse.start", + "weight": 751, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "AppointmentResponse.end", + "weight": 752, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "AppointmentResponse.participantType", + "weight": 753, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "AppointmentResponse.actor", + "weight": 754, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "AppointmentResponse.participantStatus", + "weight": 755, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "AppointmentResponse.comment", + "weight": 756, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "AuditEvent", + "weight": 757, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "AuditEvent.id", + "weight": 758, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "AuditEvent.meta", + "weight": 759, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "AuditEvent.implicitRules", + "weight": 760, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "AuditEvent.language", + "weight": 761, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "AuditEvent.text", + "weight": 762, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "AuditEvent.contained", + "weight": 763, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "AuditEvent.extension", + "weight": 764, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AuditEvent.modifierExtension", + "weight": 765, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "AuditEvent.type", + "weight": 766, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "AuditEvent.subtype", + "weight": 767, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "AuditEvent.action", + "weight": 768, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "AuditEvent.period", + "weight": 769, + "max": "1", + "type": "Period" + }, + { + "min": 1, + "path": "AuditEvent.recorded", + "weight": 770, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "AuditEvent.outcome", + "weight": 771, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "AuditEvent.outcomeDesc", + "weight": 772, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "AuditEvent.purposeOfEvent", + "weight": 773, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "AuditEvent.agent", + "weight": 774, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "AuditEvent.agent.id", + "weight": 775, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "AuditEvent.agent.extension", + "weight": 776, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AuditEvent.agent.modifierExtension", + "weight": 777, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AuditEvent.agent.type", + "weight": 778, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "AuditEvent.agent.role", + "weight": 779, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "AuditEvent.agent.who", + "weight": 780, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AuditEvent.agent.altId", + "weight": 781, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "AuditEvent.agent.name", + "weight": 782, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "AuditEvent.agent.requestor", + "weight": 783, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "AuditEvent.agent.location", + "weight": 784, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AuditEvent.agent.policy", + "weight": 785, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "AuditEvent.agent.media", + "weight": 786, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "AuditEvent.agent.network", + "weight": 787, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "AuditEvent.agent.network.id", + "weight": 788, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "AuditEvent.agent.network.extension", + "weight": 789, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AuditEvent.agent.network.modifierExtension", + "weight": 790, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AuditEvent.agent.network.address", + "weight": 791, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "AuditEvent.agent.network.type", + "weight": 792, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "AuditEvent.agent.purposeOfUse", + "weight": 793, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "AuditEvent.source", + "weight": 794, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "AuditEvent.source.id", + "weight": 795, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "AuditEvent.source.extension", + "weight": 796, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AuditEvent.source.modifierExtension", + "weight": 797, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AuditEvent.source.site", + "weight": 798, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "AuditEvent.source.observer", + "weight": 799, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AuditEvent.source.type", + "weight": 800, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "AuditEvent.entity", + "weight": 801, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "AuditEvent.entity.id", + "weight": 802, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "AuditEvent.entity.extension", + "weight": 803, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AuditEvent.entity.modifierExtension", + "weight": 804, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AuditEvent.entity.what", + "weight": 805, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "AuditEvent.entity.type", + "weight": 806, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "AuditEvent.entity.role", + "weight": 807, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "AuditEvent.entity.lifecycle", + "weight": 808, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "AuditEvent.entity.securityLabel", + "weight": 809, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "AuditEvent.entity.name", + "weight": 810, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "AuditEvent.entity.description", + "weight": 811, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "AuditEvent.entity.query", + "weight": 812, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "AuditEvent.entity.detail", + "weight": 813, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "AuditEvent.entity.detail.id", + "weight": 814, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "AuditEvent.entity.detail.extension", + "weight": 815, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "AuditEvent.entity.detail.modifierExtension", + "weight": 816, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "AuditEvent.entity.detail.type", + "weight": 817, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "AuditEvent.entity.detail.valueString", + "weight": 818, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "AuditEvent.entity.detail.valueBase64Binary", + "weight": 818, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "Basic", + "weight": 819, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Basic.id", + "weight": 820, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Basic.meta", + "weight": 821, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Basic.implicitRules", + "weight": 822, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Basic.language", + "weight": 823, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Basic.text", + "weight": 824, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Basic.contained", + "weight": 825, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Basic.extension", + "weight": 826, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Basic.modifierExtension", + "weight": 827, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Basic.identifier", + "weight": 828, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "Basic.code", + "weight": 829, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Basic.subject", + "weight": 830, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Basic.created", + "weight": 831, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Basic.author", + "weight": 832, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Binary", + "weight": 833, + "max": "*", + "kind": "resource", + "type": "Resource" + }, + { + "min": 0, + "path": "Binary.id", + "weight": 834, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Binary.meta", + "weight": 835, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Binary.implicitRules", + "weight": 836, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Binary.language", + "weight": 837, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Binary.contentType", + "weight": 838, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Binary.securityContext", + "weight": 839, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Binary.data", + "weight": 840, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct", + "weight": 841, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.id", + "weight": 842, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.meta", + "weight": 843, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.implicitRules", + "weight": 844, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.language", + "weight": 845, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.text", + "weight": 846, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.contained", + "weight": 847, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.extension", + "weight": 848, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.modifierExtension", + "weight": 849, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.identifier", + "weight": 850, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.productCategory", + "weight": 851, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.productCode", + "weight": 852, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.status", + "weight": 853, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.request", + "weight": 854, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.quantity", + "weight": 855, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.parent", + "weight": 856, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.collection", + "weight": 857, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.collection.id", + "weight": 858, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.collection.extension", + "weight": 859, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.collection.modifierExtension", + "weight": 860, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.collection.collector", + "weight": 861, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.collection.source", + "weight": 862, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.collection.collectedDateTime", + "weight": 863, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.collection.collectedPeriod", + "weight": 863, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.processing", + "weight": 864, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.processing.id", + "weight": 865, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.processing.extension", + "weight": 866, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.processing.modifierExtension", + "weight": 867, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.processing.description", + "weight": 868, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.processing.procedure", + "weight": 869, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.processing.additive", + "weight": 870, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.processing.timeDateTime", + "weight": 871, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.processing.timePeriod", + "weight": 871, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.manipulation", + "weight": 872, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.manipulation.id", + "weight": 873, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.manipulation.extension", + "weight": 874, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.manipulation.modifierExtension", + "weight": 875, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.manipulation.description", + "weight": 876, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.manipulation.timeDateTime", + "weight": 877, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.manipulation.timePeriod", + "weight": 877, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.storage", + "weight": 878, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.storage.id", + "weight": 879, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.storage.extension", + "weight": 880, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.storage.modifierExtension", + "weight": 881, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.storage.description", + "weight": 882, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.storage.temperature", + "weight": 883, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.storage.scale", + "weight": 884, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "BiologicallyDerivedProduct.storage.duration", + "weight": 885, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "BodyStructure", + "weight": 886, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "BodyStructure.id", + "weight": 887, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "BodyStructure.meta", + "weight": 888, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "BodyStructure.implicitRules", + "weight": 889, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "BodyStructure.language", + "weight": 890, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "BodyStructure.text", + "weight": 891, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "BodyStructure.contained", + "weight": 892, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "BodyStructure.extension", + "weight": 893, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BodyStructure.modifierExtension", + "weight": 894, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "BodyStructure.identifier", + "weight": 895, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "BodyStructure.active", + "weight": 896, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "BodyStructure.morphology", + "weight": 897, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "BodyStructure.location", + "weight": 898, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "BodyStructure.locationQualifier", + "weight": 899, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "BodyStructure.description", + "weight": 900, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "BodyStructure.image", + "weight": 901, + "max": "*", + "type": "Attachment" + }, + { + "min": 1, + "path": "BodyStructure.patient", + "weight": 902, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Bundle", + "weight": 903, + "max": "*", + "kind": "resource", + "type": "Resource" + }, + { + "min": 0, + "path": "Bundle.id", + "weight": 904, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Bundle.meta", + "weight": 905, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Bundle.implicitRules", + "weight": 906, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Bundle.language", + "weight": 907, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Bundle.identifier", + "weight": 908, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "Bundle.type", + "weight": 909, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Bundle.timestamp", + "weight": 910, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "Bundle.total", + "weight": 911, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "Bundle.link", + "weight": 912, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Bundle.link.id", + "weight": 913, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Bundle.link.extension", + "weight": 914, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Bundle.link.modifierExtension", + "weight": 915, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Bundle.link.relation", + "weight": 916, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Bundle.link.url", + "weight": 917, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Bundle.entry", + "weight": 918, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Bundle.entry.id", + "weight": 919, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Bundle.entry.extension", + "weight": 920, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Bundle.entry.modifierExtension", + "weight": 921, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Bundle.entry.link", + "weight": 922, + "max": "*" + }, + { + "min": 0, + "path": "Bundle.entry.fullUrl", + "weight": 923, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Bundle.entry.resource", + "weight": 924, + "max": "1", + "type": "Resource" + }, + { + "min": 0, + "path": "Bundle.entry.search", + "weight": 925, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Bundle.entry.search.id", + "weight": 926, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Bundle.entry.search.extension", + "weight": 927, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Bundle.entry.search.modifierExtension", + "weight": 928, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Bundle.entry.search.mode", + "weight": 929, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Bundle.entry.search.score", + "weight": 930, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Bundle.entry.request", + "weight": 931, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Bundle.entry.request.id", + "weight": 932, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Bundle.entry.request.extension", + "weight": 933, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Bundle.entry.request.modifierExtension", + "weight": 934, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Bundle.entry.request.method", + "weight": 935, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Bundle.entry.request.url", + "weight": 936, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Bundle.entry.request.ifNoneMatch", + "weight": 937, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Bundle.entry.request.ifModifiedSince", + "weight": 938, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "Bundle.entry.request.ifMatch", + "weight": 939, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Bundle.entry.request.ifNoneExist", + "weight": 940, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Bundle.entry.response", + "weight": 941, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Bundle.entry.response.id", + "weight": 942, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Bundle.entry.response.extension", + "weight": 943, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Bundle.entry.response.modifierExtension", + "weight": 944, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Bundle.entry.response.status", + "weight": 945, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Bundle.entry.response.location", + "weight": 946, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Bundle.entry.response.etag", + "weight": 947, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Bundle.entry.response.lastModified", + "weight": 948, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "Bundle.entry.response.outcome", + "weight": 949, + "max": "1", + "type": "Resource" + }, + { + "min": 0, + "path": "Bundle.signature", + "weight": 950, + "max": "1", + "type": "Signature" + }, + { + "min": 0, + "path": "CapabilityStatement", + "weight": 951, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "CapabilityStatement.id", + "weight": 952, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.meta", + "weight": 953, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "CapabilityStatement.implicitRules", + "weight": 954, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CapabilityStatement.language", + "weight": 955, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.text", + "weight": 956, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "CapabilityStatement.contained", + "weight": 957, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "CapabilityStatement.extension", + "weight": 958, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.modifierExtension", + "weight": 959, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.url", + "weight": 960, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CapabilityStatement.version", + "weight": 961, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CapabilityStatement.name", + "weight": 962, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CapabilityStatement.title", + "weight": 963, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "CapabilityStatement.status", + "weight": 964, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.experimental", + "weight": 965, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "CapabilityStatement.date", + "weight": 966, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "CapabilityStatement.publisher", + "weight": 967, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CapabilityStatement.contact", + "weight": 968, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "CapabilityStatement.description", + "weight": 969, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CapabilityStatement.useContext", + "weight": 970, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "CapabilityStatement.jurisdiction", + "weight": 971, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CapabilityStatement.purpose", + "weight": 972, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CapabilityStatement.copyright", + "weight": 973, + "max": "1", + "type": "markdown" + }, + { + "min": 1, + "path": "CapabilityStatement.kind", + "weight": 974, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.instantiates", + "weight": 975, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "CapabilityStatement.imports", + "weight": 976, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "CapabilityStatement.software", + "weight": 977, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CapabilityStatement.software.id", + "weight": 978, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.software.extension", + "weight": 979, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.software.modifierExtension", + "weight": 980, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CapabilityStatement.software.name", + "weight": 981, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CapabilityStatement.software.version", + "weight": 982, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CapabilityStatement.software.releaseDate", + "weight": 983, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "CapabilityStatement.implementation", + "weight": 984, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CapabilityStatement.implementation.id", + "weight": 985, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.implementation.extension", + "weight": 986, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.implementation.modifierExtension", + "weight": 987, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CapabilityStatement.implementation.description", + "weight": 988, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CapabilityStatement.implementation.url", + "weight": 989, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "CapabilityStatement.implementation.custodian", + "weight": 990, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "CapabilityStatement.fhirVersion", + "weight": 991, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "CapabilityStatement.format", + "weight": 992, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.patchFormat", + "weight": 993, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.implementationGuide", + "weight": 994, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "CapabilityStatement.rest", + "weight": 995, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.id", + "weight": 996, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.extension", + "weight": 997, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.modifierExtension", + "weight": 998, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CapabilityStatement.rest.mode", + "weight": 999, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.documentation", + "weight": 1000, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.security", + "weight": 1001, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.security.id", + "weight": 1002, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.security.extension", + "weight": 1003, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.security.modifierExtension", + "weight": 1004, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.security.cors", + "weight": 1005, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.security.service", + "weight": 1006, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.security.description", + "weight": 1007, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource", + "weight": 1008, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.id", + "weight": 1009, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.extension", + "weight": 1010, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.modifierExtension", + "weight": 1011, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CapabilityStatement.rest.resource.type", + "weight": 1012, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.profile", + "weight": 1013, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.supportedProfile", + "weight": 1014, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.documentation", + "weight": 1015, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.interaction", + "weight": 1016, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.interaction.id", + "weight": 1017, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.interaction.extension", + "weight": 1018, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.interaction.modifierExtension", + "weight": 1019, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CapabilityStatement.rest.resource.interaction.code", + "weight": 1020, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.interaction.documentation", + "weight": 1021, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.versioning", + "weight": 1022, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.readHistory", + "weight": 1023, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.updateCreate", + "weight": 1024, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.conditionalCreate", + "weight": 1025, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.conditionalRead", + "weight": 1026, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.conditionalUpdate", + "weight": 1027, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.conditionalDelete", + "weight": 1028, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.referencePolicy", + "weight": 1029, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.searchInclude", + "weight": 1030, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.searchRevInclude", + "weight": 1031, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.searchParam", + "weight": 1032, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.searchParam.id", + "weight": 1033, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.searchParam.extension", + "weight": 1034, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.searchParam.modifierExtension", + "weight": 1035, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CapabilityStatement.rest.resource.searchParam.name", + "weight": 1036, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.searchParam.definition", + "weight": 1037, + "max": "1", + "type": "canonical" + }, + { + "min": 1, + "path": "CapabilityStatement.rest.resource.searchParam.type", + "weight": 1038, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.searchParam.documentation", + "weight": 1039, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.operation", + "weight": 1040, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.operation.id", + "weight": 1041, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.operation.extension", + "weight": 1042, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.operation.modifierExtension", + "weight": 1043, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CapabilityStatement.rest.resource.operation.name", + "weight": 1044, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "CapabilityStatement.rest.resource.operation.definition", + "weight": 1045, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.resource.operation.documentation", + "weight": 1046, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.interaction", + "weight": 1047, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.interaction.id", + "weight": 1048, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.interaction.extension", + "weight": 1049, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.interaction.modifierExtension", + "weight": 1050, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CapabilityStatement.rest.interaction.code", + "weight": 1051, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.interaction.documentation", + "weight": 1052, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.searchParam", + "weight": 1053, + "max": "*" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.operation", + "weight": 1054, + "max": "*" + }, + { + "min": 0, + "path": "CapabilityStatement.rest.compartment", + "weight": 1055, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging", + "weight": 1056, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging.id", + "weight": 1057, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging.extension", + "weight": 1058, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging.modifierExtension", + "weight": 1059, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging.endpoint", + "weight": 1060, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging.endpoint.id", + "weight": 1061, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging.endpoint.extension", + "weight": 1062, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging.endpoint.modifierExtension", + "weight": 1063, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CapabilityStatement.messaging.endpoint.protocol", + "weight": 1064, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "CapabilityStatement.messaging.endpoint.address", + "weight": 1065, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging.reliableCache", + "weight": 1066, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging.documentation", + "weight": 1067, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging.supportedMessage", + "weight": 1068, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging.supportedMessage.id", + "weight": 1069, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging.supportedMessage.extension", + "weight": 1070, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.messaging.supportedMessage.modifierExtension", + "weight": 1071, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CapabilityStatement.messaging.supportedMessage.mode", + "weight": 1072, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "CapabilityStatement.messaging.supportedMessage.definition", + "weight": 1073, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "CapabilityStatement.document", + "weight": 1074, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CapabilityStatement.document.id", + "weight": 1075, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CapabilityStatement.document.extension", + "weight": 1076, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CapabilityStatement.document.modifierExtension", + "weight": 1077, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CapabilityStatement.document.mode", + "weight": 1078, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CapabilityStatement.document.documentation", + "weight": 1079, + "max": "1", + "type": "markdown" + }, + { + "min": 1, + "path": "CapabilityStatement.document.profile", + "weight": 1080, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "CarePlan", + "weight": 1081, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "CarePlan.id", + "weight": 1082, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CarePlan.meta", + "weight": 1083, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "CarePlan.implicitRules", + "weight": 1084, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CarePlan.language", + "weight": 1085, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CarePlan.text", + "weight": 1086, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "CarePlan.contained", + "weight": 1087, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "CarePlan.extension", + "weight": 1088, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CarePlan.modifierExtension", + "weight": 1089, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CarePlan.identifier", + "weight": 1090, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "CarePlan.instantiatesCanonical", + "weight": 1091, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "CarePlan.instantiatesUri", + "weight": 1092, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "CarePlan.basedOn", + "weight": 1093, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.replaces", + "weight": 1094, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.partOf", + "weight": 1095, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "CarePlan.status", + "weight": 1096, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "CarePlan.intent", + "weight": 1097, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CarePlan.category", + "weight": 1098, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CarePlan.title", + "weight": 1099, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CarePlan.description", + "weight": 1100, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "CarePlan.subject", + "weight": 1101, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.encounter", + "weight": 1102, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.period", + "weight": 1103, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "CarePlan.created", + "weight": 1104, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "CarePlan.author", + "weight": 1105, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.contributor", + "weight": 1106, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.careTeam", + "weight": 1107, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.addresses", + "weight": 1108, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.supportingInfo", + "weight": 1109, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.goal", + "weight": 1110, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.activity", + "weight": 1111, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CarePlan.activity.id", + "weight": 1112, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CarePlan.activity.extension", + "weight": 1113, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CarePlan.activity.modifierExtension", + "weight": 1114, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CarePlan.activity.outcomeCodeableConcept", + "weight": 1115, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CarePlan.activity.outcomeReference", + "weight": 1116, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.activity.progress", + "weight": 1117, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "CarePlan.activity.reference", + "weight": 1118, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.activity.detail", + "weight": 1119, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.id", + "weight": 1120, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.extension", + "weight": 1121, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.modifierExtension", + "weight": 1122, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.kind", + "weight": 1123, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.instantiatesCanonical", + "weight": 1124, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.instantiatesUri", + "weight": 1125, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.code", + "weight": 1126, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.reasonCode", + "weight": 1127, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.reasonReference", + "weight": 1128, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.goal", + "weight": 1129, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "CarePlan.activity.detail.status", + "weight": 1130, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.statusReason", + "weight": 1131, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.doNotPerform", + "weight": 1132, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.scheduledTiming", + "weight": 1133, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.scheduledPeriod", + "weight": 1133, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.scheduledString", + "weight": 1133, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.location", + "weight": 1134, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.performer", + "weight": 1135, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.productCodeableConcept", + "weight": 1136, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.productReference", + "weight": 1136, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.dailyAmount", + "weight": 1137, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.quantity", + "weight": 1138, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "CarePlan.activity.detail.description", + "weight": 1139, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CarePlan.note", + "weight": 1140, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "CareTeam", + "weight": 1141, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "CareTeam.id", + "weight": 1142, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CareTeam.meta", + "weight": 1143, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "CareTeam.implicitRules", + "weight": 1144, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CareTeam.language", + "weight": 1145, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CareTeam.text", + "weight": 1146, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "CareTeam.contained", + "weight": 1147, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "CareTeam.extension", + "weight": 1148, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CareTeam.modifierExtension", + "weight": 1149, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CareTeam.identifier", + "weight": 1150, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "CareTeam.status", + "weight": 1151, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CareTeam.category", + "weight": 1152, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CareTeam.name", + "weight": 1153, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CareTeam.subject", + "weight": 1154, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CareTeam.encounter", + "weight": 1155, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CareTeam.period", + "weight": 1156, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "CareTeam.participant", + "weight": 1157, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CareTeam.participant.id", + "weight": 1158, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CareTeam.participant.extension", + "weight": 1159, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CareTeam.participant.modifierExtension", + "weight": 1160, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CareTeam.participant.role", + "weight": 1161, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CareTeam.participant.member", + "weight": 1162, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CareTeam.participant.onBehalfOf", + "weight": 1163, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CareTeam.participant.period", + "weight": 1164, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "CareTeam.reasonCode", + "weight": 1165, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CareTeam.reasonReference", + "weight": 1166, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CareTeam.managingOrganization", + "weight": 1167, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CareTeam.telecom", + "weight": 1168, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "CareTeam.note", + "weight": 1169, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "CatalogEntry", + "weight": 1170, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "CatalogEntry.id", + "weight": 1171, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CatalogEntry.meta", + "weight": 1172, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "CatalogEntry.implicitRules", + "weight": 1173, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CatalogEntry.language", + "weight": 1174, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CatalogEntry.text", + "weight": 1175, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "CatalogEntry.contained", + "weight": 1176, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "CatalogEntry.extension", + "weight": 1177, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CatalogEntry.modifierExtension", + "weight": 1178, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CatalogEntry.identifier", + "weight": 1179, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "CatalogEntry.type", + "weight": 1180, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "CatalogEntry.orderable", + "weight": 1181, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "CatalogEntry.referencedItem", + "weight": 1182, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CatalogEntry.additionalIdentifier", + "weight": 1183, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "CatalogEntry.classification", + "weight": 1184, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CatalogEntry.status", + "weight": 1185, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CatalogEntry.validityPeriod", + "weight": 1186, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "CatalogEntry.validTo", + "weight": 1187, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "CatalogEntry.lastUpdated", + "weight": 1188, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "CatalogEntry.additionalCharacteristic", + "weight": 1189, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CatalogEntry.additionalClassification", + "weight": 1190, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CatalogEntry.relatedEntry", + "weight": 1191, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CatalogEntry.relatedEntry.id", + "weight": 1192, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CatalogEntry.relatedEntry.extension", + "weight": 1193, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CatalogEntry.relatedEntry.modifierExtension", + "weight": 1194, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CatalogEntry.relatedEntry.relationtype", + "weight": 1195, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "CatalogEntry.relatedEntry.item", + "weight": 1196, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ChargeItem", + "weight": 1197, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ChargeItem.id", + "weight": 1198, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ChargeItem.meta", + "weight": 1199, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ChargeItem.implicitRules", + "weight": 1200, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ChargeItem.language", + "weight": 1201, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ChargeItem.text", + "weight": 1202, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ChargeItem.contained", + "weight": 1203, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ChargeItem.extension", + "weight": 1204, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ChargeItem.modifierExtension", + "weight": 1205, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ChargeItem.identifier", + "weight": 1206, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "ChargeItem.definitionUri", + "weight": 1207, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "ChargeItem.definitionCanonical", + "weight": 1208, + "max": "*", + "type": "canonical" + }, + { + "min": 1, + "path": "ChargeItem.status", + "weight": 1209, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ChargeItem.partOf", + "weight": 1210, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "ChargeItem.code", + "weight": 1211, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ChargeItem.subject", + "weight": 1212, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ChargeItem.context", + "weight": 1213, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ChargeItem.occurrenceDateTime", + "weight": 1214, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ChargeItem.occurrencePeriod", + "weight": 1214, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ChargeItem.occurrenceTiming", + "weight": 1214, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "ChargeItem.performer", + "weight": 1215, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ChargeItem.performer.id", + "weight": 1216, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ChargeItem.performer.extension", + "weight": 1217, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ChargeItem.performer.modifierExtension", + "weight": 1218, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ChargeItem.performer.function", + "weight": 1219, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ChargeItem.performer.actor", + "weight": 1220, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ChargeItem.performingOrganization", + "weight": 1221, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ChargeItem.requestingOrganization", + "weight": 1222, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ChargeItem.costCenter", + "weight": 1223, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ChargeItem.quantity", + "weight": 1224, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ChargeItem.bodysite", + "weight": 1225, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ChargeItem.factorOverride", + "weight": 1226, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ChargeItem.priceOverride", + "weight": 1227, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ChargeItem.overrideReason", + "weight": 1228, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ChargeItem.enterer", + "weight": 1229, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ChargeItem.enteredDate", + "weight": 1230, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ChargeItem.reason", + "weight": 1231, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ChargeItem.service", + "weight": 1232, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ChargeItem.productReference", + "weight": 1233, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ChargeItem.productCodeableConcept", + "weight": 1233, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ChargeItem.account", + "weight": 1234, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ChargeItem.note", + "weight": 1235, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "ChargeItem.supportingInformation", + "weight": 1236, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ChargeItemDefinition", + "weight": 1237, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ChargeItemDefinition.id", + "weight": 1238, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ChargeItemDefinition.meta", + "weight": 1239, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ChargeItemDefinition.implicitRules", + "weight": 1240, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ChargeItemDefinition.language", + "weight": 1241, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ChargeItemDefinition.text", + "weight": 1242, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ChargeItemDefinition.contained", + "weight": 1243, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ChargeItemDefinition.extension", + "weight": 1244, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ChargeItemDefinition.modifierExtension", + "weight": 1245, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ChargeItemDefinition.url", + "weight": 1246, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ChargeItemDefinition.identifier", + "weight": 1247, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "ChargeItemDefinition.version", + "weight": 1248, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ChargeItemDefinition.title", + "weight": 1249, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ChargeItemDefinition.derivedFromUri", + "weight": 1250, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "ChargeItemDefinition.partOf", + "weight": 1251, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "ChargeItemDefinition.replaces", + "weight": 1252, + "max": "*", + "type": "canonical" + }, + { + "min": 1, + "path": "ChargeItemDefinition.status", + "weight": 1253, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ChargeItemDefinition.experimental", + "weight": 1254, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ChargeItemDefinition.date", + "weight": 1255, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ChargeItemDefinition.publisher", + "weight": 1256, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ChargeItemDefinition.contact", + "weight": 1257, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ChargeItemDefinition.description", + "weight": 1258, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ChargeItemDefinition.useContext", + "weight": 1259, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "ChargeItemDefinition.jurisdiction", + "weight": 1260, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ChargeItemDefinition.copyright", + "weight": 1261, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ChargeItemDefinition.approvalDate", + "weight": 1262, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ChargeItemDefinition.lastReviewDate", + "weight": 1263, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ChargeItemDefinition.effectivePeriod", + "weight": 1264, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ChargeItemDefinition.code", + "weight": 1265, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ChargeItemDefinition.instance", + "weight": 1266, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ChargeItemDefinition.applicability", + "weight": 1267, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ChargeItemDefinition.applicability.id", + "weight": 1268, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ChargeItemDefinition.applicability.extension", + "weight": 1269, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ChargeItemDefinition.applicability.modifierExtension", + "weight": 1270, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ChargeItemDefinition.applicability.description", + "weight": 1271, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ChargeItemDefinition.applicability.language", + "weight": 1272, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ChargeItemDefinition.applicability.expression", + "weight": 1273, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ChargeItemDefinition.propertyGroup", + "weight": 1274, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ChargeItemDefinition.propertyGroup.id", + "weight": 1275, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ChargeItemDefinition.propertyGroup.extension", + "weight": 1276, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ChargeItemDefinition.propertyGroup.modifierExtension", + "weight": 1277, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ChargeItemDefinition.propertyGroup.applicability", + "weight": 1278, + "max": "*" + }, + { + "min": 0, + "path": "ChargeItemDefinition.propertyGroup.priceComponent", + "weight": 1279, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ChargeItemDefinition.propertyGroup.priceComponent.id", + "weight": 1280, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ChargeItemDefinition.propertyGroup.priceComponent.extension", + "weight": 1281, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ChargeItemDefinition.propertyGroup.priceComponent.modifierExtension", + "weight": 1282, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ChargeItemDefinition.propertyGroup.priceComponent.type", + "weight": 1283, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ChargeItemDefinition.propertyGroup.priceComponent.code", + "weight": 1284, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ChargeItemDefinition.propertyGroup.priceComponent.factor", + "weight": 1285, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ChargeItemDefinition.propertyGroup.priceComponent.amount", + "weight": 1286, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Claim", + "weight": 1287, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Claim.id", + "weight": 1288, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Claim.meta", + "weight": 1289, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Claim.implicitRules", + "weight": 1290, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Claim.language", + "weight": 1291, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Claim.text", + "weight": 1292, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Claim.contained", + "weight": 1293, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Claim.extension", + "weight": 1294, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.modifierExtension", + "weight": 1295, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.identifier", + "weight": 1296, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "Claim.status", + "weight": 1297, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Claim.type", + "weight": 1298, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.subType", + "weight": 1299, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Claim.use", + "weight": 1300, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Claim.patient", + "weight": 1301, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.billablePeriod", + "weight": 1302, + "max": "1", + "type": "Period" + }, + { + "min": 1, + "path": "Claim.created", + "weight": 1303, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Claim.enterer", + "weight": 1304, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.insurer", + "weight": 1305, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "Claim.provider", + "weight": 1306, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "Claim.priority", + "weight": 1307, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.fundsReserve", + "weight": 1308, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.related", + "weight": 1309, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Claim.related.id", + "weight": 1310, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Claim.related.extension", + "weight": 1311, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.related.modifierExtension", + "weight": 1312, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.related.claim", + "weight": 1313, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.related.relationship", + "weight": 1314, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.related.reference", + "weight": 1315, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "Claim.prescription", + "weight": 1316, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.originalPrescription", + "weight": 1317, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.payee", + "weight": 1318, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Claim.payee.id", + "weight": 1319, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Claim.payee.extension", + "weight": 1320, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.payee.modifierExtension", + "weight": 1321, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Claim.payee.type", + "weight": 1322, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.payee.party", + "weight": 1323, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.referral", + "weight": 1324, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.facility", + "weight": 1325, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.careTeam", + "weight": 1326, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Claim.careTeam.id", + "weight": 1327, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Claim.careTeam.extension", + "weight": 1328, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.careTeam.modifierExtension", + "weight": 1329, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Claim.careTeam.sequence", + "weight": 1330, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "Claim.careTeam.provider", + "weight": 1331, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.careTeam.responsible", + "weight": 1332, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Claim.careTeam.role", + "weight": 1333, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.careTeam.qualification", + "weight": 1334, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.supportingInfo", + "weight": 1335, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Claim.supportingInfo.id", + "weight": 1336, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Claim.supportingInfo.extension", + "weight": 1337, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.supportingInfo.modifierExtension", + "weight": 1338, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Claim.supportingInfo.sequence", + "weight": 1339, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "Claim.supportingInfo.category", + "weight": 1340, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.supportingInfo.code", + "weight": 1341, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.supportingInfo.timingDate", + "weight": 1342, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Claim.supportingInfo.timingPeriod", + "weight": 1342, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Claim.supportingInfo.valueBoolean", + "weight": 1343, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Claim.supportingInfo.valueString", + "weight": 1343, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Claim.supportingInfo.valueQuantity", + "weight": 1343, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Claim.supportingInfo.valueAttachment", + "weight": 1343, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "Claim.supportingInfo.valueReference", + "weight": 1343, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.supportingInfo.reason", + "weight": 1344, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.diagnosis", + "weight": 1345, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Claim.diagnosis.id", + "weight": 1346, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Claim.diagnosis.extension", + "weight": 1347, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.diagnosis.modifierExtension", + "weight": 1348, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Claim.diagnosis.sequence", + "weight": 1349, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "Claim.diagnosis.diagnosisCodeableConcept", + "weight": 1350, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Claim.diagnosis.diagnosisReference", + "weight": 1350, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.diagnosis.type", + "weight": 1351, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.diagnosis.onAdmission", + "weight": 1352, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.diagnosis.packageCode", + "weight": 1353, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.procedure", + "weight": 1354, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Claim.procedure.id", + "weight": 1355, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Claim.procedure.extension", + "weight": 1356, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.procedure.modifierExtension", + "weight": 1357, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Claim.procedure.sequence", + "weight": 1358, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Claim.procedure.type", + "weight": 1359, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.procedure.date", + "weight": 1360, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "Claim.procedure.procedureCodeableConcept", + "weight": 1361, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Claim.procedure.procedureReference", + "weight": 1361, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.procedure.udi", + "weight": 1362, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "Claim.insurance", + "weight": 1363, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Claim.insurance.id", + "weight": 1364, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Claim.insurance.extension", + "weight": 1365, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.insurance.modifierExtension", + "weight": 1366, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Claim.insurance.sequence", + "weight": 1367, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "Claim.insurance.focal", + "weight": 1368, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Claim.insurance.identifier", + "weight": 1369, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "Claim.insurance.coverage", + "weight": 1370, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.insurance.businessArrangement", + "weight": 1371, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Claim.insurance.preAuthRef", + "weight": 1372, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Claim.insurance.claimResponse", + "weight": 1373, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.accident", + "weight": 1374, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Claim.accident.id", + "weight": 1375, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Claim.accident.extension", + "weight": 1376, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.accident.modifierExtension", + "weight": 1377, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Claim.accident.date", + "weight": 1378, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Claim.accident.type", + "weight": 1379, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.accident.locationAddress", + "weight": 1380, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "Claim.accident.locationReference", + "weight": 1380, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.item", + "weight": 1381, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Claim.item.id", + "weight": 1382, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Claim.item.extension", + "weight": 1383, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.item.modifierExtension", + "weight": 1384, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Claim.item.sequence", + "weight": 1385, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Claim.item.careTeamSequence", + "weight": 1386, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Claim.item.diagnosisSequence", + "weight": 1387, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Claim.item.procedureSequence", + "weight": 1388, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Claim.item.informationSequence", + "weight": 1389, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Claim.item.revenue", + "weight": 1390, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.category", + "weight": 1391, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Claim.item.productOrService", + "weight": 1392, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.modifier", + "weight": 1393, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.programCode", + "weight": 1394, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.servicedDate", + "weight": 1395, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Claim.item.servicedPeriod", + "weight": 1395, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Claim.item.locationCodeableConcept", + "weight": 1396, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.locationAddress", + "weight": 1396, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "Claim.item.locationReference", + "weight": 1396, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.item.quantity", + "weight": 1397, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Claim.item.unitPrice", + "weight": 1398, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Claim.item.factor", + "weight": 1399, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Claim.item.net", + "weight": 1400, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Claim.item.udi", + "weight": 1401, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.item.bodySite", + "weight": 1402, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.subSite", + "weight": 1403, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.encounter", + "weight": 1404, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.item.detail", + "weight": 1405, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Claim.item.detail.id", + "weight": 1406, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Claim.item.detail.extension", + "weight": 1407, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.item.detail.modifierExtension", + "weight": 1408, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Claim.item.detail.sequence", + "weight": 1409, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Claim.item.detail.revenue", + "weight": 1410, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.detail.category", + "weight": 1411, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Claim.item.detail.productOrService", + "weight": 1412, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.detail.modifier", + "weight": 1413, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.detail.programCode", + "weight": 1414, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.detail.quantity", + "weight": 1415, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Claim.item.detail.unitPrice", + "weight": 1416, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Claim.item.detail.factor", + "weight": 1417, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Claim.item.detail.net", + "weight": 1418, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Claim.item.detail.udi", + "weight": 1419, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.item.detail.subDetail", + "weight": 1420, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Claim.item.detail.subDetail.id", + "weight": 1421, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Claim.item.detail.subDetail.extension", + "weight": 1422, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Claim.item.detail.subDetail.modifierExtension", + "weight": 1423, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Claim.item.detail.subDetail.sequence", + "weight": 1424, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Claim.item.detail.subDetail.revenue", + "weight": 1425, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.detail.subDetail.category", + "weight": 1426, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Claim.item.detail.subDetail.productOrService", + "weight": 1427, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.detail.subDetail.modifier", + "weight": 1428, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.detail.subDetail.programCode", + "weight": 1429, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Claim.item.detail.subDetail.quantity", + "weight": 1430, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Claim.item.detail.subDetail.unitPrice", + "weight": 1431, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Claim.item.detail.subDetail.factor", + "weight": 1432, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Claim.item.detail.subDetail.net", + "weight": 1433, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Claim.item.detail.subDetail.udi", + "weight": 1434, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Claim.total", + "weight": 1435, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ClaimResponse", + "weight": 1436, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ClaimResponse.id", + "weight": 1437, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClaimResponse.meta", + "weight": 1438, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ClaimResponse.implicitRules", + "weight": 1439, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ClaimResponse.language", + "weight": 1440, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ClaimResponse.text", + "weight": 1441, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ClaimResponse.contained", + "weight": 1442, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ClaimResponse.extension", + "weight": 1443, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.modifierExtension", + "weight": 1444, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.identifier", + "weight": 1445, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "ClaimResponse.status", + "weight": 1446, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ClaimResponse.type", + "weight": 1447, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.subType", + "weight": 1448, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ClaimResponse.use", + "weight": 1449, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ClaimResponse.patient", + "weight": 1450, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "ClaimResponse.created", + "weight": 1451, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "ClaimResponse.insurer", + "weight": 1452, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ClaimResponse.requestor", + "weight": 1453, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ClaimResponse.request", + "weight": 1454, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "ClaimResponse.outcome", + "weight": 1455, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ClaimResponse.disposition", + "weight": 1456, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ClaimResponse.preAuthRef", + "weight": 1457, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ClaimResponse.preAuthPeriod", + "weight": 1458, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ClaimResponse.payeeType", + "weight": 1459, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.item", + "weight": 1460, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClaimResponse.item.id", + "weight": 1461, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClaimResponse.item.extension", + "weight": 1462, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.item.modifierExtension", + "weight": 1463, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ClaimResponse.item.itemSequence", + "weight": 1464, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ClaimResponse.item.noteNumber", + "weight": 1465, + "max": "*", + "type": "positiveInt" + }, + { + "min": 1, + "path": "ClaimResponse.item.adjudication", + "weight": 1466, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClaimResponse.item.adjudication.id", + "weight": 1467, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClaimResponse.item.adjudication.extension", + "weight": 1468, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.item.adjudication.modifierExtension", + "weight": 1469, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ClaimResponse.item.adjudication.category", + "weight": 1470, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.item.adjudication.reason", + "weight": 1471, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.item.adjudication.amount", + "weight": 1472, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ClaimResponse.item.adjudication.value", + "weight": 1473, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ClaimResponse.item.detail", + "weight": 1474, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClaimResponse.item.detail.id", + "weight": 1475, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClaimResponse.item.detail.extension", + "weight": 1476, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.item.detail.modifierExtension", + "weight": 1477, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ClaimResponse.item.detail.detailSequence", + "weight": 1478, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ClaimResponse.item.detail.noteNumber", + "weight": 1479, + "max": "*", + "type": "positiveInt" + }, + { + "min": 1, + "path": "ClaimResponse.item.detail.adjudication", + "weight": 1480, + "max": "*" + }, + { + "min": 0, + "path": "ClaimResponse.item.detail.subDetail", + "weight": 1481, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClaimResponse.item.detail.subDetail.id", + "weight": 1482, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClaimResponse.item.detail.subDetail.extension", + "weight": 1483, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.item.detail.subDetail.modifierExtension", + "weight": 1484, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ClaimResponse.item.detail.subDetail.subDetailSequence", + "weight": 1485, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ClaimResponse.item.detail.subDetail.noteNumber", + "weight": 1486, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ClaimResponse.item.detail.subDetail.adjudication", + "weight": 1487, + "max": "*" + }, + { + "min": 0, + "path": "ClaimResponse.addItem", + "weight": 1488, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.id", + "weight": 1489, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.extension", + "weight": 1490, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.modifierExtension", + "weight": 1491, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.itemSequence", + "weight": 1492, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detailSequence", + "weight": 1493, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.subdetailSequence", + "weight": 1494, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.provider", + "weight": 1495, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "ClaimResponse.addItem.productOrService", + "weight": 1496, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.modifier", + "weight": 1497, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.programCode", + "weight": 1498, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.servicedDate", + "weight": 1499, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.servicedPeriod", + "weight": 1499, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.locationCodeableConcept", + "weight": 1500, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.locationAddress", + "weight": 1500, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.locationReference", + "weight": 1500, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.quantity", + "weight": 1501, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.unitPrice", + "weight": 1502, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.factor", + "weight": 1503, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.net", + "weight": 1504, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.bodySite", + "weight": 1505, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.subSite", + "weight": 1506, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.noteNumber", + "weight": 1507, + "max": "*", + "type": "positiveInt" + }, + { + "min": 1, + "path": "ClaimResponse.addItem.adjudication", + "weight": 1508, + "max": "*" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail", + "weight": 1509, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.id", + "weight": 1510, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.extension", + "weight": 1511, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.modifierExtension", + "weight": 1512, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ClaimResponse.addItem.detail.productOrService", + "weight": 1513, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.modifier", + "weight": 1514, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.quantity", + "weight": 1515, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.unitPrice", + "weight": 1516, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.factor", + "weight": 1517, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.net", + "weight": 1518, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.noteNumber", + "weight": 1519, + "max": "*", + "type": "positiveInt" + }, + { + "min": 1, + "path": "ClaimResponse.addItem.detail.adjudication", + "weight": 1520, + "max": "*" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.subDetail", + "weight": 1521, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.subDetail.id", + "weight": 1522, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.subDetail.extension", + "weight": 1523, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.subDetail.modifierExtension", + "weight": 1524, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ClaimResponse.addItem.detail.subDetail.productOrService", + "weight": 1525, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.subDetail.modifier", + "weight": 1526, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.subDetail.quantity", + "weight": 1527, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.subDetail.unitPrice", + "weight": 1528, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.subDetail.factor", + "weight": 1529, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.subDetail.net", + "weight": 1530, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ClaimResponse.addItem.detail.subDetail.noteNumber", + "weight": 1531, + "max": "*", + "type": "positiveInt" + }, + { + "min": 1, + "path": "ClaimResponse.addItem.detail.subDetail.adjudication", + "weight": 1532, + "max": "*" + }, + { + "min": 0, + "path": "ClaimResponse.adjudication", + "weight": 1533, + "max": "*" + }, + { + "min": 0, + "path": "ClaimResponse.total", + "weight": 1534, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClaimResponse.total.id", + "weight": 1535, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClaimResponse.total.extension", + "weight": 1536, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.total.modifierExtension", + "weight": 1537, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ClaimResponse.total.category", + "weight": 1538, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ClaimResponse.total.amount", + "weight": 1539, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ClaimResponse.payment", + "weight": 1540, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClaimResponse.payment.id", + "weight": 1541, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClaimResponse.payment.extension", + "weight": 1542, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.payment.modifierExtension", + "weight": 1543, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ClaimResponse.payment.type", + "weight": 1544, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.payment.adjustment", + "weight": 1545, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ClaimResponse.payment.adjustmentReason", + "weight": 1546, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.payment.date", + "weight": 1547, + "max": "1", + "type": "date" + }, + { + "min": 1, + "path": "ClaimResponse.payment.amount", + "weight": 1548, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ClaimResponse.payment.identifier", + "weight": 1549, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "ClaimResponse.fundsReserve", + "weight": 1550, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.formCode", + "weight": 1551, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.form", + "weight": 1552, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "ClaimResponse.processNote", + "weight": 1553, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClaimResponse.processNote.id", + "weight": 1554, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClaimResponse.processNote.extension", + "weight": 1555, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.processNote.modifierExtension", + "weight": 1556, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.processNote.number", + "weight": 1557, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ClaimResponse.processNote.type", + "weight": 1558, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ClaimResponse.processNote.text", + "weight": 1559, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ClaimResponse.processNote.language", + "weight": 1560, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClaimResponse.communicationRequest", + "weight": 1561, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ClaimResponse.insurance", + "weight": 1562, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClaimResponse.insurance.id", + "weight": 1563, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClaimResponse.insurance.extension", + "weight": 1564, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.insurance.modifierExtension", + "weight": 1565, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ClaimResponse.insurance.sequence", + "weight": 1566, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "ClaimResponse.insurance.focal", + "weight": 1567, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "ClaimResponse.insurance.coverage", + "weight": 1568, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ClaimResponse.insurance.businessArrangement", + "weight": 1569, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ClaimResponse.insurance.claimResponse", + "weight": 1570, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ClaimResponse.error", + "weight": 1571, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClaimResponse.error.id", + "weight": 1572, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClaimResponse.error.extension", + "weight": 1573, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.error.modifierExtension", + "weight": 1574, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClaimResponse.error.itemSequence", + "weight": 1575, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ClaimResponse.error.detailSequence", + "weight": 1576, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ClaimResponse.error.subDetailSequence", + "weight": 1577, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "ClaimResponse.error.code", + "weight": 1578, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClinicalImpression", + "weight": 1579, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ClinicalImpression.id", + "weight": 1580, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClinicalImpression.meta", + "weight": 1581, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ClinicalImpression.implicitRules", + "weight": 1582, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ClinicalImpression.language", + "weight": 1583, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ClinicalImpression.text", + "weight": 1584, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ClinicalImpression.contained", + "weight": 1585, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ClinicalImpression.extension", + "weight": 1586, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClinicalImpression.modifierExtension", + "weight": 1587, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClinicalImpression.identifier", + "weight": 1588, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "ClinicalImpression.status", + "weight": 1589, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ClinicalImpression.statusReason", + "weight": 1590, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClinicalImpression.code", + "weight": 1591, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClinicalImpression.description", + "weight": 1592, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ClinicalImpression.subject", + "weight": 1593, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ClinicalImpression.encounter", + "weight": 1594, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ClinicalImpression.effectiveDateTime", + "weight": 1595, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ClinicalImpression.effectivePeriod", + "weight": 1595, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ClinicalImpression.date", + "weight": 1596, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ClinicalImpression.assessor", + "weight": 1597, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ClinicalImpression.previous", + "weight": 1598, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ClinicalImpression.problem", + "weight": 1599, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ClinicalImpression.investigation", + "weight": 1600, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClinicalImpression.investigation.id", + "weight": 1601, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClinicalImpression.investigation.extension", + "weight": 1602, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClinicalImpression.investigation.modifierExtension", + "weight": 1603, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ClinicalImpression.investigation.code", + "weight": 1604, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClinicalImpression.investigation.item", + "weight": 1605, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ClinicalImpression.protocol", + "weight": 1606, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "ClinicalImpression.summary", + "weight": 1607, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ClinicalImpression.finding", + "weight": 1608, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ClinicalImpression.finding.id", + "weight": 1609, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ClinicalImpression.finding.extension", + "weight": 1610, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClinicalImpression.finding.modifierExtension", + "weight": 1611, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ClinicalImpression.finding.itemCodeableConcept", + "weight": 1612, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClinicalImpression.finding.itemReference", + "weight": 1613, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ClinicalImpression.finding.basis", + "weight": 1614, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ClinicalImpression.prognosisCodeableConcept", + "weight": 1615, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ClinicalImpression.prognosisReference", + "weight": 1616, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ClinicalImpression.supportingInfo", + "weight": 1617, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ClinicalImpression.note", + "weight": 1618, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "CodeSystem", + "weight": 1619, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "CodeSystem.id", + "weight": 1620, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CodeSystem.meta", + "weight": 1621, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "CodeSystem.implicitRules", + "weight": 1622, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CodeSystem.language", + "weight": 1623, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CodeSystem.text", + "weight": 1624, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "CodeSystem.contained", + "weight": 1625, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "CodeSystem.extension", + "weight": 1626, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CodeSystem.modifierExtension", + "weight": 1627, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CodeSystem.url", + "weight": 1628, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CodeSystem.identifier", + "weight": 1629, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "CodeSystem.version", + "weight": 1630, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CodeSystem.name", + "weight": 1631, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CodeSystem.title", + "weight": 1632, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "CodeSystem.status", + "weight": 1633, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CodeSystem.experimental", + "weight": 1634, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CodeSystem.date", + "weight": 1635, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "CodeSystem.publisher", + "weight": 1636, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CodeSystem.contact", + "weight": 1637, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "CodeSystem.description", + "weight": 1638, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CodeSystem.useContext", + "weight": 1639, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "CodeSystem.jurisdiction", + "weight": 1640, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CodeSystem.purpose", + "weight": 1641, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CodeSystem.copyright", + "weight": 1642, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CodeSystem.caseSensitive", + "weight": 1643, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CodeSystem.valueSet", + "weight": 1644, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "CodeSystem.hierarchyMeaning", + "weight": 1645, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CodeSystem.compositional", + "weight": 1646, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CodeSystem.versionNeeded", + "weight": 1647, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "CodeSystem.content", + "weight": 1648, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CodeSystem.supplements", + "weight": 1649, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "CodeSystem.count", + "weight": 1650, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "CodeSystem.filter", + "weight": 1651, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CodeSystem.filter.id", + "weight": 1652, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CodeSystem.filter.extension", + "weight": 1653, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CodeSystem.filter.modifierExtension", + "weight": 1654, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CodeSystem.filter.code", + "weight": 1655, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CodeSystem.filter.description", + "weight": 1656, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "CodeSystem.filter.operator", + "weight": 1657, + "max": "*", + "type": "code" + }, + { + "min": 1, + "path": "CodeSystem.filter.value", + "weight": 1658, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CodeSystem.property", + "weight": 1659, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CodeSystem.property.id", + "weight": 1660, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CodeSystem.property.extension", + "weight": 1661, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CodeSystem.property.modifierExtension", + "weight": 1662, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CodeSystem.property.code", + "weight": 1663, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CodeSystem.property.uri", + "weight": 1664, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CodeSystem.property.description", + "weight": 1665, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "CodeSystem.property.type", + "weight": 1666, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CodeSystem.concept", + "weight": 1667, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CodeSystem.concept.id", + "weight": 1668, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CodeSystem.concept.extension", + "weight": 1669, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CodeSystem.concept.modifierExtension", + "weight": 1670, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CodeSystem.concept.code", + "weight": 1671, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CodeSystem.concept.display", + "weight": 1672, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CodeSystem.concept.definition", + "weight": 1673, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CodeSystem.concept.designation", + "weight": 1674, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CodeSystem.concept.designation.id", + "weight": 1675, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CodeSystem.concept.designation.extension", + "weight": 1676, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CodeSystem.concept.designation.modifierExtension", + "weight": 1677, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CodeSystem.concept.designation.language", + "weight": 1678, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CodeSystem.concept.designation.use", + "weight": 1679, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "CodeSystem.concept.designation.value", + "weight": 1680, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CodeSystem.concept.property", + "weight": 1681, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CodeSystem.concept.property.id", + "weight": 1682, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CodeSystem.concept.property.extension", + "weight": 1683, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CodeSystem.concept.property.modifierExtension", + "weight": 1684, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CodeSystem.concept.property.code", + "weight": 1685, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "CodeSystem.concept.property.valueCode", + "weight": 1686, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "CodeSystem.concept.property.valueCoding", + "weight": 1686, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "CodeSystem.concept.property.valueString", + "weight": 1686, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "CodeSystem.concept.property.valueInteger", + "weight": 1686, + "max": "1", + "type": "integer" + }, + { + "min": 1, + "path": "CodeSystem.concept.property.valueBoolean", + "weight": 1686, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "CodeSystem.concept.property.valueDateTime", + "weight": 1686, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "CodeSystem.concept.property.valueDecimal", + "weight": 1686, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "CodeSystem.concept.concept", + "weight": 1687, + "max": "*" + }, + { + "min": 0, + "path": "Communication", + "weight": 1688, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Communication.id", + "weight": 1689, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Communication.meta", + "weight": 1690, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Communication.implicitRules", + "weight": 1691, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Communication.language", + "weight": 1692, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Communication.text", + "weight": 1693, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Communication.contained", + "weight": 1694, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Communication.extension", + "weight": 1695, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Communication.modifierExtension", + "weight": 1696, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Communication.identifier", + "weight": 1697, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Communication.instantiatesCanonical", + "weight": 1698, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "Communication.instantiatesUri", + "weight": 1699, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "Communication.basedOn", + "weight": 1700, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Communication.partOf", + "weight": 1701, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Communication.inResponseTo", + "weight": 1702, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "Communication.status", + "weight": 1703, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Communication.statusReason", + "weight": 1704, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Communication.category", + "weight": 1705, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Communication.priority", + "weight": 1706, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Communication.medium", + "weight": 1707, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Communication.subject", + "weight": 1708, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Communication.topic", + "weight": 1709, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Communication.about", + "weight": 1710, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Communication.encounter", + "weight": 1711, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Communication.sent", + "weight": 1712, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Communication.received", + "weight": 1713, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Communication.recipient", + "weight": 1714, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Communication.sender", + "weight": 1715, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Communication.reasonCode", + "weight": 1716, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Communication.reasonReference", + "weight": 1717, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Communication.payload", + "weight": 1718, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Communication.payload.id", + "weight": 1719, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Communication.payload.extension", + "weight": 1720, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Communication.payload.modifierExtension", + "weight": 1721, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Communication.payload.contentString", + "weight": 1722, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Communication.payload.contentAttachment", + "weight": 1722, + "max": "1", + "type": "Attachment" + }, + { + "min": 1, + "path": "Communication.payload.contentReference", + "weight": 1722, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Communication.note", + "weight": 1723, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "CommunicationRequest", + "weight": 1724, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "CommunicationRequest.id", + "weight": 1725, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CommunicationRequest.meta", + "weight": 1726, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "CommunicationRequest.implicitRules", + "weight": 1727, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CommunicationRequest.language", + "weight": 1728, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CommunicationRequest.text", + "weight": 1729, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "CommunicationRequest.contained", + "weight": 1730, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "CommunicationRequest.extension", + "weight": 1731, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CommunicationRequest.modifierExtension", + "weight": 1732, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CommunicationRequest.identifier", + "weight": 1733, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "CommunicationRequest.basedOn", + "weight": 1734, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CommunicationRequest.replaces", + "weight": 1735, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CommunicationRequest.groupIdentifier", + "weight": 1736, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "CommunicationRequest.status", + "weight": 1737, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CommunicationRequest.statusReason", + "weight": 1738, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CommunicationRequest.category", + "weight": 1739, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CommunicationRequest.priority", + "weight": 1740, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CommunicationRequest.doNotPerform", + "weight": 1741, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CommunicationRequest.medium", + "weight": 1742, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CommunicationRequest.subject", + "weight": 1743, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CommunicationRequest.about", + "weight": 1744, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CommunicationRequest.encounter", + "weight": 1745, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CommunicationRequest.payload", + "weight": 1746, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CommunicationRequest.payload.id", + "weight": 1747, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CommunicationRequest.payload.extension", + "weight": 1748, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CommunicationRequest.payload.modifierExtension", + "weight": 1749, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CommunicationRequest.payload.contentString", + "weight": 1750, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "CommunicationRequest.payload.contentAttachment", + "weight": 1750, + "max": "1", + "type": "Attachment" + }, + { + "min": 1, + "path": "CommunicationRequest.payload.contentReference", + "weight": 1750, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CommunicationRequest.occurrenceDateTime", + "weight": 1751, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "CommunicationRequest.occurrencePeriod", + "weight": 1751, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "CommunicationRequest.authoredOn", + "weight": 1752, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "CommunicationRequest.requester", + "weight": 1753, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CommunicationRequest.recipient", + "weight": 1754, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CommunicationRequest.sender", + "weight": 1755, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CommunicationRequest.reasonCode", + "weight": 1756, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CommunicationRequest.reasonReference", + "weight": 1757, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CommunicationRequest.note", + "weight": 1758, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "CompartmentDefinition", + "weight": 1759, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "CompartmentDefinition.id", + "weight": 1760, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CompartmentDefinition.meta", + "weight": 1761, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "CompartmentDefinition.implicitRules", + "weight": 1762, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CompartmentDefinition.language", + "weight": 1763, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CompartmentDefinition.text", + "weight": 1764, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "CompartmentDefinition.contained", + "weight": 1765, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "CompartmentDefinition.extension", + "weight": 1766, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CompartmentDefinition.modifierExtension", + "weight": 1767, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CompartmentDefinition.url", + "weight": 1768, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CompartmentDefinition.version", + "weight": 1769, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "CompartmentDefinition.name", + "weight": 1770, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "CompartmentDefinition.status", + "weight": 1771, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CompartmentDefinition.experimental", + "weight": 1772, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CompartmentDefinition.date", + "weight": 1773, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "CompartmentDefinition.publisher", + "weight": 1774, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CompartmentDefinition.contact", + "weight": 1775, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "CompartmentDefinition.description", + "weight": 1776, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "CompartmentDefinition.useContext", + "weight": 1777, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "CompartmentDefinition.purpose", + "weight": 1778, + "max": "1", + "type": "markdown" + }, + { + "min": 1, + "path": "CompartmentDefinition.code", + "weight": 1779, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "CompartmentDefinition.search", + "weight": 1780, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CompartmentDefinition.resource", + "weight": 1781, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CompartmentDefinition.resource.id", + "weight": 1782, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CompartmentDefinition.resource.extension", + "weight": 1783, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CompartmentDefinition.resource.modifierExtension", + "weight": 1784, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CompartmentDefinition.resource.code", + "weight": 1785, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CompartmentDefinition.resource.param", + "weight": 1786, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "CompartmentDefinition.resource.documentation", + "weight": 1787, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Composition", + "weight": 1788, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Composition.id", + "weight": 1789, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Composition.meta", + "weight": 1790, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Composition.implicitRules", + "weight": 1791, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Composition.language", + "weight": 1792, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Composition.text", + "weight": 1793, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Composition.contained", + "weight": 1794, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Composition.extension", + "weight": 1795, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Composition.modifierExtension", + "weight": 1796, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Composition.identifier", + "weight": 1797, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "Composition.status", + "weight": 1798, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Composition.type", + "weight": 1799, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Composition.category", + "weight": 1800, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Composition.subject", + "weight": 1801, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Composition.encounter", + "weight": 1802, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "Composition.date", + "weight": 1803, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "Composition.author", + "weight": 1804, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "Composition.title", + "weight": 1805, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Composition.confidentiality", + "weight": 1806, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Composition.attester", + "weight": 1807, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Composition.attester.id", + "weight": 1808, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Composition.attester.extension", + "weight": 1809, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Composition.attester.modifierExtension", + "weight": 1810, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Composition.attester.mode", + "weight": 1811, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Composition.attester.time", + "weight": 1812, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Composition.attester.party", + "weight": 1813, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Composition.custodian", + "weight": 1814, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Composition.relatesTo", + "weight": 1815, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Composition.relatesTo.id", + "weight": 1816, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Composition.relatesTo.extension", + "weight": 1817, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Composition.relatesTo.modifierExtension", + "weight": 1818, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Composition.relatesTo.code", + "weight": 1819, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Composition.relatesTo.targetIdentifier", + "weight": 1820, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "Composition.relatesTo.targetReference", + "weight": 1820, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Composition.event", + "weight": 1821, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Composition.event.id", + "weight": 1822, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Composition.event.extension", + "weight": 1823, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Composition.event.modifierExtension", + "weight": 1824, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Composition.event.code", + "weight": 1825, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Composition.event.period", + "weight": 1826, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Composition.event.detail", + "weight": 1827, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Composition.section", + "weight": 1828, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Composition.section.id", + "weight": 1829, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Composition.section.extension", + "weight": 1830, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Composition.section.modifierExtension", + "weight": 1831, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Composition.section.title", + "weight": 1832, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Composition.section.code", + "weight": 1833, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Composition.section.author", + "weight": 1834, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Composition.section.focus", + "weight": 1835, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Composition.section.text", + "weight": 1836, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Composition.section.mode", + "weight": 1837, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Composition.section.orderedBy", + "weight": 1838, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Composition.section.entry", + "weight": 1839, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Composition.section.emptyReason", + "weight": 1840, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Composition.section.section", + "weight": 1841, + "max": "*" + }, + { + "min": 0, + "path": "ConceptMap", + "weight": 1842, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ConceptMap.id", + "weight": 1843, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ConceptMap.meta", + "weight": 1844, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ConceptMap.implicitRules", + "weight": 1845, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ConceptMap.language", + "weight": 1846, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ConceptMap.text", + "weight": 1847, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ConceptMap.contained", + "weight": 1848, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ConceptMap.extension", + "weight": 1849, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ConceptMap.modifierExtension", + "weight": 1850, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ConceptMap.url", + "weight": 1851, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ConceptMap.identifier", + "weight": 1852, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "ConceptMap.version", + "weight": 1853, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ConceptMap.name", + "weight": 1854, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ConceptMap.title", + "weight": 1855, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ConceptMap.status", + "weight": 1856, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ConceptMap.experimental", + "weight": 1857, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ConceptMap.date", + "weight": 1858, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ConceptMap.publisher", + "weight": 1859, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ConceptMap.contact", + "weight": 1860, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ConceptMap.description", + "weight": 1861, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ConceptMap.useContext", + "weight": 1862, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "ConceptMap.jurisdiction", + "weight": 1863, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ConceptMap.purpose", + "weight": 1864, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ConceptMap.copyright", + "weight": 1865, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ConceptMap.sourceUri", + "weight": 1866, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ConceptMap.sourceCanonical", + "weight": 1866, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "ConceptMap.targetUri", + "weight": 1867, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ConceptMap.targetCanonical", + "weight": 1867, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "ConceptMap.group", + "weight": 1868, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ConceptMap.group.id", + "weight": 1869, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ConceptMap.group.extension", + "weight": 1870, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ConceptMap.group.modifierExtension", + "weight": 1871, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ConceptMap.group.source", + "weight": 1872, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ConceptMap.group.sourceVersion", + "weight": 1873, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ConceptMap.group.target", + "weight": 1874, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ConceptMap.group.targetVersion", + "weight": 1875, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ConceptMap.group.element", + "weight": 1876, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ConceptMap.group.element.id", + "weight": 1877, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ConceptMap.group.element.extension", + "weight": 1878, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ConceptMap.group.element.modifierExtension", + "weight": 1879, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ConceptMap.group.element.code", + "weight": 1880, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ConceptMap.group.element.display", + "weight": 1881, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target", + "weight": 1882, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target.id", + "weight": 1883, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target.extension", + "weight": 1884, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target.modifierExtension", + "weight": 1885, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target.code", + "weight": 1886, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target.display", + "weight": 1887, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ConceptMap.group.element.target.equivalence", + "weight": 1888, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target.comment", + "weight": 1889, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target.dependsOn", + "weight": 1890, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target.dependsOn.id", + "weight": 1891, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target.dependsOn.extension", + "weight": 1892, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target.dependsOn.modifierExtension", + "weight": 1893, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ConceptMap.group.element.target.dependsOn.property", + "weight": 1894, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target.dependsOn.system", + "weight": 1895, + "max": "1", + "type": "canonical" + }, + { + "min": 1, + "path": "ConceptMap.group.element.target.dependsOn.value", + "weight": 1896, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target.dependsOn.display", + "weight": 1897, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ConceptMap.group.element.target.product", + "weight": 1898, + "max": "*" + }, + { + "min": 0, + "path": "ConceptMap.group.unmapped", + "weight": 1899, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ConceptMap.group.unmapped.id", + "weight": 1900, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ConceptMap.group.unmapped.extension", + "weight": 1901, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ConceptMap.group.unmapped.modifierExtension", + "weight": 1902, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ConceptMap.group.unmapped.mode", + "weight": 1903, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ConceptMap.group.unmapped.code", + "weight": 1904, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ConceptMap.group.unmapped.display", + "weight": 1905, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ConceptMap.group.unmapped.url", + "weight": 1906, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "Condition", + "weight": 1907, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Condition.id", + "weight": 1908, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Condition.meta", + "weight": 1909, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Condition.implicitRules", + "weight": 1910, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Condition.language", + "weight": 1911, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Condition.text", + "weight": 1912, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Condition.contained", + "weight": 1913, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Condition.extension", + "weight": 1914, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Condition.modifierExtension", + "weight": 1915, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Condition.identifier", + "weight": 1916, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Condition.clinicalStatus", + "weight": 1917, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Condition.verificationStatus", + "weight": 1918, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Condition.category", + "weight": 1919, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Condition.severity", + "weight": 1920, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Condition.code", + "weight": 1921, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Condition.bodySite", + "weight": 1922, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Condition.subject", + "weight": 1923, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Condition.encounter", + "weight": 1924, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Condition.onsetDateTime", + "weight": 1925, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Condition.onsetAge", + "weight": 1925, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "Condition.onsetPeriod", + "weight": 1925, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Condition.onsetRange", + "weight": 1925, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "Condition.onsetString", + "weight": 1925, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Condition.abatementDateTime", + "weight": 1926, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Condition.abatementAge", + "weight": 1926, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "Condition.abatementPeriod", + "weight": 1926, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Condition.abatementRange", + "weight": 1926, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "Condition.abatementString", + "weight": 1926, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Condition.recordedDate", + "weight": 1927, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Condition.recorder", + "weight": 1928, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Condition.asserter", + "weight": 1929, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Condition.stage", + "weight": 1930, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Condition.stage.id", + "weight": 1931, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Condition.stage.extension", + "weight": 1932, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Condition.stage.modifierExtension", + "weight": 1933, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Condition.stage.summary", + "weight": 1934, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Condition.stage.assessment", + "weight": 1935, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Condition.stage.type", + "weight": 1936, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Condition.evidence", + "weight": 1937, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Condition.evidence.id", + "weight": 1938, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Condition.evidence.extension", + "weight": 1939, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Condition.evidence.modifierExtension", + "weight": 1940, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Condition.evidence.code", + "weight": 1941, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Condition.evidence.detail", + "weight": 1942, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Condition.note", + "weight": 1943, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Consent", + "weight": 1944, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Consent.id", + "weight": 1945, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Consent.meta", + "weight": 1946, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Consent.implicitRules", + "weight": 1947, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Consent.language", + "weight": 1948, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Consent.text", + "weight": 1949, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Consent.contained", + "weight": 1950, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Consent.extension", + "weight": 1951, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Consent.modifierExtension", + "weight": 1952, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Consent.identifier", + "weight": 1953, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "Consent.status", + "weight": 1954, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Consent.scope", + "weight": 1955, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Consent.category", + "weight": 1956, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Consent.patient", + "weight": 1957, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Consent.dateTime", + "weight": 1958, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Consent.performer", + "weight": 1959, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Consent.organization", + "weight": 1960, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Consent.sourceAttachment", + "weight": 1961, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "Consent.sourceReference", + "weight": 1961, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Consent.policy", + "weight": 1962, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Consent.policy.id", + "weight": 1963, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Consent.policy.extension", + "weight": 1964, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Consent.policy.modifierExtension", + "weight": 1965, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Consent.policy.authority", + "weight": 1966, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Consent.policy.uri", + "weight": 1967, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Consent.policyRule", + "weight": 1968, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Consent.verification", + "weight": 1969, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Consent.verification.id", + "weight": 1970, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Consent.verification.extension", + "weight": 1971, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Consent.verification.modifierExtension", + "weight": 1972, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Consent.verification.verified", + "weight": 1973, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Consent.verification.verifiedWith", + "weight": 1974, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Consent.verification.verificationDate", + "weight": 1975, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Consent.provision", + "weight": 1976, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Consent.provision.id", + "weight": 1977, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Consent.provision.extension", + "weight": 1978, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Consent.provision.modifierExtension", + "weight": 1979, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Consent.provision.type", + "weight": 1980, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Consent.provision.period", + "weight": 1981, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Consent.provision.actor", + "weight": 1982, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Consent.provision.actor.id", + "weight": 1983, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Consent.provision.actor.extension", + "weight": 1984, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Consent.provision.actor.modifierExtension", + "weight": 1985, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Consent.provision.actor.role", + "weight": 1986, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Consent.provision.actor.reference", + "weight": 1987, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Consent.provision.action", + "weight": 1988, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Consent.provision.securityLabel", + "weight": 1989, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "Consent.provision.purpose", + "weight": 1990, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "Consent.provision.class", + "weight": 1991, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "Consent.provision.code", + "weight": 1992, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Consent.provision.dataPeriod", + "weight": 1993, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Consent.provision.data", + "weight": 1994, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Consent.provision.data.id", + "weight": 1995, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Consent.provision.data.extension", + "weight": 1996, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Consent.provision.data.modifierExtension", + "weight": 1997, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Consent.provision.data.meaning", + "weight": 1998, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Consent.provision.data.reference", + "weight": 1999, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Consent.provision.provision", + "weight": 2000, + "max": "*" + }, + { + "min": 0, + "path": "Contract", + "weight": 2001, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Contract.id", + "weight": 2002, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.meta", + "weight": 2003, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Contract.implicitRules", + "weight": 2004, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Contract.language", + "weight": 2005, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Contract.text", + "weight": 2006, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Contract.contained", + "weight": 2007, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Contract.extension", + "weight": 2008, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.modifierExtension", + "weight": 2009, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.identifier", + "weight": 2010, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Contract.url", + "weight": 2011, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Contract.version", + "weight": 2012, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Contract.status", + "weight": 2013, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Contract.legalState", + "weight": 2014, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.instantiatesCanonical", + "weight": 2015, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.instantiatesUri", + "weight": 2016, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Contract.contentDerivative", + "weight": 2017, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.issued", + "weight": 2018, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Contract.applies", + "weight": 2019, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Contract.expirationType", + "weight": 2020, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.subject", + "weight": 2021, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.authority", + "weight": 2022, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.domain", + "weight": 2023, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.site", + "weight": 2024, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.name", + "weight": 2025, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Contract.title", + "weight": 2026, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Contract.subtitle", + "weight": 2027, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Contract.alias", + "weight": 2028, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Contract.author", + "weight": 2029, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.scope", + "weight": 2030, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.topicCodeableConcept", + "weight": 2031, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.topicReference", + "weight": 2031, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.type", + "weight": 2032, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.subType", + "weight": 2033, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.contentDefinition", + "weight": 2034, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.contentDefinition.id", + "weight": 2035, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.contentDefinition.extension", + "weight": 2036, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.contentDefinition.modifierExtension", + "weight": 2037, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Contract.contentDefinition.type", + "weight": 2038, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.contentDefinition.subType", + "weight": 2039, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.contentDefinition.publisher", + "weight": 2040, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.contentDefinition.publicationDate", + "weight": 2041, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "Contract.contentDefinition.publicationStatus", + "weight": 2042, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Contract.contentDefinition.copyright", + "weight": 2043, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Contract.term", + "weight": 2044, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.term.id", + "weight": 2045, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.term.extension", + "weight": 2046, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.modifierExtension", + "weight": 2047, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.identifier", + "weight": 2048, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "Contract.term.issued", + "weight": 2049, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Contract.term.applies", + "weight": 2050, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Contract.term.topicCodeableConcept", + "weight": 2051, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.topicReference", + "weight": 2051, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.term.type", + "weight": 2052, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.subType", + "weight": 2053, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.text", + "weight": 2054, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.securityLabel", + "weight": 2055, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.term.securityLabel.id", + "weight": 2056, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.term.securityLabel.extension", + "weight": 2057, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.securityLabel.modifierExtension", + "weight": 2058, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.securityLabel.number", + "weight": 2059, + "max": "*", + "type": "unsignedInt" + }, + { + "min": 1, + "path": "Contract.term.securityLabel.classification", + "weight": 2060, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "Contract.term.securityLabel.category", + "weight": 2061, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "Contract.term.securityLabel.control", + "weight": 2062, + "max": "*", + "type": "Coding" + }, + { + "min": 1, + "path": "Contract.term.offer", + "weight": 2063, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.term.offer.id", + "weight": 2064, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.term.offer.extension", + "weight": 2065, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.offer.modifierExtension", + "weight": 2066, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.offer.identifier", + "weight": 2067, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Contract.term.offer.party", + "weight": 2068, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.term.offer.party.id", + "weight": 2069, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.term.offer.party.extension", + "weight": 2070, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.offer.party.modifierExtension", + "weight": 2071, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Contract.term.offer.party.reference", + "weight": 2072, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "Contract.term.offer.party.role", + "weight": 2073, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.offer.topic", + "weight": 2074, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.term.offer.type", + "weight": 2075, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.offer.decision", + "weight": 2076, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.offer.decisionMode", + "weight": 2077, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.offer.answer", + "weight": 2078, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.term.offer.answer.id", + "weight": 2079, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.term.offer.answer.extension", + "weight": 2080, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.offer.answer.modifierExtension", + "weight": 2081, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Contract.term.offer.answer.valueBoolean", + "weight": 2082, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "Contract.term.offer.answer.valueDecimal", + "weight": 2082, + "max": "1", + "type": "decimal" + }, + { + "min": 1, + "path": "Contract.term.offer.answer.valueInteger", + "weight": 2082, + "max": "1", + "type": "integer" + }, + { + "min": 1, + "path": "Contract.term.offer.answer.valueDate", + "weight": 2082, + "max": "1", + "type": "date" + }, + { + "min": 1, + "path": "Contract.term.offer.answer.valueDateTime", + "weight": 2082, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "Contract.term.offer.answer.valueTime", + "weight": 2082, + "max": "1", + "type": "time" + }, + { + "min": 1, + "path": "Contract.term.offer.answer.valueString", + "weight": 2082, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Contract.term.offer.answer.valueUri", + "weight": 2082, + "max": "1", + "type": "uri" + }, + { + "min": 1, + "path": "Contract.term.offer.answer.valueAttachment", + "weight": 2082, + "max": "1", + "type": "Attachment" + }, + { + "min": 1, + "path": "Contract.term.offer.answer.valueCoding", + "weight": 2082, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "Contract.term.offer.answer.valueQuantity", + "weight": 2082, + "max": "1", + "type": "Quantity" + }, + { + "min": 1, + "path": "Contract.term.offer.answer.valueReference", + "weight": 2082, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.term.offer.text", + "weight": 2083, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.offer.linkId", + "weight": 2084, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.offer.securityLabelNumber", + "weight": 2085, + "max": "*", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "Contract.term.asset", + "weight": 2086, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.term.asset.id", + "weight": 2087, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.term.asset.extension", + "weight": 2088, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.asset.modifierExtension", + "weight": 2089, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.asset.scope", + "weight": 2090, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.asset.type", + "weight": 2091, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.asset.typeReference", + "weight": 2092, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.term.asset.subtype", + "weight": 2093, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.asset.relationship", + "weight": 2094, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "Contract.term.asset.context", + "weight": 2095, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.term.asset.context.id", + "weight": 2096, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.term.asset.context.extension", + "weight": 2097, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.asset.context.modifierExtension", + "weight": 2098, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.asset.context.reference", + "weight": 2099, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.term.asset.context.code", + "weight": 2100, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.asset.context.text", + "weight": 2101, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.asset.condition", + "weight": 2102, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.asset.periodType", + "weight": 2103, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.asset.period", + "weight": 2104, + "max": "*", + "type": "Period" + }, + { + "min": 0, + "path": "Contract.term.asset.usePeriod", + "weight": 2105, + "max": "*", + "type": "Period" + }, + { + "min": 0, + "path": "Contract.term.asset.text", + "weight": 2106, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.asset.linkId", + "weight": 2107, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.asset.answer", + "weight": 2108, + "max": "*" + }, + { + "min": 0, + "path": "Contract.term.asset.securityLabelNumber", + "weight": 2109, + "max": "*", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem", + "weight": 2110, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.id", + "weight": 2111, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.extension", + "weight": 2112, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.modifierExtension", + "weight": 2113, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.entityCodeableConcept", + "weight": 2114, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.entityReference", + "weight": 2114, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.identifier", + "weight": 2115, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.effectiveTime", + "weight": 2116, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.quantity", + "weight": 2117, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.unitPrice", + "weight": 2118, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.factor", + "weight": 2119, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.points", + "weight": 2120, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.net", + "weight": 2121, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.payment", + "weight": 2122, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.paymentDate", + "weight": 2123, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.responsible", + "weight": 2124, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.recipient", + "weight": 2125, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.linkId", + "weight": 2126, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.asset.valuedItem.securityLabelNumber", + "weight": 2127, + "max": "*", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "Contract.term.action", + "weight": 2128, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.term.action.id", + "weight": 2129, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.term.action.extension", + "weight": 2130, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.action.modifierExtension", + "weight": 2131, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.action.doNotPerform", + "weight": 2132, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "Contract.term.action.type", + "weight": 2133, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.action.subject", + "weight": 2134, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.term.action.subject.id", + "weight": 2135, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.term.action.subject.extension", + "weight": 2136, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.term.action.subject.modifierExtension", + "weight": 2137, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Contract.term.action.subject.reference", + "weight": 2138, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.term.action.subject.role", + "weight": 2139, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Contract.term.action.intent", + "weight": 2140, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.action.linkId", + "weight": 2141, + "max": "*", + "type": "string" + }, + { + "min": 1, + "path": "Contract.term.action.status", + "weight": 2142, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.action.context", + "weight": 2143, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.term.action.contextLinkId", + "weight": 2144, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.action.occurrenceDateTime", + "weight": 2145, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Contract.term.action.occurrencePeriod", + "weight": 2145, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Contract.term.action.occurrenceTiming", + "weight": 2145, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "Contract.term.action.requester", + "weight": 2146, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.term.action.requesterLinkId", + "weight": 2147, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.action.performerType", + "weight": 2148, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.action.performerRole", + "weight": 2149, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.action.performer", + "weight": 2150, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.term.action.performerLinkId", + "weight": 2151, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.action.reasonCode", + "weight": 2152, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Contract.term.action.reasonReference", + "weight": 2153, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.term.action.reason", + "weight": 2154, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.action.reasonLinkId", + "weight": 2155, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Contract.term.action.note", + "weight": 2156, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Contract.term.action.securityLabelNumber", + "weight": 2157, + "max": "*", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "Contract.term.group", + "weight": 2158, + "max": "*" + }, + { + "min": 0, + "path": "Contract.supportingInfo", + "weight": 2159, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.relevantHistory", + "weight": 2160, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.signer", + "weight": 2161, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.signer.id", + "weight": 2162, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.signer.extension", + "weight": 2163, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.signer.modifierExtension", + "weight": 2164, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Contract.signer.type", + "weight": 2165, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "Contract.signer.party", + "weight": 2166, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "Contract.signer.signature", + "weight": 2167, + "max": "*", + "type": "Signature" + }, + { + "min": 0, + "path": "Contract.friendly", + "weight": 2168, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.friendly.id", + "weight": 2169, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.friendly.extension", + "weight": 2170, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.friendly.modifierExtension", + "weight": 2171, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Contract.friendly.contentAttachment", + "weight": 2172, + "max": "1", + "type": "Attachment" + }, + { + "min": 1, + "path": "Contract.friendly.contentReference", + "weight": 2172, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.legal", + "weight": 2173, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.legal.id", + "weight": 2174, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.legal.extension", + "weight": 2175, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.legal.modifierExtension", + "weight": 2176, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Contract.legal.contentAttachment", + "weight": 2177, + "max": "1", + "type": "Attachment" + }, + { + "min": 1, + "path": "Contract.legal.contentReference", + "weight": 2177, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.rule", + "weight": 2178, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Contract.rule.id", + "weight": 2179, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Contract.rule.extension", + "weight": 2180, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Contract.rule.modifierExtension", + "weight": 2181, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Contract.rule.contentAttachment", + "weight": 2182, + "max": "1", + "type": "Attachment" + }, + { + "min": 1, + "path": "Contract.rule.contentReference", + "weight": 2182, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Contract.legallyBindingAttachment", + "weight": 2183, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "Contract.legallyBindingReference", + "weight": 2183, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Coverage", + "weight": 2184, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Coverage.id", + "weight": 2185, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Coverage.meta", + "weight": 2186, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Coverage.implicitRules", + "weight": 2187, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Coverage.language", + "weight": 2188, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Coverage.text", + "weight": 2189, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Coverage.contained", + "weight": 2190, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Coverage.extension", + "weight": 2191, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Coverage.modifierExtension", + "weight": 2192, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Coverage.identifier", + "weight": 2193, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "Coverage.status", + "weight": 2194, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Coverage.type", + "weight": 2195, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Coverage.policyHolder", + "weight": 2196, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Coverage.subscriber", + "weight": 2197, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Coverage.subscriberId", + "weight": 2198, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Coverage.beneficiary", + "weight": 2199, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Coverage.dependent", + "weight": 2200, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Coverage.relationship", + "weight": 2201, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Coverage.period", + "weight": 2202, + "max": "1", + "type": "Period" + }, + { + "min": 1, + "path": "Coverage.payor", + "weight": 2203, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Coverage.class", + "weight": 2204, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Coverage.class.id", + "weight": 2205, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Coverage.class.extension", + "weight": 2206, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Coverage.class.modifierExtension", + "weight": 2207, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Coverage.class.type", + "weight": 2208, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Coverage.class.value", + "weight": 2209, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Coverage.class.name", + "weight": 2210, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Coverage.order", + "weight": 2211, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Coverage.network", + "weight": 2212, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Coverage.costToBeneficiary", + "weight": 2213, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Coverage.costToBeneficiary.id", + "weight": 2214, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Coverage.costToBeneficiary.extension", + "weight": 2215, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Coverage.costToBeneficiary.modifierExtension", + "weight": 2216, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Coverage.costToBeneficiary.type", + "weight": 2217, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Coverage.costToBeneficiary.valueQuantity", + "weight": 2218, + "max": "1", + "type": "Quantity" + }, + { + "min": 1, + "path": "Coverage.costToBeneficiary.valueMoney", + "weight": 2218, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Coverage.costToBeneficiary.exception", + "weight": 2219, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Coverage.costToBeneficiary.exception.id", + "weight": 2220, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Coverage.costToBeneficiary.exception.extension", + "weight": 2221, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Coverage.costToBeneficiary.exception.modifierExtension", + "weight": 2222, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Coverage.costToBeneficiary.exception.type", + "weight": 2223, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Coverage.costToBeneficiary.exception.period", + "weight": 2224, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Coverage.subrogation", + "weight": 2225, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Coverage.contract", + "weight": 2226, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest", + "weight": 2227, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.id", + "weight": 2228, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.meta", + "weight": 2229, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.implicitRules", + "weight": 2230, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.language", + "weight": 2231, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.text", + "weight": 2232, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.contained", + "weight": 2233, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.extension", + "weight": 2234, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.modifierExtension", + "weight": 2235, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.identifier", + "weight": 2236, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "CoverageEligibilityRequest.status", + "weight": 2237, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.priority", + "weight": 2238, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "CoverageEligibilityRequest.purpose", + "weight": 2239, + "max": "*", + "type": "code" + }, + { + "min": 1, + "path": "CoverageEligibilityRequest.patient", + "weight": 2240, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.servicedDate", + "weight": 2241, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.servicedPeriod", + "weight": 2241, + "max": "1", + "type": "Period" + }, + { + "min": 1, + "path": "CoverageEligibilityRequest.created", + "weight": 2242, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.enterer", + "weight": 2243, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.provider", + "weight": 2244, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "CoverageEligibilityRequest.insurer", + "weight": 2245, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.facility", + "weight": 2246, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.supportingInfo", + "weight": 2247, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.supportingInfo.id", + "weight": 2248, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.supportingInfo.extension", + "weight": 2249, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.supportingInfo.modifierExtension", + "weight": 2250, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CoverageEligibilityRequest.supportingInfo.sequence", + "weight": 2251, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "CoverageEligibilityRequest.supportingInfo.information", + "weight": 2252, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.supportingInfo.appliesToAll", + "weight": 2253, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.insurance", + "weight": 2254, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.insurance.id", + "weight": 2255, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.insurance.extension", + "weight": 2256, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.insurance.modifierExtension", + "weight": 2257, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.insurance.focal", + "weight": 2258, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "CoverageEligibilityRequest.insurance.coverage", + "weight": 2259, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.insurance.businessArrangement", + "weight": 2260, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item", + "weight": 2261, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.id", + "weight": 2262, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.extension", + "weight": 2263, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.modifierExtension", + "weight": 2264, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.supportingInfoSequence", + "weight": 2265, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.category", + "weight": 2266, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.productOrService", + "weight": 2267, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.modifier", + "weight": 2268, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.provider", + "weight": 2269, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.quantity", + "weight": 2270, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.unitPrice", + "weight": 2271, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.facility", + "weight": 2272, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.diagnosis", + "weight": 2273, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.diagnosis.id", + "weight": 2274, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.diagnosis.extension", + "weight": 2275, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.diagnosis.modifierExtension", + "weight": 2276, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.diagnosis.diagnosisCodeableConcept", + "weight": 2277, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.diagnosis.diagnosisReference", + "weight": 2277, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityRequest.item.detail", + "weight": 2278, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse", + "weight": 2279, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.id", + "weight": 2280, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.meta", + "weight": 2281, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.implicitRules", + "weight": 2282, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.language", + "weight": 2283, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.text", + "weight": 2284, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.contained", + "weight": 2285, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.extension", + "weight": 2286, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.modifierExtension", + "weight": 2287, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.identifier", + "weight": 2288, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "CoverageEligibilityResponse.status", + "weight": 2289, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "CoverageEligibilityResponse.purpose", + "weight": 2290, + "max": "*", + "type": "code" + }, + { + "min": 1, + "path": "CoverageEligibilityResponse.patient", + "weight": 2291, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.servicedDate", + "weight": 2292, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.servicedPeriod", + "weight": 2292, + "max": "1", + "type": "Period" + }, + { + "min": 1, + "path": "CoverageEligibilityResponse.created", + "weight": 2293, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.requestor", + "weight": 2294, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "CoverageEligibilityResponse.request", + "weight": 2295, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "CoverageEligibilityResponse.outcome", + "weight": 2296, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.disposition", + "weight": 2297, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "CoverageEligibilityResponse.insurer", + "weight": 2298, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance", + "weight": 2299, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.id", + "weight": 2300, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.extension", + "weight": 2301, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.modifierExtension", + "weight": 2302, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CoverageEligibilityResponse.insurance.coverage", + "weight": 2303, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.inforce", + "weight": 2304, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.benefitPeriod", + "weight": 2305, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item", + "weight": 2306, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.id", + "weight": 2307, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.extension", + "weight": 2308, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.modifierExtension", + "weight": 2309, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.category", + "weight": 2310, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.productOrService", + "weight": 2311, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.modifier", + "weight": 2312, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.provider", + "weight": 2313, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.excluded", + "weight": 2314, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.name", + "weight": 2315, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.description", + "weight": 2316, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.network", + "weight": 2317, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.unit", + "weight": 2318, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.term", + "weight": 2319, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.benefit", + "weight": 2320, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.benefit.id", + "weight": 2321, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.benefit.extension", + "weight": 2322, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.benefit.modifierExtension", + "weight": 2323, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CoverageEligibilityResponse.insurance.item.benefit.type", + "weight": 2324, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.benefit.allowedUnsignedInt", + "weight": 2325, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.benefit.allowedString", + "weight": 2325, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.benefit.allowedMoney", + "weight": 2325, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.benefit.usedUnsignedInt", + "weight": 2326, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.benefit.usedString", + "weight": 2326, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.benefit.usedMoney", + "weight": 2326, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.authorizationRequired", + "weight": 2327, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.authorizationSupporting", + "weight": 2328, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.insurance.item.authorizationUrl", + "weight": 2329, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.preAuthRef", + "weight": 2330, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.form", + "weight": 2331, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.error", + "weight": 2332, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.error.id", + "weight": 2333, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.error.extension", + "weight": 2334, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "CoverageEligibilityResponse.error.modifierExtension", + "weight": 2335, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "CoverageEligibilityResponse.error.code", + "weight": 2336, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DetectedIssue", + "weight": 2337, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "DetectedIssue.id", + "weight": 2338, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DetectedIssue.meta", + "weight": 2339, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "DetectedIssue.implicitRules", + "weight": 2340, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DetectedIssue.language", + "weight": 2341, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DetectedIssue.text", + "weight": 2342, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "DetectedIssue.contained", + "weight": 2343, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "DetectedIssue.extension", + "weight": 2344, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DetectedIssue.modifierExtension", + "weight": 2345, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DetectedIssue.identifier", + "weight": 2346, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "DetectedIssue.status", + "weight": 2347, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DetectedIssue.code", + "weight": 2348, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DetectedIssue.severity", + "weight": 2349, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DetectedIssue.patient", + "weight": 2350, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DetectedIssue.identifiedDateTime", + "weight": 2351, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "DetectedIssue.identifiedPeriod", + "weight": 2351, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "DetectedIssue.author", + "weight": 2352, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DetectedIssue.implicated", + "weight": 2353, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DetectedIssue.evidence", + "weight": 2354, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DetectedIssue.evidence.id", + "weight": 2355, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DetectedIssue.evidence.extension", + "weight": 2356, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DetectedIssue.evidence.modifierExtension", + "weight": 2357, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DetectedIssue.evidence.code", + "weight": 2358, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DetectedIssue.evidence.detail", + "weight": 2359, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DetectedIssue.detail", + "weight": 2360, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "DetectedIssue.reference", + "weight": 2361, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DetectedIssue.mitigation", + "weight": 2362, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DetectedIssue.mitigation.id", + "weight": 2363, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DetectedIssue.mitigation.extension", + "weight": 2364, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DetectedIssue.mitigation.modifierExtension", + "weight": 2365, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "DetectedIssue.mitigation.action", + "weight": 2366, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DetectedIssue.mitigation.date", + "weight": 2367, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "DetectedIssue.mitigation.author", + "weight": 2368, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Device", + "weight": 2369, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Device.id", + "weight": 2370, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Device.meta", + "weight": 2371, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Device.implicitRules", + "weight": 2372, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Device.language", + "weight": 2373, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Device.text", + "weight": 2374, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Device.contained", + "weight": 2375, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Device.extension", + "weight": 2376, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Device.modifierExtension", + "weight": 2377, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Device.identifier", + "weight": 2378, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Device.definition", + "weight": 2379, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Device.udiCarrier", + "weight": 2380, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Device.udiCarrier.id", + "weight": 2381, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Device.udiCarrier.extension", + "weight": 2382, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Device.udiCarrier.modifierExtension", + "weight": 2383, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Device.udiCarrier.deviceIdentifier", + "weight": 2384, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Device.udiCarrier.issuer", + "weight": 2385, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Device.udiCarrier.jurisdiction", + "weight": 2386, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Device.udiCarrier.carrierAIDC", + "weight": 2387, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "Device.udiCarrier.carrierHRF", + "weight": 2388, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Device.udiCarrier.entryType", + "weight": 2389, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Device.status", + "weight": 2390, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Device.statusReason", + "weight": 2391, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Device.distinctIdentifier", + "weight": 2392, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Device.manufacturer", + "weight": 2393, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Device.manufactureDate", + "weight": 2394, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Device.expirationDate", + "weight": 2395, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Device.lotNumber", + "weight": 2396, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Device.serialNumber", + "weight": 2397, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Device.deviceName", + "weight": 2398, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Device.deviceName.id", + "weight": 2399, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Device.deviceName.extension", + "weight": 2400, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Device.deviceName.modifierExtension", + "weight": 2401, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Device.deviceName.name", + "weight": 2402, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Device.deviceName.type", + "weight": 2403, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Device.modelNumber", + "weight": 2404, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Device.partNumber", + "weight": 2405, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Device.type", + "weight": 2406, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Device.specialization", + "weight": 2407, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Device.specialization.id", + "weight": 2408, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Device.specialization.extension", + "weight": 2409, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Device.specialization.modifierExtension", + "weight": 2410, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Device.specialization.systemType", + "weight": 2411, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Device.specialization.version", + "weight": 2412, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Device.version", + "weight": 2413, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Device.version.id", + "weight": 2414, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Device.version.extension", + "weight": 2415, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Device.version.modifierExtension", + "weight": 2416, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Device.version.type", + "weight": 2417, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Device.version.component", + "weight": 2418, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "Device.version.value", + "weight": 2419, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Device.property", + "weight": 2420, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Device.property.id", + "weight": 2421, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Device.property.extension", + "weight": 2422, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Device.property.modifierExtension", + "weight": 2423, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Device.property.type", + "weight": 2424, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Device.property.valueQuantity", + "weight": 2425, + "max": "*", + "type": "Quantity" + }, + { + "min": 0, + "path": "Device.property.valueCode", + "weight": 2426, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Device.patient", + "weight": 2427, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Device.owner", + "weight": 2428, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Device.contact", + "weight": 2429, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "Device.location", + "weight": 2430, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Device.url", + "weight": 2431, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Device.note", + "weight": 2432, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Device.safety", + "weight": 2433, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Device.parent", + "weight": 2434, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceDefinition", + "weight": 2435, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "DeviceDefinition.id", + "weight": 2436, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DeviceDefinition.meta", + "weight": 2437, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "DeviceDefinition.implicitRules", + "weight": 2438, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DeviceDefinition.language", + "weight": 2439, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DeviceDefinition.text", + "weight": 2440, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "DeviceDefinition.contained", + "weight": 2441, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "DeviceDefinition.extension", + "weight": 2442, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceDefinition.modifierExtension", + "weight": 2443, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceDefinition.identifier", + "weight": 2444, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "DeviceDefinition.udiDeviceIdentifier", + "weight": 2445, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DeviceDefinition.udiDeviceIdentifier.id", + "weight": 2446, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DeviceDefinition.udiDeviceIdentifier.extension", + "weight": 2447, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceDefinition.udiDeviceIdentifier.modifierExtension", + "weight": 2448, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "DeviceDefinition.udiDeviceIdentifier.deviceIdentifier", + "weight": 2449, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "DeviceDefinition.udiDeviceIdentifier.issuer", + "weight": 2450, + "max": "1", + "type": "uri" + }, + { + "min": 1, + "path": "DeviceDefinition.udiDeviceIdentifier.jurisdiction", + "weight": 2451, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DeviceDefinition.manufacturerString", + "weight": 2452, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "DeviceDefinition.manufacturerReference", + "weight": 2452, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceDefinition.deviceName", + "weight": 2453, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DeviceDefinition.deviceName.id", + "weight": 2454, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DeviceDefinition.deviceName.extension", + "weight": 2455, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceDefinition.deviceName.modifierExtension", + "weight": 2456, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "DeviceDefinition.deviceName.name", + "weight": 2457, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "DeviceDefinition.deviceName.type", + "weight": 2458, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DeviceDefinition.modelNumber", + "weight": 2459, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "DeviceDefinition.type", + "weight": 2460, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceDefinition.specialization", + "weight": 2461, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DeviceDefinition.specialization.id", + "weight": 2462, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DeviceDefinition.specialization.extension", + "weight": 2463, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceDefinition.specialization.modifierExtension", + "weight": 2464, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "DeviceDefinition.specialization.systemType", + "weight": 2465, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "DeviceDefinition.specialization.version", + "weight": 2466, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "DeviceDefinition.version", + "weight": 2467, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "DeviceDefinition.safety", + "weight": 2468, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceDefinition.shelfLifeStorage", + "weight": 2469, + "max": "*", + "type": "ProductShelfLife" + }, + { + "min": 0, + "path": "DeviceDefinition.physicalCharacteristics", + "weight": 2470, + "max": "1", + "type": "ProdCharacteristic" + }, + { + "min": 0, + "path": "DeviceDefinition.languageCode", + "weight": 2471, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceDefinition.capability", + "weight": 2472, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DeviceDefinition.capability.id", + "weight": 2473, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DeviceDefinition.capability.extension", + "weight": 2474, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceDefinition.capability.modifierExtension", + "weight": 2475, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "DeviceDefinition.capability.type", + "weight": 2476, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceDefinition.capability.description", + "weight": 2477, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceDefinition.property", + "weight": 2478, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DeviceDefinition.property.id", + "weight": 2479, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DeviceDefinition.property.extension", + "weight": 2480, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceDefinition.property.modifierExtension", + "weight": 2481, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "DeviceDefinition.property.type", + "weight": 2482, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceDefinition.property.valueQuantity", + "weight": 2483, + "max": "*", + "type": "Quantity" + }, + { + "min": 0, + "path": "DeviceDefinition.property.valueCode", + "weight": 2484, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceDefinition.owner", + "weight": 2485, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceDefinition.contact", + "weight": 2486, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "DeviceDefinition.url", + "weight": 2487, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DeviceDefinition.onlineInformation", + "weight": 2488, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DeviceDefinition.note", + "weight": 2489, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "DeviceDefinition.quantity", + "weight": 2490, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "DeviceDefinition.parentDevice", + "weight": 2491, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceDefinition.material", + "weight": 2492, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DeviceDefinition.material.id", + "weight": 2493, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DeviceDefinition.material.extension", + "weight": 2494, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceDefinition.material.modifierExtension", + "weight": 2495, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "DeviceDefinition.material.substance", + "weight": 2496, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceDefinition.material.alternate", + "weight": 2497, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "DeviceDefinition.material.allergenicIndicator", + "weight": 2498, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "DeviceMetric", + "weight": 2499, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "DeviceMetric.id", + "weight": 2500, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DeviceMetric.meta", + "weight": 2501, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "DeviceMetric.implicitRules", + "weight": 2502, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DeviceMetric.language", + "weight": 2503, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DeviceMetric.text", + "weight": 2504, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "DeviceMetric.contained", + "weight": 2505, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "DeviceMetric.extension", + "weight": 2506, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceMetric.modifierExtension", + "weight": 2507, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceMetric.identifier", + "weight": 2508, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "DeviceMetric.type", + "weight": 2509, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceMetric.unit", + "weight": 2510, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceMetric.source", + "weight": 2511, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceMetric.parent", + "weight": 2512, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceMetric.operationalStatus", + "weight": 2513, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DeviceMetric.color", + "weight": 2514, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "DeviceMetric.category", + "weight": 2515, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DeviceMetric.measurementPeriod", + "weight": 2516, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "DeviceMetric.calibration", + "weight": 2517, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DeviceMetric.calibration.id", + "weight": 2518, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DeviceMetric.calibration.extension", + "weight": 2519, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceMetric.calibration.modifierExtension", + "weight": 2520, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceMetric.calibration.type", + "weight": 2521, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DeviceMetric.calibration.state", + "weight": 2522, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DeviceMetric.calibration.time", + "weight": 2523, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "DeviceRequest", + "weight": 2524, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "DeviceRequest.id", + "weight": 2525, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DeviceRequest.meta", + "weight": 2526, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "DeviceRequest.implicitRules", + "weight": 2527, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DeviceRequest.language", + "weight": 2528, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DeviceRequest.text", + "weight": 2529, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "DeviceRequest.contained", + "weight": 2530, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "DeviceRequest.extension", + "weight": 2531, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceRequest.modifierExtension", + "weight": 2532, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceRequest.identifier", + "weight": 2533, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "DeviceRequest.instantiatesCanonical", + "weight": 2534, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "DeviceRequest.instantiatesUri", + "weight": 2535, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "DeviceRequest.basedOn", + "weight": 2536, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceRequest.priorRequest", + "weight": 2537, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceRequest.groupIdentifier", + "weight": 2538, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "DeviceRequest.status", + "weight": 2539, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "DeviceRequest.intent", + "weight": 2540, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DeviceRequest.priority", + "weight": 2541, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "DeviceRequest.codeReference", + "weight": 2542, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "DeviceRequest.codeCodeableConcept", + "weight": 2542, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceRequest.parameter", + "weight": 2543, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DeviceRequest.parameter.id", + "weight": 2544, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DeviceRequest.parameter.extension", + "weight": 2545, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceRequest.parameter.modifierExtension", + "weight": 2546, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceRequest.parameter.code", + "weight": 2547, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceRequest.parameter.valueCodeableConcept", + "weight": 2548, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceRequest.parameter.valueQuantity", + "weight": 2548, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "DeviceRequest.parameter.valueRange", + "weight": 2548, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "DeviceRequest.parameter.valueBoolean", + "weight": 2548, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "DeviceRequest.subject", + "weight": 2549, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceRequest.encounter", + "weight": 2550, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceRequest.occurrenceDateTime", + "weight": 2551, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "DeviceRequest.occurrencePeriod", + "weight": 2551, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "DeviceRequest.occurrenceTiming", + "weight": 2551, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "DeviceRequest.authoredOn", + "weight": 2552, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "DeviceRequest.requester", + "weight": 2553, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceRequest.performerType", + "weight": 2554, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceRequest.performer", + "weight": 2555, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceRequest.reasonCode", + "weight": 2556, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceRequest.reasonReference", + "weight": 2557, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceRequest.insurance", + "weight": 2558, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceRequest.supportingInfo", + "weight": 2559, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceRequest.note", + "weight": 2560, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "DeviceRequest.relevantHistory", + "weight": 2561, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceUseStatement", + "weight": 2562, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "DeviceUseStatement.id", + "weight": 2563, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DeviceUseStatement.meta", + "weight": 2564, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "DeviceUseStatement.implicitRules", + "weight": 2565, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DeviceUseStatement.language", + "weight": 2566, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DeviceUseStatement.text", + "weight": 2567, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "DeviceUseStatement.contained", + "weight": 2568, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "DeviceUseStatement.extension", + "weight": 2569, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceUseStatement.modifierExtension", + "weight": 2570, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DeviceUseStatement.identifier", + "weight": 2571, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "DeviceUseStatement.basedOn", + "weight": 2572, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "DeviceUseStatement.status", + "weight": 2573, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "DeviceUseStatement.subject", + "weight": 2574, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceUseStatement.derivedFrom", + "weight": 2575, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceUseStatement.timingTiming", + "weight": 2576, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "DeviceUseStatement.timingPeriod", + "weight": 2576, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "DeviceUseStatement.timingDateTime", + "weight": 2576, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "DeviceUseStatement.recordedOn", + "weight": 2577, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "DeviceUseStatement.source", + "weight": 2578, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "DeviceUseStatement.device", + "weight": 2579, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceUseStatement.reasonCode", + "weight": 2580, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceUseStatement.reasonReference", + "weight": 2581, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DeviceUseStatement.bodySite", + "weight": 2582, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DeviceUseStatement.note", + "weight": 2583, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "DiagnosticReport", + "weight": 2584, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "DiagnosticReport.id", + "weight": 2585, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DiagnosticReport.meta", + "weight": 2586, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "DiagnosticReport.implicitRules", + "weight": 2587, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DiagnosticReport.language", + "weight": 2588, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DiagnosticReport.text", + "weight": 2589, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "DiagnosticReport.contained", + "weight": 2590, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "DiagnosticReport.extension", + "weight": 2591, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DiagnosticReport.modifierExtension", + "weight": 2592, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DiagnosticReport.identifier", + "weight": 2593, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "DiagnosticReport.basedOn", + "weight": 2594, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "DiagnosticReport.status", + "weight": 2595, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DiagnosticReport.category", + "weight": 2596, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "DiagnosticReport.code", + "weight": 2597, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DiagnosticReport.subject", + "weight": 2598, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DiagnosticReport.encounter", + "weight": 2599, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DiagnosticReport.effectiveDateTime", + "weight": 2600, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "DiagnosticReport.effectivePeriod", + "weight": 2600, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "DiagnosticReport.issued", + "weight": 2601, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "DiagnosticReport.performer", + "weight": 2602, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DiagnosticReport.resultsInterpreter", + "weight": 2603, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DiagnosticReport.specimen", + "weight": 2604, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DiagnosticReport.result", + "weight": 2605, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DiagnosticReport.imagingStudy", + "weight": 2606, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DiagnosticReport.media", + "weight": 2607, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DiagnosticReport.media.id", + "weight": 2608, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DiagnosticReport.media.extension", + "weight": 2609, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DiagnosticReport.media.modifierExtension", + "weight": 2610, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DiagnosticReport.media.comment", + "weight": 2611, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "DiagnosticReport.media.link", + "weight": 2612, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DiagnosticReport.conclusion", + "weight": 2613, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "DiagnosticReport.conclusionCode", + "weight": 2614, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DiagnosticReport.presentedForm", + "weight": 2615, + "max": "*", + "type": "Attachment" + }, + { + "min": 0, + "path": "DocumentManifest", + "weight": 2616, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "DocumentManifest.id", + "weight": 2617, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DocumentManifest.meta", + "weight": 2618, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "DocumentManifest.implicitRules", + "weight": 2619, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DocumentManifest.language", + "weight": 2620, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DocumentManifest.text", + "weight": 2621, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "DocumentManifest.contained", + "weight": 2622, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "DocumentManifest.extension", + "weight": 2623, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DocumentManifest.modifierExtension", + "weight": 2624, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DocumentManifest.masterIdentifier", + "weight": 2625, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "DocumentManifest.identifier", + "weight": 2626, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "DocumentManifest.status", + "weight": 2627, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DocumentManifest.type", + "weight": 2628, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DocumentManifest.subject", + "weight": 2629, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DocumentManifest.created", + "weight": 2630, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "DocumentManifest.author", + "weight": 2631, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DocumentManifest.recipient", + "weight": 2632, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DocumentManifest.source", + "weight": 2633, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DocumentManifest.description", + "weight": 2634, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "DocumentManifest.content", + "weight": 2635, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DocumentManifest.related", + "weight": 2636, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DocumentManifest.related.id", + "weight": 2637, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DocumentManifest.related.extension", + "weight": 2638, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DocumentManifest.related.modifierExtension", + "weight": 2639, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DocumentManifest.related.identifier", + "weight": 2640, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "DocumentManifest.related.ref", + "weight": 2641, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DocumentReference", + "weight": 2642, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "DocumentReference.id", + "weight": 2643, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DocumentReference.meta", + "weight": 2644, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "DocumentReference.implicitRules", + "weight": 2645, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DocumentReference.language", + "weight": 2646, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DocumentReference.text", + "weight": 2647, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "DocumentReference.contained", + "weight": 2648, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "DocumentReference.extension", + "weight": 2649, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DocumentReference.modifierExtension", + "weight": 2650, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DocumentReference.masterIdentifier", + "weight": 2651, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "DocumentReference.identifier", + "weight": 2652, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "DocumentReference.status", + "weight": 2653, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DocumentReference.docStatus", + "weight": 2654, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DocumentReference.type", + "weight": 2655, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DocumentReference.category", + "weight": 2656, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DocumentReference.subject", + "weight": 2657, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DocumentReference.date", + "weight": 2658, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "DocumentReference.author", + "weight": 2659, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DocumentReference.authenticator", + "weight": 2660, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DocumentReference.custodian", + "weight": 2661, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DocumentReference.relatesTo", + "weight": 2662, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DocumentReference.relatesTo.id", + "weight": 2663, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DocumentReference.relatesTo.extension", + "weight": 2664, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DocumentReference.relatesTo.modifierExtension", + "weight": 2665, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "DocumentReference.relatesTo.code", + "weight": 2666, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "DocumentReference.relatesTo.target", + "weight": 2667, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DocumentReference.description", + "weight": 2668, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "DocumentReference.securityLabel", + "weight": 2669, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "DocumentReference.content", + "weight": 2670, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DocumentReference.content.id", + "weight": 2671, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DocumentReference.content.extension", + "weight": 2672, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DocumentReference.content.modifierExtension", + "weight": 2673, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "DocumentReference.content.attachment", + "weight": 2674, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "DocumentReference.content.format", + "weight": 2675, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "DocumentReference.context", + "weight": 2676, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "DocumentReference.context.id", + "weight": 2677, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DocumentReference.context.extension", + "weight": 2678, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DocumentReference.context.modifierExtension", + "weight": 2679, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DocumentReference.context.encounter", + "weight": 2680, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DocumentReference.context.event", + "weight": 2681, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DocumentReference.context.period", + "weight": 2682, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "DocumentReference.context.facilityType", + "weight": 2683, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DocumentReference.context.practiceSetting", + "weight": 2684, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "DocumentReference.context.sourcePatientInfo", + "weight": 2685, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "DocumentReference.context.related", + "weight": 2686, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "DomainResource", + "weight": 2687, + "max": "*", + "kind": "resource", + "derivations": [ + "Account", + "ActivityDefinition", + "AdverseEvent", + "AllergyIntolerance", + "Appointment", + "AppointmentResponse", + "AuditEvent", + "Basic", + "BiologicallyDerivedProduct", + "BodyStructure", + "CapabilityStatement", + "CarePlan", + "CareTeam", + "CatalogEntry", + "ChargeItem", + "ChargeItemDefinition", + "Claim", + "ClaimResponse", + "ClinicalImpression", + "CodeSystem", + "Communication", + "CommunicationRequest", + "CompartmentDefinition", + "Composition", + "ConceptMap", + "Condition", + "Consent", + "Contract", + "Coverage", + "CoverageEligibilityRequest", + "CoverageEligibilityResponse", + "DetectedIssue", + "Device", + "DeviceDefinition", + "DeviceMetric", + "DeviceRequest", + "DeviceUseStatement", + "DiagnosticReport", + "DocumentManifest", + "DocumentReference", + "EffectEvidenceSynthesis", + "Encounter", + "Endpoint", + "EnrollmentRequest", + "EnrollmentResponse", + "EpisodeOfCare", + "EventDefinition", + "Evidence", + "EvidenceVariable", + "ExampleScenario", + "ExplanationOfBenefit", + "FamilyMemberHistory", + "Flag", + "Goal", + "GraphDefinition", + "Group", + "GuidanceResponse", + "HealthcareService", + "ImagingStudy", + "Immunization", + "ImmunizationEvaluation", + "ImmunizationRecommendation", + "ImplementationGuide", + "InsurancePlan", + "Invoice", + "Library", + "Linkage", + "List", + "Location", + "Measure", + "MeasureReport", + "Media", + "Medication", + "MedicationAdministration", + "MedicationDispense", + "MedicationKnowledge", + "MedicationRequest", + "MedicationStatement", + "MedicinalProduct", + "MedicinalProductAuthorization", + "MedicinalProductContraindication", + "MedicinalProductIndication", + "MedicinalProductIngredient", + "MedicinalProductInteraction", + "MedicinalProductManufactured", + "MedicinalProductPackaged", + "MedicinalProductPharmaceutical", + "MedicinalProductUndesirableEffect", + "MessageDefinition", + "MessageHeader", + "MetadataResource", + "MolecularSequence", + "NamingSystem", + "NutritionOrder", + "Observation", + "ObservationDefinition", + "OperationDefinition", + "OperationOutcome", + "Organization", + "OrganizationAffiliation", + "Patient", + "PaymentNotice", + "PaymentReconciliation", + "Person", + "PlanDefinition", + "Practitioner", + "PractitionerRole", + "Procedure", + "Provenance", + "Questionnaire", + "QuestionnaireResponse", + "RelatedPerson", + "RequestGroup", + "ResearchDefinition", + "ResearchElementDefinition", + "ResearchStudy", + "ResearchSubject", + "RiskAssessment", + "RiskEvidenceSynthesis", + "Schedule", + "SearchParameter", + "ServiceRequest", + "Slot", + "Specimen", + "SpecimenDefinition", + "StructureDefinition", + "StructureMap", + "Subscription", + "Substance", + "SubstanceNucleicAcid", + "SubstancePolymer", + "SubstanceProtein", + "SubstanceReferenceInformation", + "SubstanceSourceMaterial", + "SubstanceSpecification", + "SupplyDelivery", + "SupplyRequest", + "Task", + "TerminologyCapabilities", + "TestReport", + "TestScript", + "ValueSet", + "VerificationResult", + "VisionPrescription" + ], + "type": "Resource" + }, + { + "min": 0, + "path": "DomainResource.id", + "weight": 2688, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "DomainResource.meta", + "weight": 2689, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "DomainResource.implicitRules", + "weight": 2690, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "DomainResource.language", + "weight": 2691, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "DomainResource.text", + "weight": 2692, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "DomainResource.contained", + "weight": 2693, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "DomainResource.extension", + "weight": 2694, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "DomainResource.modifierExtension", + "weight": 2695, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis", + "weight": 2696, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.id", + "weight": 2697, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.meta", + "weight": 2698, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.implicitRules", + "weight": 2699, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.language", + "weight": 2700, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.text", + "weight": 2701, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.contained", + "weight": 2702, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.extension", + "weight": 2703, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.modifierExtension", + "weight": 2704, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.url", + "weight": 2705, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.identifier", + "weight": 2706, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.version", + "weight": 2707, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.name", + "weight": 2708, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.title", + "weight": 2709, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "EffectEvidenceSynthesis.status", + "weight": 2710, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.date", + "weight": 2711, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.publisher", + "weight": 2712, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.contact", + "weight": 2713, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.description", + "weight": 2714, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.note", + "weight": 2715, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.useContext", + "weight": 2716, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.jurisdiction", + "weight": 2717, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.copyright", + "weight": 2718, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.approvalDate", + "weight": 2719, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.lastReviewDate", + "weight": 2720, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectivePeriod", + "weight": 2721, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.topic", + "weight": 2722, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.author", + "weight": 2723, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.editor", + "weight": 2724, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.reviewer", + "weight": 2725, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.endorser", + "weight": 2726, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.relatedArtifact", + "weight": 2727, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.synthesisType", + "weight": 2728, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.studyType", + "weight": 2729, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "EffectEvidenceSynthesis.population", + "weight": 2730, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "EffectEvidenceSynthesis.exposure", + "weight": 2731, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "EffectEvidenceSynthesis.exposureAlternative", + "weight": 2732, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "EffectEvidenceSynthesis.outcome", + "weight": 2733, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.sampleSize", + "weight": 2734, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.sampleSize.id", + "weight": 2735, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.sampleSize.extension", + "weight": 2736, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.sampleSize.modifierExtension", + "weight": 2737, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.sampleSize.description", + "weight": 2738, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.sampleSize.numberOfStudies", + "weight": 2739, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.sampleSize.numberOfParticipants", + "weight": 2740, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.resultsByExposure", + "weight": 2741, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.resultsByExposure.id", + "weight": 2742, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.resultsByExposure.extension", + "weight": 2743, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.resultsByExposure.modifierExtension", + "weight": 2744, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.resultsByExposure.description", + "weight": 2745, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.resultsByExposure.exposureState", + "weight": 2746, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.resultsByExposure.variantState", + "weight": 2747, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "EffectEvidenceSynthesis.resultsByExposure.riskEvidenceSynthesis", + "weight": 2748, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate", + "weight": 2749, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.id", + "weight": 2750, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.extension", + "weight": 2751, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.modifierExtension", + "weight": 2752, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.description", + "weight": 2753, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.type", + "weight": 2754, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.variantState", + "weight": 2755, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.value", + "weight": 2756, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.unitOfMeasure", + "weight": 2757, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.precisionEstimate", + "weight": 2758, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.precisionEstimate.id", + "weight": 2759, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.precisionEstimate.extension", + "weight": 2760, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.precisionEstimate.modifierExtension", + "weight": 2761, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.precisionEstimate.type", + "weight": 2762, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.precisionEstimate.level", + "weight": 2763, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.precisionEstimate.from", + "weight": 2764, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.effectEstimate.precisionEstimate.to", + "weight": 2765, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.certainty", + "weight": 2766, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.certainty.id", + "weight": 2767, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.certainty.extension", + "weight": 2768, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.certainty.modifierExtension", + "weight": 2769, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.certainty.rating", + "weight": 2770, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.certainty.note", + "weight": 2771, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.certainty.certaintySubcomponent", + "weight": 2772, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.certainty.certaintySubcomponent.id", + "weight": 2773, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.certainty.certaintySubcomponent.extension", + "weight": 2774, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.certainty.certaintySubcomponent.modifierExtension", + "weight": 2775, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.certainty.certaintySubcomponent.type", + "weight": 2776, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.certainty.certaintySubcomponent.rating", + "weight": 2777, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EffectEvidenceSynthesis.certainty.certaintySubcomponent.note", + "weight": 2778, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Encounter", + "weight": 2779, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Encounter.id", + "weight": 2780, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Encounter.meta", + "weight": 2781, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Encounter.implicitRules", + "weight": 2782, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Encounter.language", + "weight": 2783, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Encounter.text", + "weight": 2784, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Encounter.contained", + "weight": 2785, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Encounter.extension", + "weight": 2786, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Encounter.modifierExtension", + "weight": 2787, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Encounter.identifier", + "weight": 2788, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "Encounter.status", + "weight": 2789, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Encounter.statusHistory", + "weight": 2790, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Encounter.statusHistory.id", + "weight": 2791, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Encounter.statusHistory.extension", + "weight": 2792, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Encounter.statusHistory.modifierExtension", + "weight": 2793, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Encounter.statusHistory.status", + "weight": 2794, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Encounter.statusHistory.period", + "weight": 2795, + "max": "1", + "type": "Period" + }, + { + "min": 1, + "path": "Encounter.class", + "weight": 2796, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "Encounter.classHistory", + "weight": 2797, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Encounter.classHistory.id", + "weight": 2798, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Encounter.classHistory.extension", + "weight": 2799, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Encounter.classHistory.modifierExtension", + "weight": 2800, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Encounter.classHistory.class", + "weight": 2801, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "Encounter.classHistory.period", + "weight": 2802, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Encounter.type", + "weight": 2803, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Encounter.serviceType", + "weight": 2804, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Encounter.priority", + "weight": 2805, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Encounter.subject", + "weight": 2806, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Encounter.episodeOfCare", + "weight": 2807, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Encounter.basedOn", + "weight": 2808, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Encounter.participant", + "weight": 2809, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Encounter.participant.id", + "weight": 2810, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Encounter.participant.extension", + "weight": 2811, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Encounter.participant.modifierExtension", + "weight": 2812, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Encounter.participant.type", + "weight": 2813, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Encounter.participant.period", + "weight": 2814, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Encounter.participant.individual", + "weight": 2815, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Encounter.appointment", + "weight": 2816, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Encounter.period", + "weight": 2817, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Encounter.length", + "weight": 2818, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "Encounter.reasonCode", + "weight": 2819, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Encounter.reasonReference", + "weight": 2820, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Encounter.diagnosis", + "weight": 2821, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Encounter.diagnosis.id", + "weight": 2822, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Encounter.diagnosis.extension", + "weight": 2823, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Encounter.diagnosis.modifierExtension", + "weight": 2824, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Encounter.diagnosis.condition", + "weight": 2825, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Encounter.diagnosis.use", + "weight": 2826, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Encounter.diagnosis.rank", + "weight": 2827, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Encounter.account", + "weight": 2828, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Encounter.hospitalization", + "weight": 2829, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Encounter.hospitalization.id", + "weight": 2830, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Encounter.hospitalization.extension", + "weight": 2831, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Encounter.hospitalization.modifierExtension", + "weight": 2832, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Encounter.hospitalization.preAdmissionIdentifier", + "weight": 2833, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "Encounter.hospitalization.origin", + "weight": 2834, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Encounter.hospitalization.admitSource", + "weight": 2835, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Encounter.hospitalization.reAdmission", + "weight": 2836, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Encounter.hospitalization.dietPreference", + "weight": 2837, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Encounter.hospitalization.specialCourtesy", + "weight": 2838, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Encounter.hospitalization.specialArrangement", + "weight": 2839, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Encounter.hospitalization.destination", + "weight": 2840, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Encounter.hospitalization.dischargeDisposition", + "weight": 2841, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Encounter.location", + "weight": 2842, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Encounter.location.id", + "weight": 2843, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Encounter.location.extension", + "weight": 2844, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Encounter.location.modifierExtension", + "weight": 2845, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Encounter.location.location", + "weight": 2846, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Encounter.location.status", + "weight": 2847, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Encounter.location.physicalType", + "weight": 2848, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Encounter.location.period", + "weight": 2849, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Encounter.serviceProvider", + "weight": 2850, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Encounter.partOf", + "weight": 2851, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Endpoint", + "weight": 2852, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Endpoint.id", + "weight": 2853, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Endpoint.meta", + "weight": 2854, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Endpoint.implicitRules", + "weight": 2855, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Endpoint.language", + "weight": 2856, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Endpoint.text", + "weight": 2857, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Endpoint.contained", + "weight": 2858, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Endpoint.extension", + "weight": 2859, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Endpoint.modifierExtension", + "weight": 2860, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Endpoint.identifier", + "weight": 2861, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "Endpoint.status", + "weight": 2862, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Endpoint.connectionType", + "weight": 2863, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "Endpoint.name", + "weight": 2864, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Endpoint.managingOrganization", + "weight": 2865, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Endpoint.contact", + "weight": 2866, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "Endpoint.period", + "weight": 2867, + "max": "1", + "type": "Period" + }, + { + "min": 1, + "path": "Endpoint.payloadType", + "weight": 2868, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Endpoint.payloadMimeType", + "weight": 2869, + "max": "*", + "type": "code" + }, + { + "min": 1, + "path": "Endpoint.address", + "weight": 2870, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "Endpoint.header", + "weight": 2871, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "EnrollmentRequest", + "weight": 2872, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "EnrollmentRequest.id", + "weight": 2873, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EnrollmentRequest.meta", + "weight": 2874, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "EnrollmentRequest.implicitRules", + "weight": 2875, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "EnrollmentRequest.language", + "weight": 2876, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EnrollmentRequest.text", + "weight": 2877, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "EnrollmentRequest.contained", + "weight": 2878, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "EnrollmentRequest.extension", + "weight": 2879, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EnrollmentRequest.modifierExtension", + "weight": 2880, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EnrollmentRequest.identifier", + "weight": 2881, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "EnrollmentRequest.status", + "weight": 2882, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EnrollmentRequest.created", + "weight": 2883, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "EnrollmentRequest.insurer", + "weight": 2884, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EnrollmentRequest.provider", + "weight": 2885, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EnrollmentRequest.candidate", + "weight": 2886, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EnrollmentRequest.coverage", + "weight": 2887, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EnrollmentResponse", + "weight": 2888, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "EnrollmentResponse.id", + "weight": 2889, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EnrollmentResponse.meta", + "weight": 2890, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "EnrollmentResponse.implicitRules", + "weight": 2891, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "EnrollmentResponse.language", + "weight": 2892, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EnrollmentResponse.text", + "weight": 2893, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "EnrollmentResponse.contained", + "weight": 2894, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "EnrollmentResponse.extension", + "weight": 2895, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EnrollmentResponse.modifierExtension", + "weight": 2896, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EnrollmentResponse.identifier", + "weight": 2897, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "EnrollmentResponse.status", + "weight": 2898, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EnrollmentResponse.request", + "weight": 2899, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EnrollmentResponse.outcome", + "weight": 2900, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EnrollmentResponse.disposition", + "weight": 2901, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EnrollmentResponse.created", + "weight": 2902, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "EnrollmentResponse.organization", + "weight": 2903, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EnrollmentResponse.requestProvider", + "weight": 2904, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EpisodeOfCare", + "weight": 2905, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "EpisodeOfCare.id", + "weight": 2906, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EpisodeOfCare.meta", + "weight": 2907, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "EpisodeOfCare.implicitRules", + "weight": 2908, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "EpisodeOfCare.language", + "weight": 2909, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EpisodeOfCare.text", + "weight": 2910, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "EpisodeOfCare.contained", + "weight": 2911, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "EpisodeOfCare.extension", + "weight": 2912, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EpisodeOfCare.modifierExtension", + "weight": 2913, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EpisodeOfCare.identifier", + "weight": 2914, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "EpisodeOfCare.status", + "weight": 2915, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EpisodeOfCare.statusHistory", + "weight": 2916, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "EpisodeOfCare.statusHistory.id", + "weight": 2917, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EpisodeOfCare.statusHistory.extension", + "weight": 2918, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EpisodeOfCare.statusHistory.modifierExtension", + "weight": 2919, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "EpisodeOfCare.statusHistory.status", + "weight": 2920, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "EpisodeOfCare.statusHistory.period", + "weight": 2921, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "EpisodeOfCare.type", + "weight": 2922, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EpisodeOfCare.diagnosis", + "weight": 2923, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "EpisodeOfCare.diagnosis.id", + "weight": 2924, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EpisodeOfCare.diagnosis.extension", + "weight": 2925, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EpisodeOfCare.diagnosis.modifierExtension", + "weight": 2926, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "EpisodeOfCare.diagnosis.condition", + "weight": 2927, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EpisodeOfCare.diagnosis.role", + "weight": 2928, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EpisodeOfCare.diagnosis.rank", + "weight": 2929, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "EpisodeOfCare.patient", + "weight": 2930, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EpisodeOfCare.managingOrganization", + "weight": 2931, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EpisodeOfCare.period", + "weight": 2932, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "EpisodeOfCare.referralRequest", + "weight": 2933, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "EpisodeOfCare.careManager", + "weight": 2934, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EpisodeOfCare.team", + "weight": 2935, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "EpisodeOfCare.account", + "weight": 2936, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "EventDefinition", + "weight": 2937, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "EventDefinition.id", + "weight": 2938, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EventDefinition.meta", + "weight": 2939, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "EventDefinition.implicitRules", + "weight": 2940, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "EventDefinition.language", + "weight": 2941, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EventDefinition.text", + "weight": 2942, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "EventDefinition.contained", + "weight": 2943, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "EventDefinition.extension", + "weight": 2944, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EventDefinition.modifierExtension", + "weight": 2945, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EventDefinition.url", + "weight": 2946, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "EventDefinition.identifier", + "weight": 2947, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "EventDefinition.version", + "weight": 2948, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EventDefinition.name", + "weight": 2949, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EventDefinition.title", + "weight": 2950, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EventDefinition.subtitle", + "weight": 2951, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "EventDefinition.status", + "weight": 2952, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EventDefinition.experimental", + "weight": 2953, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "EventDefinition.subjectCodeableConcept", + "weight": 2954, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EventDefinition.subjectReference", + "weight": 2954, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "EventDefinition.date", + "weight": 2955, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "EventDefinition.publisher", + "weight": 2956, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EventDefinition.contact", + "weight": 2957, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EventDefinition.description", + "weight": 2958, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "EventDefinition.useContext", + "weight": 2959, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "EventDefinition.jurisdiction", + "weight": 2960, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EventDefinition.purpose", + "weight": 2961, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "EventDefinition.usage", + "weight": 2962, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EventDefinition.copyright", + "weight": 2963, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "EventDefinition.approvalDate", + "weight": 2964, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "EventDefinition.lastReviewDate", + "weight": 2965, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "EventDefinition.effectivePeriod", + "weight": 2966, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "EventDefinition.topic", + "weight": 2967, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EventDefinition.author", + "weight": 2968, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EventDefinition.editor", + "weight": 2969, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EventDefinition.reviewer", + "weight": 2970, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EventDefinition.endorser", + "weight": 2971, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EventDefinition.relatedArtifact", + "weight": 2972, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 1, + "path": "EventDefinition.trigger", + "weight": 2973, + "max": "*", + "type": "TriggerDefinition" + }, + { + "min": 0, + "path": "Evidence", + "weight": 2974, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Evidence.id", + "weight": 2975, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Evidence.meta", + "weight": 2976, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Evidence.implicitRules", + "weight": 2977, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Evidence.language", + "weight": 2978, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Evidence.text", + "weight": 2979, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Evidence.contained", + "weight": 2980, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Evidence.extension", + "weight": 2981, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Evidence.modifierExtension", + "weight": 2982, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Evidence.url", + "weight": 2983, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Evidence.identifier", + "weight": 2984, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Evidence.version", + "weight": 2985, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Evidence.name", + "weight": 2986, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Evidence.title", + "weight": 2987, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Evidence.shortTitle", + "weight": 2988, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Evidence.subtitle", + "weight": 2989, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Evidence.status", + "weight": 2990, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Evidence.date", + "weight": 2991, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Evidence.publisher", + "weight": 2992, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Evidence.contact", + "weight": 2993, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Evidence.description", + "weight": 2994, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Evidence.note", + "weight": 2995, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Evidence.useContext", + "weight": 2996, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "Evidence.jurisdiction", + "weight": 2997, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Evidence.copyright", + "weight": 2998, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Evidence.approvalDate", + "weight": 2999, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Evidence.lastReviewDate", + "weight": 3000, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Evidence.effectivePeriod", + "weight": 3001, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Evidence.topic", + "weight": 3002, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Evidence.author", + "weight": 3003, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Evidence.editor", + "weight": 3004, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Evidence.reviewer", + "weight": 3005, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Evidence.endorser", + "weight": 3006, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Evidence.relatedArtifact", + "weight": 3007, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 1, + "path": "Evidence.exposureBackground", + "weight": 3008, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Evidence.exposureVariant", + "weight": 3009, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Evidence.outcome", + "weight": 3010, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "EvidenceVariable", + "weight": 3011, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "EvidenceVariable.id", + "weight": 3012, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EvidenceVariable.meta", + "weight": 3013, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "EvidenceVariable.implicitRules", + "weight": 3014, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "EvidenceVariable.language", + "weight": 3015, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EvidenceVariable.text", + "weight": 3016, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "EvidenceVariable.contained", + "weight": 3017, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "EvidenceVariable.extension", + "weight": 3018, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EvidenceVariable.modifierExtension", + "weight": 3019, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EvidenceVariable.url", + "weight": 3020, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "EvidenceVariable.identifier", + "weight": 3021, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "EvidenceVariable.version", + "weight": 3022, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EvidenceVariable.name", + "weight": 3023, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EvidenceVariable.title", + "weight": 3024, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EvidenceVariable.shortTitle", + "weight": 3025, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EvidenceVariable.subtitle", + "weight": 3026, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "EvidenceVariable.status", + "weight": 3027, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "EvidenceVariable.date", + "weight": 3028, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "EvidenceVariable.publisher", + "weight": 3029, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "EvidenceVariable.contact", + "weight": 3030, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EvidenceVariable.description", + "weight": 3031, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "EvidenceVariable.note", + "weight": 3032, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "EvidenceVariable.useContext", + "weight": 3033, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "EvidenceVariable.jurisdiction", + "weight": 3034, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EvidenceVariable.copyright", + "weight": 3035, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "EvidenceVariable.approvalDate", + "weight": 3036, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "EvidenceVariable.lastReviewDate", + "weight": 3037, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "EvidenceVariable.effectivePeriod", + "weight": 3038, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "EvidenceVariable.topic", + "weight": 3039, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "EvidenceVariable.author", + "weight": 3040, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EvidenceVariable.editor", + "weight": 3041, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EvidenceVariable.reviewer", + "weight": 3042, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EvidenceVariable.endorser", + "weight": 3043, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "EvidenceVariable.relatedArtifact", + "weight": 3044, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "EvidenceVariable.type", + "weight": 3045, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "EvidenceVariable.characteristic", + "weight": 3046, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "EvidenceVariable.characteristic.id", + "weight": 3047, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "EvidenceVariable.characteristic.extension", + "weight": 3048, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EvidenceVariable.characteristic.modifierExtension", + "weight": 3049, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "EvidenceVariable.characteristic.description", + "weight": 3050, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "EvidenceVariable.characteristic.definitionReference", + "weight": 3051, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "EvidenceVariable.characteristic.definitionCanonical", + "weight": 3051, + "max": "1", + "type": "canonical" + }, + { + "min": 1, + "path": "EvidenceVariable.characteristic.definitionCodeableConcept", + "weight": 3051, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "EvidenceVariable.characteristic.definitionExpression", + "weight": 3051, + "max": "1", + "type": "Expression" + }, + { + "min": 1, + "path": "EvidenceVariable.characteristic.definitionDataRequirement", + "weight": 3051, + "max": "1", + "type": "DataRequirement" + }, + { + "min": 1, + "path": "EvidenceVariable.characteristic.definitionTriggerDefinition", + "weight": 3051, + "max": "1", + "type": "TriggerDefinition" + }, + { + "min": 0, + "path": "EvidenceVariable.characteristic.usageContext", + "weight": 3052, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "EvidenceVariable.characteristic.exclude", + "weight": 3053, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "EvidenceVariable.characteristic.participantEffectiveDateTime", + "weight": 3054, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "EvidenceVariable.characteristic.participantEffectivePeriod", + "weight": 3054, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "EvidenceVariable.characteristic.participantEffectiveDuration", + "weight": 3054, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "EvidenceVariable.characteristic.participantEffectiveTiming", + "weight": 3054, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "EvidenceVariable.characteristic.timeFromStart", + "weight": 3055, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "EvidenceVariable.characteristic.groupMeasure", + "weight": 3056, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ExampleScenario", + "weight": 3057, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ExampleScenario.id", + "weight": 3058, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExampleScenario.meta", + "weight": 3059, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ExampleScenario.implicitRules", + "weight": 3060, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ExampleScenario.language", + "weight": 3061, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ExampleScenario.text", + "weight": 3062, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ExampleScenario.contained", + "weight": 3063, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ExampleScenario.extension", + "weight": 3064, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExampleScenario.modifierExtension", + "weight": 3065, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExampleScenario.url", + "weight": 3066, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ExampleScenario.identifier", + "weight": 3067, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "ExampleScenario.version", + "weight": 3068, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExampleScenario.name", + "weight": 3069, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ExampleScenario.status", + "weight": 3070, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ExampleScenario.experimental", + "weight": 3071, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ExampleScenario.date", + "weight": 3072, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ExampleScenario.publisher", + "weight": 3073, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExampleScenario.contact", + "weight": 3074, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ExampleScenario.useContext", + "weight": 3075, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "ExampleScenario.jurisdiction", + "weight": 3076, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExampleScenario.copyright", + "weight": 3077, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ExampleScenario.purpose", + "weight": 3078, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ExampleScenario.actor", + "weight": 3079, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExampleScenario.actor.id", + "weight": 3080, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExampleScenario.actor.extension", + "weight": 3081, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExampleScenario.actor.modifierExtension", + "weight": 3082, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExampleScenario.actor.actorId", + "weight": 3083, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ExampleScenario.actor.type", + "weight": 3084, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ExampleScenario.actor.name", + "weight": 3085, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExampleScenario.actor.description", + "weight": 3086, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ExampleScenario.instance", + "weight": 3087, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExampleScenario.instance.id", + "weight": 3088, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExampleScenario.instance.extension", + "weight": 3089, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExampleScenario.instance.modifierExtension", + "weight": 3090, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExampleScenario.instance.resourceId", + "weight": 3091, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ExampleScenario.instance.resourceType", + "weight": 3092, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ExampleScenario.instance.name", + "weight": 3093, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExampleScenario.instance.description", + "weight": 3094, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ExampleScenario.instance.version", + "weight": 3095, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExampleScenario.instance.version.id", + "weight": 3096, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExampleScenario.instance.version.extension", + "weight": 3097, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExampleScenario.instance.version.modifierExtension", + "weight": 3098, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExampleScenario.instance.version.versionId", + "weight": 3099, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ExampleScenario.instance.version.description", + "weight": 3100, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ExampleScenario.instance.containedInstance", + "weight": 3101, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExampleScenario.instance.containedInstance.id", + "weight": 3102, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExampleScenario.instance.containedInstance.extension", + "weight": 3103, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExampleScenario.instance.containedInstance.modifierExtension", + "weight": 3104, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExampleScenario.instance.containedInstance.resourceId", + "weight": 3105, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExampleScenario.instance.containedInstance.versionId", + "weight": 3106, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExampleScenario.process", + "weight": 3107, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExampleScenario.process.id", + "weight": 3108, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExampleScenario.process.extension", + "weight": 3109, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExampleScenario.process.modifierExtension", + "weight": 3110, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExampleScenario.process.title", + "weight": 3111, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExampleScenario.process.description", + "weight": 3112, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ExampleScenario.process.preConditions", + "weight": 3113, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ExampleScenario.process.postConditions", + "weight": 3114, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ExampleScenario.process.step", + "weight": 3115, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.id", + "weight": 3116, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.extension", + "weight": 3117, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.modifierExtension", + "weight": 3118, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.process", + "weight": 3119, + "max": "*" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.pause", + "weight": 3120, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.operation", + "weight": 3121, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.operation.id", + "weight": 3122, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.operation.extension", + "weight": 3123, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.operation.modifierExtension", + "weight": 3124, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExampleScenario.process.step.operation.number", + "weight": 3125, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.operation.type", + "weight": 3126, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.operation.name", + "weight": 3127, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.operation.initiator", + "weight": 3128, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.operation.receiver", + "weight": 3129, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.operation.description", + "weight": 3130, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.operation.initiatorActive", + "weight": 3131, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.operation.receiverActive", + "weight": 3132, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.operation.request", + "weight": 3133, + "max": "1" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.operation.response", + "weight": 3134, + "max": "1" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.alternative", + "weight": 3135, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.alternative.id", + "weight": 3136, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.alternative.extension", + "weight": 3137, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.alternative.modifierExtension", + "weight": 3138, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExampleScenario.process.step.alternative.title", + "weight": 3139, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.alternative.description", + "weight": 3140, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ExampleScenario.process.step.alternative.step", + "weight": 3141, + "max": "*" + }, + { + "min": 0, + "path": "ExampleScenario.workflow", + "weight": 3142, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "ExplanationOfBenefit", + "weight": 3143, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.id", + "weight": 3144, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.meta", + "weight": 3145, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.implicitRules", + "weight": 3146, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.language", + "weight": 3147, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.text", + "weight": 3148, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.contained", + "weight": 3149, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.extension", + "weight": 3150, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.modifierExtension", + "weight": 3151, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.identifier", + "weight": 3152, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.status", + "weight": 3153, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.type", + "weight": 3154, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.subType", + "weight": 3155, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.use", + "weight": 3156, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.patient", + "weight": 3157, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.billablePeriod", + "weight": 3158, + "max": "1", + "type": "Period" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.created", + "weight": 3159, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.enterer", + "weight": 3160, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.insurer", + "weight": 3161, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.provider", + "weight": 3162, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.priority", + "weight": 3163, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.fundsReserveRequested", + "weight": 3164, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.fundsReserve", + "weight": 3165, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.related", + "weight": 3166, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.related.id", + "weight": 3167, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.related.extension", + "weight": 3168, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.related.modifierExtension", + "weight": 3169, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.related.claim", + "weight": 3170, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.related.relationship", + "weight": 3171, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.related.reference", + "weight": 3172, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.prescription", + "weight": 3173, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.originalPrescription", + "weight": 3174, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payee", + "weight": 3175, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payee.id", + "weight": 3176, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payee.extension", + "weight": 3177, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payee.modifierExtension", + "weight": 3178, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payee.type", + "weight": 3179, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payee.party", + "weight": 3180, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.referral", + "weight": 3181, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.facility", + "weight": 3182, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.claim", + "weight": 3183, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.claimResponse", + "weight": 3184, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.outcome", + "weight": 3185, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.disposition", + "weight": 3186, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.preAuthRef", + "weight": 3187, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.preAuthRefPeriod", + "weight": 3188, + "max": "*", + "type": "Period" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.careTeam", + "weight": 3189, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.careTeam.id", + "weight": 3190, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.careTeam.extension", + "weight": 3191, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.careTeam.modifierExtension", + "weight": 3192, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.careTeam.sequence", + "weight": 3193, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.careTeam.provider", + "weight": 3194, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.careTeam.responsible", + "weight": 3195, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.careTeam.role", + "weight": 3196, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.careTeam.qualification", + "weight": 3197, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.supportingInfo", + "weight": 3198, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.supportingInfo.id", + "weight": 3199, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.supportingInfo.extension", + "weight": 3200, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.supportingInfo.modifierExtension", + "weight": 3201, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.supportingInfo.sequence", + "weight": 3202, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.supportingInfo.category", + "weight": 3203, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.supportingInfo.code", + "weight": 3204, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.supportingInfo.timingDate", + "weight": 3205, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.supportingInfo.timingPeriod", + "weight": 3205, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.supportingInfo.valueBoolean", + "weight": 3206, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.supportingInfo.valueString", + "weight": 3206, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.supportingInfo.valueQuantity", + "weight": 3206, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.supportingInfo.valueAttachment", + "weight": 3206, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.supportingInfo.valueReference", + "weight": 3206, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.supportingInfo.reason", + "weight": 3207, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.diagnosis", + "weight": 3208, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.diagnosis.id", + "weight": 3209, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.diagnosis.extension", + "weight": 3210, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.diagnosis.modifierExtension", + "weight": 3211, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.diagnosis.sequence", + "weight": 3212, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.diagnosis.diagnosisCodeableConcept", + "weight": 3213, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.diagnosis.diagnosisReference", + "weight": 3213, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.diagnosis.type", + "weight": 3214, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.diagnosis.onAdmission", + "weight": 3215, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.diagnosis.packageCode", + "weight": 3216, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.procedure", + "weight": 3217, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.procedure.id", + "weight": 3218, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.procedure.extension", + "weight": 3219, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.procedure.modifierExtension", + "weight": 3220, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.procedure.sequence", + "weight": 3221, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.procedure.type", + "weight": 3222, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.procedure.date", + "weight": 3223, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.procedure.procedureCodeableConcept", + "weight": 3224, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.procedure.procedureReference", + "weight": 3224, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.procedure.udi", + "weight": 3225, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.precedence", + "weight": 3226, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.insurance", + "weight": 3227, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.insurance.id", + "weight": 3228, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.insurance.extension", + "weight": 3229, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.insurance.modifierExtension", + "weight": 3230, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.insurance.focal", + "weight": 3231, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.insurance.coverage", + "weight": 3232, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.insurance.preAuthRef", + "weight": 3233, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.accident", + "weight": 3234, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.accident.id", + "weight": 3235, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.accident.extension", + "weight": 3236, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.accident.modifierExtension", + "weight": 3237, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.accident.date", + "weight": 3238, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.accident.type", + "weight": 3239, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.accident.locationAddress", + "weight": 3240, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.accident.locationReference", + "weight": 3240, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item", + "weight": 3241, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.id", + "weight": 3242, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.extension", + "weight": 3243, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.modifierExtension", + "weight": 3244, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.item.sequence", + "weight": 3245, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.careTeamSequence", + "weight": 3246, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.diagnosisSequence", + "weight": 3247, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.procedureSequence", + "weight": 3248, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.informationSequence", + "weight": 3249, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.revenue", + "weight": 3250, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.category", + "weight": 3251, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.item.productOrService", + "weight": 3252, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.modifier", + "weight": 3253, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.programCode", + "weight": 3254, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.servicedDate", + "weight": 3255, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.servicedPeriod", + "weight": 3255, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.locationCodeableConcept", + "weight": 3256, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.locationAddress", + "weight": 3256, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.locationReference", + "weight": 3256, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.quantity", + "weight": 3257, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.unitPrice", + "weight": 3258, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.factor", + "weight": 3259, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.net", + "weight": 3260, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.udi", + "weight": 3261, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.bodySite", + "weight": 3262, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.subSite", + "weight": 3263, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.encounter", + "weight": 3264, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.noteNumber", + "weight": 3265, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.adjudication", + "weight": 3266, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.adjudication.id", + "weight": 3267, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.adjudication.extension", + "weight": 3268, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.adjudication.modifierExtension", + "weight": 3269, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.item.adjudication.category", + "weight": 3270, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.adjudication.reason", + "weight": 3271, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.adjudication.amount", + "weight": 3272, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.adjudication.value", + "weight": 3273, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail", + "weight": 3274, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.id", + "weight": 3275, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.extension", + "weight": 3276, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.modifierExtension", + "weight": 3277, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.item.detail.sequence", + "weight": 3278, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.revenue", + "weight": 3279, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.category", + "weight": 3280, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.item.detail.productOrService", + "weight": 3281, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.modifier", + "weight": 3282, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.programCode", + "weight": 3283, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.quantity", + "weight": 3284, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.unitPrice", + "weight": 3285, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.factor", + "weight": 3286, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.net", + "weight": 3287, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.udi", + "weight": 3288, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.noteNumber", + "weight": 3289, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.adjudication", + "weight": 3290, + "max": "*" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail", + "weight": 3291, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.id", + "weight": 3292, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.extension", + "weight": 3293, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.modifierExtension", + "weight": 3294, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.item.detail.subDetail.sequence", + "weight": 3295, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.revenue", + "weight": 3296, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.category", + "weight": 3297, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.item.detail.subDetail.productOrService", + "weight": 3298, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.modifier", + "weight": 3299, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.programCode", + "weight": 3300, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.quantity", + "weight": 3301, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.unitPrice", + "weight": 3302, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.factor", + "weight": 3303, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.net", + "weight": 3304, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.udi", + "weight": 3305, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.noteNumber", + "weight": 3306, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.item.detail.subDetail.adjudication", + "weight": 3307, + "max": "*" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem", + "weight": 3308, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.id", + "weight": 3309, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.extension", + "weight": 3310, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.modifierExtension", + "weight": 3311, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.itemSequence", + "weight": 3312, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detailSequence", + "weight": 3313, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.subDetailSequence", + "weight": 3314, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.provider", + "weight": 3315, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.addItem.productOrService", + "weight": 3316, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.modifier", + "weight": 3317, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.programCode", + "weight": 3318, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.servicedDate", + "weight": 3319, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.servicedPeriod", + "weight": 3319, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.locationCodeableConcept", + "weight": 3320, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.locationAddress", + "weight": 3320, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.locationReference", + "weight": 3320, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.quantity", + "weight": 3321, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.unitPrice", + "weight": 3322, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.factor", + "weight": 3323, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.net", + "weight": 3324, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.bodySite", + "weight": 3325, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.subSite", + "weight": 3326, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.noteNumber", + "weight": 3327, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.adjudication", + "weight": 3328, + "max": "*" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail", + "weight": 3329, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.id", + "weight": 3330, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.extension", + "weight": 3331, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.modifierExtension", + "weight": 3332, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.addItem.detail.productOrService", + "weight": 3333, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.modifier", + "weight": 3334, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.quantity", + "weight": 3335, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.unitPrice", + "weight": 3336, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.factor", + "weight": 3337, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.net", + "weight": 3338, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.noteNumber", + "weight": 3339, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.adjudication", + "weight": 3340, + "max": "*" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.subDetail", + "weight": 3341, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.subDetail.id", + "weight": 3342, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.subDetail.extension", + "weight": 3343, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.subDetail.modifierExtension", + "weight": 3344, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.addItem.detail.subDetail.productOrService", + "weight": 3345, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.subDetail.modifier", + "weight": 3346, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.subDetail.quantity", + "weight": 3347, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.subDetail.unitPrice", + "weight": 3348, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.subDetail.factor", + "weight": 3349, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.subDetail.net", + "weight": 3350, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.subDetail.noteNumber", + "weight": 3351, + "max": "*", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.addItem.detail.subDetail.adjudication", + "weight": 3352, + "max": "*" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.adjudication", + "weight": 3353, + "max": "*" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.total", + "weight": 3354, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.total.id", + "weight": 3355, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.total.extension", + "weight": 3356, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.total.modifierExtension", + "weight": 3357, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.total.category", + "weight": 3358, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.total.amount", + "weight": 3359, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payment", + "weight": 3360, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payment.id", + "weight": 3361, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payment.extension", + "weight": 3362, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payment.modifierExtension", + "weight": 3363, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payment.type", + "weight": 3364, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payment.adjustment", + "weight": 3365, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payment.adjustmentReason", + "weight": 3366, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payment.date", + "weight": 3367, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payment.amount", + "weight": 3368, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.payment.identifier", + "weight": 3369, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.formCode", + "weight": 3370, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.form", + "weight": 3371, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.processNote", + "weight": 3372, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.processNote.id", + "weight": 3373, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.processNote.extension", + "weight": 3374, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.processNote.modifierExtension", + "weight": 3375, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.processNote.number", + "weight": 3376, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.processNote.type", + "weight": 3377, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.processNote.text", + "weight": 3378, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.processNote.language", + "weight": 3379, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitPeriod", + "weight": 3380, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance", + "weight": 3381, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.id", + "weight": 3382, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.extension", + "weight": 3383, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.modifierExtension", + "weight": 3384, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.benefitBalance.category", + "weight": 3385, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.excluded", + "weight": 3386, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.name", + "weight": 3387, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.description", + "weight": 3388, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.network", + "weight": 3389, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.unit", + "weight": 3390, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.term", + "weight": 3391, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.financial", + "weight": 3392, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.financial.id", + "weight": 3393, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.financial.extension", + "weight": 3394, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.financial.modifierExtension", + "weight": 3395, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ExplanationOfBenefit.benefitBalance.financial.type", + "weight": 3396, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.financial.allowedUnsignedInt", + "weight": 3397, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.financial.allowedString", + "weight": 3397, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.financial.allowedMoney", + "weight": 3397, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.financial.usedUnsignedInt", + "weight": 3398, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "ExplanationOfBenefit.benefitBalance.financial.usedMoney", + "weight": 3398, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "FamilyMemberHistory", + "weight": 3399, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "FamilyMemberHistory.id", + "weight": 3400, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "FamilyMemberHistory.meta", + "weight": 3401, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "FamilyMemberHistory.implicitRules", + "weight": 3402, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "FamilyMemberHistory.language", + "weight": 3403, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "FamilyMemberHistory.text", + "weight": 3404, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "FamilyMemberHistory.contained", + "weight": 3405, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "FamilyMemberHistory.extension", + "weight": 3406, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "FamilyMemberHistory.modifierExtension", + "weight": 3407, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "FamilyMemberHistory.identifier", + "weight": 3408, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "FamilyMemberHistory.instantiatesCanonical", + "weight": 3409, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "FamilyMemberHistory.instantiatesUri", + "weight": 3410, + "max": "*", + "type": "uri" + }, + { + "min": 1, + "path": "FamilyMemberHistory.status", + "weight": 3411, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "FamilyMemberHistory.dataAbsentReason", + "weight": 3412, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "FamilyMemberHistory.patient", + "weight": 3413, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "FamilyMemberHistory.date", + "weight": 3414, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "FamilyMemberHistory.name", + "weight": 3415, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "FamilyMemberHistory.relationship", + "weight": 3416, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "FamilyMemberHistory.sex", + "weight": 3417, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "FamilyMemberHistory.bornPeriod", + "weight": 3418, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "FamilyMemberHistory.bornDate", + "weight": 3418, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "FamilyMemberHistory.bornString", + "weight": 3418, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "FamilyMemberHistory.ageAge", + "weight": 3419, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "FamilyMemberHistory.ageRange", + "weight": 3419, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "FamilyMemberHistory.ageString", + "weight": 3419, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "FamilyMemberHistory.estimatedAge", + "weight": 3420, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "FamilyMemberHistory.deceasedBoolean", + "weight": 3421, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "FamilyMemberHistory.deceasedAge", + "weight": 3421, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "FamilyMemberHistory.deceasedRange", + "weight": 3421, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "FamilyMemberHistory.deceasedDate", + "weight": 3421, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "FamilyMemberHistory.deceasedString", + "weight": 3421, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "FamilyMemberHistory.reasonCode", + "weight": 3422, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "FamilyMemberHistory.reasonReference", + "weight": 3423, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "FamilyMemberHistory.note", + "weight": 3424, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "FamilyMemberHistory.condition", + "weight": 3425, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "FamilyMemberHistory.condition.id", + "weight": 3426, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "FamilyMemberHistory.condition.extension", + "weight": 3427, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "FamilyMemberHistory.condition.modifierExtension", + "weight": 3428, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "FamilyMemberHistory.condition.code", + "weight": 3429, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "FamilyMemberHistory.condition.outcome", + "weight": 3430, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "FamilyMemberHistory.condition.contributedToDeath", + "weight": 3431, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "FamilyMemberHistory.condition.onsetAge", + "weight": 3432, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "FamilyMemberHistory.condition.onsetRange", + "weight": 3432, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "FamilyMemberHistory.condition.onsetPeriod", + "weight": 3432, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "FamilyMemberHistory.condition.onsetString", + "weight": 3432, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "FamilyMemberHistory.condition.note", + "weight": 3433, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Flag", + "weight": 3434, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Flag.id", + "weight": 3435, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Flag.meta", + "weight": 3436, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Flag.implicitRules", + "weight": 3437, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Flag.language", + "weight": 3438, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Flag.text", + "weight": 3439, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Flag.contained", + "weight": 3440, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Flag.extension", + "weight": 3441, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Flag.modifierExtension", + "weight": 3442, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Flag.identifier", + "weight": 3443, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "Flag.status", + "weight": 3444, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Flag.category", + "weight": 3445, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Flag.code", + "weight": 3446, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Flag.subject", + "weight": 3447, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Flag.period", + "weight": 3448, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Flag.encounter", + "weight": 3449, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Flag.author", + "weight": 3450, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Goal", + "weight": 3451, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Goal.id", + "weight": 3452, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Goal.meta", + "weight": 3453, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Goal.implicitRules", + "weight": 3454, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Goal.language", + "weight": 3455, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Goal.text", + "weight": 3456, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Goal.contained", + "weight": 3457, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Goal.extension", + "weight": 3458, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Goal.modifierExtension", + "weight": 3459, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Goal.identifier", + "weight": 3460, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "Goal.lifecycleStatus", + "weight": 3461, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Goal.achievementStatus", + "weight": 3462, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Goal.category", + "weight": 3463, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Goal.priority", + "weight": 3464, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Goal.description", + "weight": 3465, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Goal.subject", + "weight": 3466, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Goal.startDate", + "weight": 3467, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Goal.startCodeableConcept", + "weight": 3467, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Goal.target", + "weight": 3468, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Goal.target.id", + "weight": 3469, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Goal.target.extension", + "weight": 3470, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Goal.target.modifierExtension", + "weight": 3471, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Goal.target.measure", + "weight": 3472, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Goal.target.detailQuantity", + "weight": 3473, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Goal.target.detailRange", + "weight": 3473, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "Goal.target.detailCodeableConcept", + "weight": 3473, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Goal.target.detailString", + "weight": 3473, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Goal.target.detailBoolean", + "weight": 3473, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Goal.target.detailInteger", + "weight": 3473, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "Goal.target.detailRatio", + "weight": 3473, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "Goal.target.dueDate", + "weight": 3474, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Goal.target.dueDuration", + "weight": 3474, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "Goal.statusDate", + "weight": 3475, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Goal.statusReason", + "weight": 3476, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Goal.expressedBy", + "weight": 3477, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Goal.addresses", + "weight": 3478, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Goal.note", + "weight": 3479, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Goal.outcomeCode", + "weight": 3480, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Goal.outcomeReference", + "weight": 3481, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "GraphDefinition", + "weight": 3482, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "GraphDefinition.id", + "weight": 3483, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "GraphDefinition.meta", + "weight": 3484, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "GraphDefinition.implicitRules", + "weight": 3485, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "GraphDefinition.language", + "weight": 3486, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "GraphDefinition.text", + "weight": 3487, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "GraphDefinition.contained", + "weight": 3488, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "GraphDefinition.extension", + "weight": 3489, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "GraphDefinition.modifierExtension", + "weight": 3490, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "GraphDefinition.url", + "weight": 3491, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "GraphDefinition.version", + "weight": 3492, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "GraphDefinition.name", + "weight": 3493, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "GraphDefinition.status", + "weight": 3494, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "GraphDefinition.experimental", + "weight": 3495, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "GraphDefinition.date", + "weight": 3496, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "GraphDefinition.publisher", + "weight": 3497, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "GraphDefinition.contact", + "weight": 3498, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "GraphDefinition.description", + "weight": 3499, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "GraphDefinition.useContext", + "weight": 3500, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "GraphDefinition.jurisdiction", + "weight": 3501, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "GraphDefinition.purpose", + "weight": 3502, + "max": "1", + "type": "markdown" + }, + { + "min": 1, + "path": "GraphDefinition.start", + "weight": 3503, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "GraphDefinition.profile", + "weight": 3504, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "GraphDefinition.link", + "weight": 3505, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "GraphDefinition.link.id", + "weight": 3506, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "GraphDefinition.link.extension", + "weight": 3507, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "GraphDefinition.link.modifierExtension", + "weight": 3508, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "GraphDefinition.link.path", + "weight": 3509, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "GraphDefinition.link.sliceName", + "weight": 3510, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "GraphDefinition.link.min", + "weight": 3511, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "GraphDefinition.link.max", + "weight": 3512, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "GraphDefinition.link.description", + "weight": 3513, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "GraphDefinition.link.target", + "weight": 3514, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "GraphDefinition.link.target.id", + "weight": 3515, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "GraphDefinition.link.target.extension", + "weight": 3516, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "GraphDefinition.link.target.modifierExtension", + "weight": 3517, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "GraphDefinition.link.target.type", + "weight": 3518, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "GraphDefinition.link.target.params", + "weight": 3519, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "GraphDefinition.link.target.profile", + "weight": 3520, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "GraphDefinition.link.target.compartment", + "weight": 3521, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "GraphDefinition.link.target.compartment.id", + "weight": 3522, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "GraphDefinition.link.target.compartment.extension", + "weight": 3523, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "GraphDefinition.link.target.compartment.modifierExtension", + "weight": 3524, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "GraphDefinition.link.target.compartment.use", + "weight": 3525, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "GraphDefinition.link.target.compartment.code", + "weight": 3526, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "GraphDefinition.link.target.compartment.rule", + "weight": 3527, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "GraphDefinition.link.target.compartment.expression", + "weight": 3528, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "GraphDefinition.link.target.compartment.description", + "weight": 3529, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "GraphDefinition.link.target.link", + "weight": 3530, + "max": "*" + }, + { + "min": 0, + "path": "Group", + "weight": 3531, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Group.id", + "weight": 3532, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Group.meta", + "weight": 3533, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Group.implicitRules", + "weight": 3534, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Group.language", + "weight": 3535, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Group.text", + "weight": 3536, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Group.contained", + "weight": 3537, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Group.extension", + "weight": 3538, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Group.modifierExtension", + "weight": 3539, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Group.identifier", + "weight": 3540, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Group.active", + "weight": 3541, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "Group.type", + "weight": 3542, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Group.actual", + "weight": 3543, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Group.code", + "weight": 3544, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Group.name", + "weight": 3545, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Group.quantity", + "weight": 3546, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "Group.managingEntity", + "weight": 3547, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Group.characteristic", + "weight": 3548, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Group.characteristic.id", + "weight": 3549, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Group.characteristic.extension", + "weight": 3550, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Group.characteristic.modifierExtension", + "weight": 3551, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Group.characteristic.code", + "weight": 3552, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Group.characteristic.valueCodeableConcept", + "weight": 3553, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Group.characteristic.valueBoolean", + "weight": 3553, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "Group.characteristic.valueQuantity", + "weight": 3553, + "max": "1", + "type": "Quantity" + }, + { + "min": 1, + "path": "Group.characteristic.valueRange", + "weight": 3553, + "max": "1", + "type": "Range" + }, + { + "min": 1, + "path": "Group.characteristic.valueReference", + "weight": 3553, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "Group.characteristic.exclude", + "weight": 3554, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Group.characteristic.period", + "weight": 3555, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Group.member", + "weight": 3556, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Group.member.id", + "weight": 3557, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Group.member.extension", + "weight": 3558, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Group.member.modifierExtension", + "weight": 3559, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Group.member.entity", + "weight": 3560, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Group.member.period", + "weight": 3561, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Group.member.inactive", + "weight": 3562, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "GuidanceResponse", + "weight": 3563, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "GuidanceResponse.id", + "weight": 3564, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "GuidanceResponse.meta", + "weight": 3565, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "GuidanceResponse.implicitRules", + "weight": 3566, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "GuidanceResponse.language", + "weight": 3567, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "GuidanceResponse.text", + "weight": 3568, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "GuidanceResponse.contained", + "weight": 3569, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "GuidanceResponse.extension", + "weight": 3570, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "GuidanceResponse.modifierExtension", + "weight": 3571, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "GuidanceResponse.requestIdentifier", + "weight": 3572, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "GuidanceResponse.identifier", + "weight": 3573, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "GuidanceResponse.moduleUri", + "weight": 3574, + "max": "1", + "type": "uri" + }, + { + "min": 1, + "path": "GuidanceResponse.moduleCanonical", + "weight": 3574, + "max": "1", + "type": "canonical" + }, + { + "min": 1, + "path": "GuidanceResponse.moduleCodeableConcept", + "weight": 3574, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "GuidanceResponse.status", + "weight": 3575, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "GuidanceResponse.subject", + "weight": 3576, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "GuidanceResponse.encounter", + "weight": 3577, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "GuidanceResponse.occurrenceDateTime", + "weight": 3578, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "GuidanceResponse.performer", + "weight": 3579, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "GuidanceResponse.reasonCode", + "weight": 3580, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "GuidanceResponse.reasonReference", + "weight": 3581, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "GuidanceResponse.note", + "weight": 3582, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "GuidanceResponse.evaluationMessage", + "weight": 3583, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "GuidanceResponse.outputParameters", + "weight": 3584, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "GuidanceResponse.result", + "weight": 3585, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "GuidanceResponse.dataRequirement", + "weight": 3586, + "max": "*", + "type": "DataRequirement" + }, + { + "min": 0, + "path": "HealthcareService", + "weight": 3587, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "HealthcareService.id", + "weight": 3588, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "HealthcareService.meta", + "weight": 3589, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "HealthcareService.implicitRules", + "weight": 3590, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "HealthcareService.language", + "weight": 3591, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "HealthcareService.text", + "weight": 3592, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "HealthcareService.contained", + "weight": 3593, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "HealthcareService.extension", + "weight": 3594, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "HealthcareService.modifierExtension", + "weight": 3595, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "HealthcareService.identifier", + "weight": 3596, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "HealthcareService.active", + "weight": 3597, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "HealthcareService.providedBy", + "weight": 3598, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "HealthcareService.category", + "weight": 3599, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "HealthcareService.type", + "weight": 3600, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "HealthcareService.specialty", + "weight": 3601, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "HealthcareService.location", + "weight": 3602, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "HealthcareService.name", + "weight": 3603, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "HealthcareService.comment", + "weight": 3604, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "HealthcareService.extraDetails", + "weight": 3605, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "HealthcareService.photo", + "weight": 3606, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "HealthcareService.telecom", + "weight": 3607, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "HealthcareService.coverageArea", + "weight": 3608, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "HealthcareService.serviceProvisionCode", + "weight": 3609, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "HealthcareService.eligibility", + "weight": 3610, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "HealthcareService.eligibility.id", + "weight": 3611, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "HealthcareService.eligibility.extension", + "weight": 3612, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "HealthcareService.eligibility.modifierExtension", + "weight": 3613, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "HealthcareService.eligibility.code", + "weight": 3614, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "HealthcareService.eligibility.comment", + "weight": 3615, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "HealthcareService.program", + "weight": 3616, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "HealthcareService.characteristic", + "weight": 3617, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "HealthcareService.communication", + "weight": 3618, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "HealthcareService.referralMethod", + "weight": 3619, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "HealthcareService.appointmentRequired", + "weight": 3620, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "HealthcareService.availableTime", + "weight": 3621, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "HealthcareService.availableTime.id", + "weight": 3622, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "HealthcareService.availableTime.extension", + "weight": 3623, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "HealthcareService.availableTime.modifierExtension", + "weight": 3624, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "HealthcareService.availableTime.daysOfWeek", + "weight": 3625, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "HealthcareService.availableTime.allDay", + "weight": 3626, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "HealthcareService.availableTime.availableStartTime", + "weight": 3627, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "HealthcareService.availableTime.availableEndTime", + "weight": 3628, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "HealthcareService.notAvailable", + "weight": 3629, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "HealthcareService.notAvailable.id", + "weight": 3630, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "HealthcareService.notAvailable.extension", + "weight": 3631, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "HealthcareService.notAvailable.modifierExtension", + "weight": 3632, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "HealthcareService.notAvailable.description", + "weight": 3633, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "HealthcareService.notAvailable.during", + "weight": 3634, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "HealthcareService.availabilityExceptions", + "weight": 3635, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "HealthcareService.endpoint", + "weight": 3636, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ImagingStudy", + "weight": 3637, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ImagingStudy.id", + "weight": 3638, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImagingStudy.meta", + "weight": 3639, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ImagingStudy.implicitRules", + "weight": 3640, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ImagingStudy.language", + "weight": 3641, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ImagingStudy.text", + "weight": 3642, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ImagingStudy.contained", + "weight": 3643, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ImagingStudy.extension", + "weight": 3644, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImagingStudy.modifierExtension", + "weight": 3645, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImagingStudy.identifier", + "weight": 3646, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "ImagingStudy.status", + "weight": 3647, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ImagingStudy.modality", + "weight": 3648, + "max": "*", + "type": "Coding" + }, + { + "min": 1, + "path": "ImagingStudy.subject", + "weight": 3649, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ImagingStudy.encounter", + "weight": 3650, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ImagingStudy.started", + "weight": 3651, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ImagingStudy.basedOn", + "weight": 3652, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ImagingStudy.referrer", + "weight": 3653, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ImagingStudy.interpreter", + "weight": 3654, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ImagingStudy.endpoint", + "weight": 3655, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ImagingStudy.numberOfSeries", + "weight": 3656, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "ImagingStudy.numberOfInstances", + "weight": 3657, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "ImagingStudy.procedureReference", + "weight": 3658, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ImagingStudy.procedureCode", + "weight": 3659, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ImagingStudy.location", + "weight": 3660, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ImagingStudy.reasonCode", + "weight": 3661, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ImagingStudy.reasonReference", + "weight": 3662, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ImagingStudy.note", + "weight": 3663, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "ImagingStudy.description", + "weight": 3664, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImagingStudy.series", + "weight": 3665, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImagingStudy.series.id", + "weight": 3666, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImagingStudy.series.extension", + "weight": 3667, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImagingStudy.series.modifierExtension", + "weight": 3668, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ImagingStudy.series.uid", + "weight": 3669, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "ImagingStudy.series.number", + "weight": 3670, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 1, + "path": "ImagingStudy.series.modality", + "weight": 3671, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "ImagingStudy.series.description", + "weight": 3672, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImagingStudy.series.numberOfInstances", + "weight": 3673, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "ImagingStudy.series.endpoint", + "weight": 3674, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ImagingStudy.series.bodySite", + "weight": 3675, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "ImagingStudy.series.laterality", + "weight": 3676, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "ImagingStudy.series.specimen", + "weight": 3677, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ImagingStudy.series.started", + "weight": 3678, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ImagingStudy.series.performer", + "weight": 3679, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImagingStudy.series.performer.id", + "weight": 3680, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImagingStudy.series.performer.extension", + "weight": 3681, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImagingStudy.series.performer.modifierExtension", + "weight": 3682, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImagingStudy.series.performer.function", + "weight": 3683, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ImagingStudy.series.performer.actor", + "weight": 3684, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ImagingStudy.series.instance", + "weight": 3685, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImagingStudy.series.instance.id", + "weight": 3686, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImagingStudy.series.instance.extension", + "weight": 3687, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImagingStudy.series.instance.modifierExtension", + "weight": 3688, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ImagingStudy.series.instance.uid", + "weight": 3689, + "max": "1", + "type": "id" + }, + { + "min": 1, + "path": "ImagingStudy.series.instance.sopClass", + "weight": 3690, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "ImagingStudy.series.instance.number", + "weight": 3691, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "ImagingStudy.series.instance.title", + "weight": 3692, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Immunization", + "weight": 3693, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Immunization.id", + "weight": 3694, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Immunization.meta", + "weight": 3695, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Immunization.implicitRules", + "weight": 3696, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Immunization.language", + "weight": 3697, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Immunization.text", + "weight": 3698, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Immunization.contained", + "weight": 3699, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Immunization.extension", + "weight": 3700, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Immunization.modifierExtension", + "weight": 3701, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Immunization.identifier", + "weight": 3702, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "Immunization.status", + "weight": 3703, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Immunization.statusReason", + "weight": 3704, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Immunization.vaccineCode", + "weight": 3705, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Immunization.patient", + "weight": 3706, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Immunization.encounter", + "weight": 3707, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "Immunization.occurrenceDateTime", + "weight": 3708, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "Immunization.occurrenceString", + "weight": 3708, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Immunization.recorded", + "weight": 3709, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Immunization.primarySource", + "weight": 3710, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Immunization.reportOrigin", + "weight": 3711, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Immunization.location", + "weight": 3712, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Immunization.manufacturer", + "weight": 3713, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Immunization.lotNumber", + "weight": 3714, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Immunization.expirationDate", + "weight": 3715, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Immunization.site", + "weight": 3716, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Immunization.route", + "weight": 3717, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Immunization.doseQuantity", + "weight": 3718, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Immunization.performer", + "weight": 3719, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Immunization.performer.id", + "weight": 3720, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Immunization.performer.extension", + "weight": 3721, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Immunization.performer.modifierExtension", + "weight": 3722, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Immunization.performer.function", + "weight": 3723, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Immunization.performer.actor", + "weight": 3724, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Immunization.note", + "weight": 3725, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Immunization.reasonCode", + "weight": 3726, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Immunization.reasonReference", + "weight": 3727, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Immunization.isSubpotent", + "weight": 3728, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Immunization.subpotentReason", + "weight": 3729, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Immunization.education", + "weight": 3730, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Immunization.education.id", + "weight": 3731, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Immunization.education.extension", + "weight": 3732, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Immunization.education.modifierExtension", + "weight": 3733, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Immunization.education.documentType", + "weight": 3734, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Immunization.education.reference", + "weight": 3735, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Immunization.education.publicationDate", + "weight": 3736, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Immunization.education.presentationDate", + "weight": 3737, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Immunization.programEligibility", + "weight": 3738, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Immunization.fundingSource", + "weight": 3739, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Immunization.reaction", + "weight": 3740, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Immunization.reaction.id", + "weight": 3741, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Immunization.reaction.extension", + "weight": 3742, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Immunization.reaction.modifierExtension", + "weight": 3743, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Immunization.reaction.date", + "weight": 3744, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Immunization.reaction.detail", + "weight": 3745, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Immunization.reaction.reported", + "weight": 3746, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Immunization.protocolApplied", + "weight": 3747, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Immunization.protocolApplied.id", + "weight": 3748, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Immunization.protocolApplied.extension", + "weight": 3749, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Immunization.protocolApplied.modifierExtension", + "weight": 3750, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Immunization.protocolApplied.series", + "weight": 3751, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Immunization.protocolApplied.authority", + "weight": 3752, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Immunization.protocolApplied.targetDisease", + "weight": 3753, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Immunization.protocolApplied.doseNumberPositiveInt", + "weight": 3754, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "Immunization.protocolApplied.doseNumberString", + "weight": 3754, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Immunization.protocolApplied.seriesDosesPositiveInt", + "weight": 3755, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Immunization.protocolApplied.seriesDosesString", + "weight": 3755, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImmunizationEvaluation", + "weight": 3756, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.id", + "weight": 3757, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.meta", + "weight": 3758, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.implicitRules", + "weight": 3759, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.language", + "weight": 3760, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.text", + "weight": 3761, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.contained", + "weight": 3762, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.extension", + "weight": 3763, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.modifierExtension", + "weight": 3764, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.identifier", + "weight": 3765, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "ImmunizationEvaluation.status", + "weight": 3766, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ImmunizationEvaluation.patient", + "weight": 3767, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.date", + "weight": 3768, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.authority", + "weight": 3769, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "ImmunizationEvaluation.targetDisease", + "weight": 3770, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ImmunizationEvaluation.immunizationEvent", + "weight": 3771, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "ImmunizationEvaluation.doseStatus", + "weight": 3772, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.doseStatusReason", + "weight": 3773, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.description", + "weight": 3774, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.series", + "weight": 3775, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.doseNumberPositiveInt", + "weight": 3776, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.doseNumberString", + "weight": 3776, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.seriesDosesPositiveInt", + "weight": 3777, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ImmunizationEvaluation.seriesDosesString", + "weight": 3777, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImmunizationRecommendation", + "weight": 3778, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.id", + "weight": 3779, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.meta", + "weight": 3780, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.implicitRules", + "weight": 3781, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.language", + "weight": 3782, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.text", + "weight": 3783, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.contained", + "weight": 3784, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.extension", + "weight": 3785, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.modifierExtension", + "weight": 3786, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.identifier", + "weight": 3787, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "ImmunizationRecommendation.patient", + "weight": 3788, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "ImmunizationRecommendation.date", + "weight": 3789, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.authority", + "weight": 3790, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "ImmunizationRecommendation.recommendation", + "weight": 3791, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.id", + "weight": 3792, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.extension", + "weight": 3793, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.modifierExtension", + "weight": 3794, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.vaccineCode", + "weight": 3795, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.targetDisease", + "weight": 3796, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.contraindicatedVaccineCode", + "weight": 3797, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ImmunizationRecommendation.recommendation.forecastStatus", + "weight": 3798, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.forecastReason", + "weight": 3799, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.dateCriterion", + "weight": 3800, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.dateCriterion.id", + "weight": 3801, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.dateCriterion.extension", + "weight": 3802, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.dateCriterion.modifierExtension", + "weight": 3803, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ImmunizationRecommendation.recommendation.dateCriterion.code", + "weight": 3804, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ImmunizationRecommendation.recommendation.dateCriterion.value", + "weight": 3805, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.description", + "weight": 3806, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.series", + "weight": 3807, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.doseNumberPositiveInt", + "weight": 3808, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.doseNumberString", + "weight": 3808, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.seriesDosesPositiveInt", + "weight": 3809, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.seriesDosesString", + "weight": 3809, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.supportingImmunization", + "weight": 3810, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ImmunizationRecommendation.recommendation.supportingPatientInformation", + "weight": 3811, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ImplementationGuide", + "weight": 3812, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ImplementationGuide.id", + "weight": 3813, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImplementationGuide.meta", + "weight": 3814, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ImplementationGuide.implicitRules", + "weight": 3815, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ImplementationGuide.language", + "weight": 3816, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ImplementationGuide.text", + "weight": 3817, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ImplementationGuide.contained", + "weight": 3818, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ImplementationGuide.extension", + "weight": 3819, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.modifierExtension", + "weight": 3820, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ImplementationGuide.url", + "weight": 3821, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ImplementationGuide.version", + "weight": 3822, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ImplementationGuide.name", + "weight": 3823, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImplementationGuide.title", + "weight": 3824, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ImplementationGuide.status", + "weight": 3825, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ImplementationGuide.experimental", + "weight": 3826, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ImplementationGuide.date", + "weight": 3827, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ImplementationGuide.publisher", + "weight": 3828, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImplementationGuide.contact", + "weight": 3829, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ImplementationGuide.description", + "weight": 3830, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ImplementationGuide.useContext", + "weight": 3831, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "ImplementationGuide.jurisdiction", + "weight": 3832, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ImplementationGuide.copyright", + "weight": 3833, + "max": "1", + "type": "markdown" + }, + { + "min": 1, + "path": "ImplementationGuide.packageId", + "weight": 3834, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "ImplementationGuide.license", + "weight": 3835, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ImplementationGuide.fhirVersion", + "weight": 3836, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "ImplementationGuide.dependsOn", + "weight": 3837, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImplementationGuide.dependsOn.id", + "weight": 3838, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImplementationGuide.dependsOn.extension", + "weight": 3839, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.dependsOn.modifierExtension", + "weight": 3840, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ImplementationGuide.dependsOn.uri", + "weight": 3841, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "ImplementationGuide.dependsOn.packageId", + "weight": 3842, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "ImplementationGuide.dependsOn.version", + "weight": 3843, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImplementationGuide.global", + "weight": 3844, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImplementationGuide.global.id", + "weight": 3845, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImplementationGuide.global.extension", + "weight": 3846, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.global.modifierExtension", + "weight": 3847, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ImplementationGuide.global.type", + "weight": 3848, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ImplementationGuide.global.profile", + "weight": 3849, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "ImplementationGuide.definition", + "weight": 3850, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.id", + "weight": 3851, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.extension", + "weight": 3852, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.modifierExtension", + "weight": 3853, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.grouping", + "weight": 3854, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.grouping.id", + "weight": 3855, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.grouping.extension", + "weight": 3856, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.grouping.modifierExtension", + "weight": 3857, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ImplementationGuide.definition.grouping.name", + "weight": 3858, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.grouping.description", + "weight": 3859, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ImplementationGuide.definition.resource", + "weight": 3860, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.resource.id", + "weight": 3861, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.resource.extension", + "weight": 3862, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.resource.modifierExtension", + "weight": 3863, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ImplementationGuide.definition.resource.reference", + "weight": 3864, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.resource.fhirVersion", + "weight": 3865, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.resource.name", + "weight": 3866, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.resource.description", + "weight": 3867, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.resource.exampleBoolean", + "weight": 3868, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.resource.exampleCanonical", + "weight": 3868, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.resource.groupingId", + "weight": 3869, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.page", + "weight": 3870, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.page.id", + "weight": 3871, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.page.extension", + "weight": 3872, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.page.modifierExtension", + "weight": 3873, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ImplementationGuide.definition.page.nameUrl", + "weight": 3874, + "max": "1", + "type": "url" + }, + { + "min": 1, + "path": "ImplementationGuide.definition.page.nameReference", + "weight": 3874, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "ImplementationGuide.definition.page.title", + "weight": 3875, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ImplementationGuide.definition.page.generation", + "weight": 3876, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.page.page", + "weight": 3877, + "max": "*" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.parameter", + "weight": 3878, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.parameter.id", + "weight": 3879, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.parameter.extension", + "weight": 3880, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.parameter.modifierExtension", + "weight": 3881, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ImplementationGuide.definition.parameter.code", + "weight": 3882, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ImplementationGuide.definition.parameter.value", + "weight": 3883, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.template", + "weight": 3884, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.template.id", + "weight": 3885, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.template.extension", + "weight": 3886, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.template.modifierExtension", + "weight": 3887, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ImplementationGuide.definition.template.code", + "weight": 3888, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ImplementationGuide.definition.template.source", + "weight": 3889, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImplementationGuide.definition.template.scope", + "weight": 3890, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest", + "weight": 3891, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.id", + "weight": 3892, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.extension", + "weight": 3893, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.modifierExtension", + "weight": 3894, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.rendering", + "weight": 3895, + "max": "1", + "type": "url" + }, + { + "min": 1, + "path": "ImplementationGuide.manifest.resource", + "weight": 3896, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.resource.id", + "weight": 3897, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.resource.extension", + "weight": 3898, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.resource.modifierExtension", + "weight": 3899, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ImplementationGuide.manifest.resource.reference", + "weight": 3900, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.resource.exampleBoolean", + "weight": 3901, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.resource.exampleCanonical", + "weight": 3901, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.resource.relativePath", + "weight": 3902, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.page", + "weight": 3903, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.page.id", + "weight": 3904, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.page.extension", + "weight": 3905, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.page.modifierExtension", + "weight": 3906, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ImplementationGuide.manifest.page.name", + "weight": 3907, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.page.title", + "weight": 3908, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.page.anchor", + "weight": 3909, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.image", + "weight": 3910, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "ImplementationGuide.manifest.other", + "weight": 3911, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "InsurancePlan", + "weight": 3912, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "InsurancePlan.id", + "weight": 3913, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "InsurancePlan.meta", + "weight": 3914, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "InsurancePlan.implicitRules", + "weight": 3915, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "InsurancePlan.language", + "weight": 3916, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "InsurancePlan.text", + "weight": 3917, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "InsurancePlan.contained", + "weight": 3918, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "InsurancePlan.extension", + "weight": 3919, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.modifierExtension", + "weight": 3920, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.identifier", + "weight": 3921, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "InsurancePlan.status", + "weight": 3922, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "InsurancePlan.type", + "weight": 3923, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "InsurancePlan.name", + "weight": 3924, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "InsurancePlan.alias", + "weight": 3925, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "InsurancePlan.period", + "weight": 3926, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "InsurancePlan.ownedBy", + "weight": 3927, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "InsurancePlan.administeredBy", + "weight": 3928, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "InsurancePlan.coverageArea", + "weight": 3929, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "InsurancePlan.contact", + "weight": 3930, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "InsurancePlan.contact.id", + "weight": 3931, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "InsurancePlan.contact.extension", + "weight": 3932, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.contact.modifierExtension", + "weight": 3933, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.contact.purpose", + "weight": 3934, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "InsurancePlan.contact.name", + "weight": 3935, + "max": "1", + "type": "HumanName" + }, + { + "min": 0, + "path": "InsurancePlan.contact.telecom", + "weight": 3936, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "InsurancePlan.contact.address", + "weight": 3937, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "InsurancePlan.endpoint", + "weight": 3938, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "InsurancePlan.network", + "weight": 3939, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "InsurancePlan.coverage", + "weight": 3940, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.id", + "weight": 3941, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.extension", + "weight": 3942, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.modifierExtension", + "weight": 3943, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "InsurancePlan.coverage.type", + "weight": 3944, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.network", + "weight": 3945, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "InsurancePlan.coverage.benefit", + "weight": 3946, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.benefit.id", + "weight": 3947, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.benefit.extension", + "weight": 3948, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.benefit.modifierExtension", + "weight": 3949, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "InsurancePlan.coverage.benefit.type", + "weight": 3950, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.benefit.requirement", + "weight": 3951, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.benefit.limit", + "weight": 3952, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.benefit.limit.id", + "weight": 3953, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.benefit.limit.extension", + "weight": 3954, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.benefit.limit.modifierExtension", + "weight": 3955, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.benefit.limit.value", + "weight": 3956, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "InsurancePlan.coverage.benefit.limit.code", + "weight": 3957, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "InsurancePlan.plan", + "weight": 3958, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "InsurancePlan.plan.id", + "weight": 3959, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "InsurancePlan.plan.extension", + "weight": 3960, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.plan.modifierExtension", + "weight": 3961, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.plan.identifier", + "weight": 3962, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "InsurancePlan.plan.type", + "weight": 3963, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "InsurancePlan.plan.coverageArea", + "weight": 3964, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "InsurancePlan.plan.network", + "weight": 3965, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "InsurancePlan.plan.generalCost", + "weight": 3966, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "InsurancePlan.plan.generalCost.id", + "weight": 3967, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "InsurancePlan.plan.generalCost.extension", + "weight": 3968, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.plan.generalCost.modifierExtension", + "weight": 3969, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.plan.generalCost.type", + "weight": 3970, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "InsurancePlan.plan.generalCost.groupSize", + "weight": 3971, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "InsurancePlan.plan.generalCost.cost", + "weight": 3972, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "InsurancePlan.plan.generalCost.comment", + "weight": 3973, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost", + "weight": 3974, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.id", + "weight": 3975, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.extension", + "weight": 3976, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.modifierExtension", + "weight": 3977, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "InsurancePlan.plan.specificCost.category", + "weight": 3978, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.benefit", + "weight": 3979, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.benefit.id", + "weight": 3980, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.benefit.extension", + "weight": 3981, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.benefit.modifierExtension", + "weight": 3982, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "InsurancePlan.plan.specificCost.benefit.type", + "weight": 3983, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.benefit.cost", + "weight": 3984, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.benefit.cost.id", + "weight": 3985, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.benefit.cost.extension", + "weight": 3986, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.benefit.cost.modifierExtension", + "weight": 3987, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "InsurancePlan.plan.specificCost.benefit.cost.type", + "weight": 3988, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.benefit.cost.applicability", + "weight": 3989, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.benefit.cost.qualifiers", + "weight": 3990, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "InsurancePlan.plan.specificCost.benefit.cost.value", + "weight": 3991, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Invoice", + "weight": 3992, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Invoice.id", + "weight": 3993, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Invoice.meta", + "weight": 3994, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Invoice.implicitRules", + "weight": 3995, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Invoice.language", + "weight": 3996, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Invoice.text", + "weight": 3997, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Invoice.contained", + "weight": 3998, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Invoice.extension", + "weight": 3999, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Invoice.modifierExtension", + "weight": 4000, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Invoice.identifier", + "weight": 4001, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "Invoice.status", + "weight": 4002, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Invoice.cancelledReason", + "weight": 4003, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Invoice.type", + "weight": 4004, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Invoice.subject", + "weight": 4005, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Invoice.recipient", + "weight": 4006, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Invoice.date", + "weight": 4007, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Invoice.participant", + "weight": 4008, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Invoice.participant.id", + "weight": 4009, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Invoice.participant.extension", + "weight": 4010, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Invoice.participant.modifierExtension", + "weight": 4011, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Invoice.participant.role", + "weight": 4012, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Invoice.participant.actor", + "weight": 4013, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Invoice.issuer", + "weight": 4014, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Invoice.account", + "weight": 4015, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Invoice.lineItem", + "weight": 4016, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Invoice.lineItem.id", + "weight": 4017, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Invoice.lineItem.extension", + "weight": 4018, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Invoice.lineItem.modifierExtension", + "weight": 4019, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Invoice.lineItem.sequence", + "weight": 4020, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "Invoice.lineItem.chargeItemReference", + "weight": 4021, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "Invoice.lineItem.chargeItemCodeableConcept", + "weight": 4021, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Invoice.lineItem.priceComponent", + "weight": 4022, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Invoice.lineItem.priceComponent.id", + "weight": 4023, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Invoice.lineItem.priceComponent.extension", + "weight": 4024, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Invoice.lineItem.priceComponent.modifierExtension", + "weight": 4025, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Invoice.lineItem.priceComponent.type", + "weight": 4026, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Invoice.lineItem.priceComponent.code", + "weight": 4027, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Invoice.lineItem.priceComponent.factor", + "weight": 4028, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Invoice.lineItem.priceComponent.amount", + "weight": 4029, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Invoice.totalPriceComponent", + "weight": 4030, + "max": "*" + }, + { + "min": 0, + "path": "Invoice.totalNet", + "weight": 4031, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Invoice.totalGross", + "weight": 4032, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Invoice.paymentTerms", + "weight": 4033, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Invoice.note", + "weight": 4034, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Library", + "weight": 4035, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Library.id", + "weight": 4036, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Library.meta", + "weight": 4037, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Library.implicitRules", + "weight": 4038, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Library.language", + "weight": 4039, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Library.text", + "weight": 4040, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Library.contained", + "weight": 4041, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Library.extension", + "weight": 4042, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Library.modifierExtension", + "weight": 4043, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Library.url", + "weight": 4044, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Library.identifier", + "weight": 4045, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Library.version", + "weight": 4046, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Library.name", + "weight": 4047, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Library.title", + "weight": 4048, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Library.subtitle", + "weight": 4049, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Library.status", + "weight": 4050, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Library.experimental", + "weight": 4051, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "Library.type", + "weight": 4052, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Library.subjectCodeableConcept", + "weight": 4053, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Library.subjectReference", + "weight": 4053, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Library.date", + "weight": 4054, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Library.publisher", + "weight": 4055, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Library.contact", + "weight": 4056, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Library.description", + "weight": 4057, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Library.useContext", + "weight": 4058, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "Library.jurisdiction", + "weight": 4059, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Library.purpose", + "weight": 4060, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Library.usage", + "weight": 4061, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Library.copyright", + "weight": 4062, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Library.approvalDate", + "weight": 4063, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Library.lastReviewDate", + "weight": 4064, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Library.effectivePeriod", + "weight": 4065, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Library.topic", + "weight": 4066, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Library.author", + "weight": 4067, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Library.editor", + "weight": 4068, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Library.reviewer", + "weight": 4069, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Library.endorser", + "weight": 4070, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Library.relatedArtifact", + "weight": 4071, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "Library.parameter", + "weight": 4072, + "max": "*", + "type": "ParameterDefinition" + }, + { + "min": 0, + "path": "Library.dataRequirement", + "weight": 4073, + "max": "*", + "type": "DataRequirement" + }, + { + "min": 0, + "path": "Library.content", + "weight": 4074, + "max": "*", + "type": "Attachment" + }, + { + "min": 0, + "path": "Linkage", + "weight": 4075, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Linkage.id", + "weight": 4076, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Linkage.meta", + "weight": 4077, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Linkage.implicitRules", + "weight": 4078, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Linkage.language", + "weight": 4079, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Linkage.text", + "weight": 4080, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Linkage.contained", + "weight": 4081, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Linkage.extension", + "weight": 4082, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Linkage.modifierExtension", + "weight": 4083, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Linkage.active", + "weight": 4084, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Linkage.author", + "weight": 4085, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "Linkage.item", + "weight": 4086, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Linkage.item.id", + "weight": 4087, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Linkage.item.extension", + "weight": 4088, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Linkage.item.modifierExtension", + "weight": 4089, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Linkage.item.type", + "weight": 4090, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Linkage.item.resource", + "weight": 4091, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "List", + "weight": 4092, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "List.id", + "weight": 4093, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "List.meta", + "weight": 4094, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "List.implicitRules", + "weight": 4095, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "List.language", + "weight": 4096, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "List.text", + "weight": 4097, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "List.contained", + "weight": 4098, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "List.extension", + "weight": 4099, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "List.modifierExtension", + "weight": 4100, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "List.identifier", + "weight": 4101, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "List.status", + "weight": 4102, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "List.mode", + "weight": 4103, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "List.title", + "weight": 4104, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "List.code", + "weight": 4105, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "List.subject", + "weight": 4106, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "List.encounter", + "weight": 4107, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "List.date", + "weight": 4108, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "List.source", + "weight": 4109, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "List.orderedBy", + "weight": 4110, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "List.note", + "weight": 4111, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "List.entry", + "weight": 4112, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "List.entry.id", + "weight": 4113, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "List.entry.extension", + "weight": 4114, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "List.entry.modifierExtension", + "weight": 4115, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "List.entry.flag", + "weight": 4116, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "List.entry.deleted", + "weight": 4117, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "List.entry.date", + "weight": 4118, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "List.entry.item", + "weight": 4119, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "List.emptyReason", + "weight": 4120, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Location", + "weight": 4121, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Location.id", + "weight": 4122, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Location.meta", + "weight": 4123, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Location.implicitRules", + "weight": 4124, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Location.language", + "weight": 4125, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Location.text", + "weight": 4126, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Location.contained", + "weight": 4127, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Location.extension", + "weight": 4128, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Location.modifierExtension", + "weight": 4129, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Location.identifier", + "weight": 4130, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Location.status", + "weight": 4131, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Location.operationalStatus", + "weight": 4132, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "Location.name", + "weight": 4133, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Location.alias", + "weight": 4134, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Location.description", + "weight": 4135, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Location.mode", + "weight": 4136, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Location.type", + "weight": 4137, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Location.telecom", + "weight": 4138, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "Location.address", + "weight": 4139, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "Location.physicalType", + "weight": 4140, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Location.position", + "weight": 4141, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Location.position.id", + "weight": 4142, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Location.position.extension", + "weight": 4143, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Location.position.modifierExtension", + "weight": 4144, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Location.position.longitude", + "weight": 4145, + "max": "1", + "type": "decimal" + }, + { + "min": 1, + "path": "Location.position.latitude", + "weight": 4146, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Location.position.altitude", + "weight": 4147, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Location.managingOrganization", + "weight": 4148, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Location.partOf", + "weight": 4149, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Location.hoursOfOperation", + "weight": 4150, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Location.hoursOfOperation.id", + "weight": 4151, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Location.hoursOfOperation.extension", + "weight": 4152, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Location.hoursOfOperation.modifierExtension", + "weight": 4153, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Location.hoursOfOperation.daysOfWeek", + "weight": 4154, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "Location.hoursOfOperation.allDay", + "weight": 4155, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Location.hoursOfOperation.openingTime", + "weight": 4156, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "Location.hoursOfOperation.closingTime", + "weight": 4157, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "Location.availabilityExceptions", + "weight": 4158, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Location.endpoint", + "weight": 4159, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Measure", + "weight": 4160, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Measure.id", + "weight": 4161, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Measure.meta", + "weight": 4162, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Measure.implicitRules", + "weight": 4163, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Measure.language", + "weight": 4164, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Measure.text", + "weight": 4165, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Measure.contained", + "weight": 4166, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Measure.extension", + "weight": 4167, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Measure.modifierExtension", + "weight": 4168, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Measure.url", + "weight": 4169, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Measure.identifier", + "weight": 4170, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Measure.version", + "weight": 4171, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Measure.name", + "weight": 4172, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Measure.title", + "weight": 4173, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Measure.subtitle", + "weight": 4174, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Measure.status", + "weight": 4175, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Measure.experimental", + "weight": 4176, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Measure.subjectCodeableConcept", + "weight": 4177, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Measure.subjectReference", + "weight": 4177, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Measure.date", + "weight": 4178, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Measure.publisher", + "weight": 4179, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Measure.contact", + "weight": 4180, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Measure.description", + "weight": 4181, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Measure.useContext", + "weight": 4182, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "Measure.jurisdiction", + "weight": 4183, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Measure.purpose", + "weight": 4184, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Measure.usage", + "weight": 4185, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Measure.copyright", + "weight": 4186, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Measure.approvalDate", + "weight": 4187, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Measure.lastReviewDate", + "weight": 4188, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Measure.effectivePeriod", + "weight": 4189, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Measure.topic", + "weight": 4190, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Measure.author", + "weight": 4191, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Measure.editor", + "weight": 4192, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Measure.reviewer", + "weight": 4193, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Measure.endorser", + "weight": 4194, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Measure.relatedArtifact", + "weight": 4195, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "Measure.library", + "weight": 4196, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "Measure.disclaimer", + "weight": 4197, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Measure.scoring", + "weight": 4198, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Measure.compositeScoring", + "weight": 4199, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Measure.type", + "weight": 4200, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Measure.riskAdjustment", + "weight": 4201, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Measure.rateAggregation", + "weight": 4202, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Measure.rationale", + "weight": 4203, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Measure.clinicalRecommendationStatement", + "weight": 4204, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Measure.improvementNotation", + "weight": 4205, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Measure.definition", + "weight": 4206, + "max": "*", + "type": "markdown" + }, + { + "min": 0, + "path": "Measure.guidance", + "weight": 4207, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Measure.group", + "weight": 4208, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Measure.group.id", + "weight": 4209, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Measure.group.extension", + "weight": 4210, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Measure.group.modifierExtension", + "weight": 4211, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Measure.group.code", + "weight": 4212, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Measure.group.description", + "weight": 4213, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Measure.group.population", + "weight": 4214, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Measure.group.population.id", + "weight": 4215, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Measure.group.population.extension", + "weight": 4216, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Measure.group.population.modifierExtension", + "weight": 4217, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Measure.group.population.code", + "weight": 4218, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Measure.group.population.description", + "weight": 4219, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Measure.group.population.criteria", + "weight": 4220, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "Measure.group.stratifier", + "weight": 4221, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Measure.group.stratifier.id", + "weight": 4222, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Measure.group.stratifier.extension", + "weight": 4223, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Measure.group.stratifier.modifierExtension", + "weight": 4224, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Measure.group.stratifier.code", + "weight": 4225, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Measure.group.stratifier.description", + "weight": 4226, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Measure.group.stratifier.criteria", + "weight": 4227, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "Measure.group.stratifier.component", + "weight": 4228, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Measure.group.stratifier.component.id", + "weight": 4229, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Measure.group.stratifier.component.extension", + "weight": 4230, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Measure.group.stratifier.component.modifierExtension", + "weight": 4231, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Measure.group.stratifier.component.code", + "weight": 4232, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Measure.group.stratifier.component.description", + "weight": 4233, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Measure.group.stratifier.component.criteria", + "weight": 4234, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "Measure.supplementalData", + "weight": 4235, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Measure.supplementalData.id", + "weight": 4236, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Measure.supplementalData.extension", + "weight": 4237, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Measure.supplementalData.modifierExtension", + "weight": 4238, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Measure.supplementalData.code", + "weight": 4239, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Measure.supplementalData.usage", + "weight": 4240, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Measure.supplementalData.description", + "weight": 4241, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Measure.supplementalData.criteria", + "weight": 4242, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "MeasureReport", + "weight": 4243, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MeasureReport.id", + "weight": 4244, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MeasureReport.meta", + "weight": 4245, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MeasureReport.implicitRules", + "weight": 4246, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MeasureReport.language", + "weight": 4247, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MeasureReport.text", + "weight": 4248, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MeasureReport.contained", + "weight": 4249, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MeasureReport.extension", + "weight": 4250, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MeasureReport.modifierExtension", + "weight": 4251, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MeasureReport.identifier", + "weight": 4252, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "MeasureReport.status", + "weight": 4253, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "MeasureReport.type", + "weight": 4254, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "MeasureReport.measure", + "weight": 4255, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "MeasureReport.subject", + "weight": 4256, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MeasureReport.date", + "weight": 4257, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MeasureReport.reporter", + "weight": 4258, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "MeasureReport.period", + "weight": 4259, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "MeasureReport.improvementNotation", + "weight": 4260, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MeasureReport.group", + "weight": 4261, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MeasureReport.group.id", + "weight": 4262, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MeasureReport.group.extension", + "weight": 4263, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MeasureReport.group.modifierExtension", + "weight": 4264, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MeasureReport.group.code", + "weight": 4265, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MeasureReport.group.population", + "weight": 4266, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MeasureReport.group.population.id", + "weight": 4267, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MeasureReport.group.population.extension", + "weight": 4268, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MeasureReport.group.population.modifierExtension", + "weight": 4269, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MeasureReport.group.population.code", + "weight": 4270, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MeasureReport.group.population.count", + "weight": 4271, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MeasureReport.group.population.subjectResults", + "weight": 4272, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MeasureReport.group.measureScore", + "weight": 4273, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier", + "weight": 4274, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.id", + "weight": 4275, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.extension", + "weight": 4276, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.modifierExtension", + "weight": 4277, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.code", + "weight": 4278, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum", + "weight": 4279, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.id", + "weight": 4280, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.extension", + "weight": 4281, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.modifierExtension", + "weight": 4282, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.value", + "weight": 4283, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.component", + "weight": 4284, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.component.id", + "weight": 4285, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.component.extension", + "weight": 4286, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.component.modifierExtension", + "weight": 4287, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MeasureReport.group.stratifier.stratum.component.code", + "weight": 4288, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MeasureReport.group.stratifier.stratum.component.value", + "weight": 4289, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.population", + "weight": 4290, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.population.id", + "weight": 4291, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.population.extension", + "weight": 4292, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.population.modifierExtension", + "weight": 4293, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.population.code", + "weight": 4294, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.population.count", + "weight": 4295, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.population.subjectResults", + "weight": 4296, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MeasureReport.group.stratifier.stratum.measureScore", + "weight": 4297, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MeasureReport.evaluatedResource", + "weight": 4298, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Media", + "weight": 4299, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Media.id", + "weight": 4300, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Media.meta", + "weight": 4301, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Media.implicitRules", + "weight": 4302, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Media.language", + "weight": 4303, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Media.text", + "weight": 4304, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Media.contained", + "weight": 4305, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Media.extension", + "weight": 4306, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Media.modifierExtension", + "weight": 4307, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Media.identifier", + "weight": 4308, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Media.basedOn", + "weight": 4309, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Media.partOf", + "weight": 4310, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "Media.status", + "weight": 4311, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Media.type", + "weight": 4312, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Media.modality", + "weight": 4313, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Media.view", + "weight": 4314, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Media.subject", + "weight": 4315, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Media.encounter", + "weight": 4316, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Media.createdDateTime", + "weight": 4317, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Media.createdPeriod", + "weight": 4317, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Media.issued", + "weight": 4318, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "Media.operator", + "weight": 4319, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Media.reasonCode", + "weight": 4320, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Media.bodySite", + "weight": 4321, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Media.deviceName", + "weight": 4322, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Media.device", + "weight": 4323, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Media.height", + "weight": 4324, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Media.width", + "weight": 4325, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Media.frames", + "weight": 4326, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Media.duration", + "weight": 4327, + "max": "1", + "type": "decimal" + }, + { + "min": 1, + "path": "Media.content", + "weight": 4328, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "Media.note", + "weight": 4329, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Medication", + "weight": 4330, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Medication.id", + "weight": 4331, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Medication.meta", + "weight": 4332, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Medication.implicitRules", + "weight": 4333, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Medication.language", + "weight": 4334, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Medication.text", + "weight": 4335, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Medication.contained", + "weight": 4336, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Medication.extension", + "weight": 4337, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Medication.modifierExtension", + "weight": 4338, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Medication.identifier", + "weight": 4339, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Medication.code", + "weight": 4340, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Medication.status", + "weight": 4341, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Medication.manufacturer", + "weight": 4342, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Medication.form", + "weight": 4343, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Medication.amount", + "weight": 4344, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "Medication.ingredient", + "weight": 4345, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Medication.ingredient.id", + "weight": 4346, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Medication.ingredient.extension", + "weight": 4347, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Medication.ingredient.modifierExtension", + "weight": 4348, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Medication.ingredient.itemCodeableConcept", + "weight": 4349, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Medication.ingredient.itemReference", + "weight": 4349, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Medication.ingredient.isActive", + "weight": 4350, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Medication.ingredient.strength", + "weight": 4351, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "Medication.batch", + "weight": 4352, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Medication.batch.id", + "weight": 4353, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Medication.batch.extension", + "weight": 4354, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Medication.batch.modifierExtension", + "weight": 4355, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Medication.batch.lotNumber", + "weight": 4356, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Medication.batch.expirationDate", + "weight": 4357, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MedicationAdministration", + "weight": 4358, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicationAdministration.id", + "weight": 4359, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationAdministration.meta", + "weight": 4360, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicationAdministration.implicitRules", + "weight": 4361, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicationAdministration.language", + "weight": 4362, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicationAdministration.text", + "weight": 4363, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicationAdministration.contained", + "weight": 4364, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicationAdministration.extension", + "weight": 4365, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationAdministration.modifierExtension", + "weight": 4366, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationAdministration.identifier", + "weight": 4367, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "MedicationAdministration.instantiates", + "weight": 4368, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "MedicationAdministration.partOf", + "weight": 4369, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "MedicationAdministration.status", + "weight": 4370, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicationAdministration.statusReason", + "weight": 4371, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationAdministration.category", + "weight": 4372, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationAdministration.medicationCodeableConcept", + "weight": 4373, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationAdministration.medicationReference", + "weight": 4373, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "MedicationAdministration.subject", + "weight": 4374, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationAdministration.context", + "weight": 4375, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationAdministration.supportingInformation", + "weight": 4376, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "MedicationAdministration.effectiveDateTime", + "weight": 4377, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "MedicationAdministration.effectivePeriod", + "weight": 4377, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "MedicationAdministration.performer", + "weight": 4378, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationAdministration.performer.id", + "weight": 4379, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationAdministration.performer.extension", + "weight": 4380, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationAdministration.performer.modifierExtension", + "weight": 4381, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationAdministration.performer.function", + "weight": 4382, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationAdministration.performer.actor", + "weight": 4383, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationAdministration.reasonCode", + "weight": 4384, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationAdministration.reasonReference", + "weight": 4385, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationAdministration.request", + "weight": 4386, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationAdministration.device", + "weight": 4387, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationAdministration.note", + "weight": 4388, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "MedicationAdministration.dosage", + "weight": 4389, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationAdministration.dosage.id", + "weight": 4390, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationAdministration.dosage.extension", + "weight": 4391, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationAdministration.dosage.modifierExtension", + "weight": 4392, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationAdministration.dosage.text", + "weight": 4393, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MedicationAdministration.dosage.site", + "weight": 4394, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationAdministration.dosage.route", + "weight": 4395, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationAdministration.dosage.method", + "weight": 4396, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationAdministration.dosage.dose", + "weight": 4397, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicationAdministration.dosage.rateRatio", + "weight": 4398, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "MedicationAdministration.dosage.rateQuantity", + "weight": 4398, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicationAdministration.eventHistory", + "weight": 4399, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationDispense", + "weight": 4400, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicationDispense.id", + "weight": 4401, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationDispense.meta", + "weight": 4402, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicationDispense.implicitRules", + "weight": 4403, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicationDispense.language", + "weight": 4404, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicationDispense.text", + "weight": 4405, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicationDispense.contained", + "weight": 4406, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicationDispense.extension", + "weight": 4407, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationDispense.modifierExtension", + "weight": 4408, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationDispense.identifier", + "weight": 4409, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "MedicationDispense.partOf", + "weight": 4410, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "MedicationDispense.status", + "weight": 4411, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicationDispense.statusReasonCodeableConcept", + "weight": 4412, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationDispense.statusReasonReference", + "weight": 4412, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationDispense.category", + "weight": 4413, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationDispense.medicationCodeableConcept", + "weight": 4414, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationDispense.medicationReference", + "weight": 4414, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationDispense.subject", + "weight": 4415, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationDispense.context", + "weight": 4416, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationDispense.supportingInformation", + "weight": 4417, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationDispense.performer", + "weight": 4418, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationDispense.performer.id", + "weight": 4419, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationDispense.performer.extension", + "weight": 4420, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationDispense.performer.modifierExtension", + "weight": 4421, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationDispense.performer.function", + "weight": 4422, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationDispense.performer.actor", + "weight": 4423, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationDispense.location", + "weight": 4424, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationDispense.authorizingPrescription", + "weight": 4425, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationDispense.type", + "weight": 4426, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationDispense.quantity", + "weight": 4427, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicationDispense.daysSupply", + "weight": 4428, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicationDispense.whenPrepared", + "weight": 4429, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MedicationDispense.whenHandedOver", + "weight": 4430, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MedicationDispense.destination", + "weight": 4431, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationDispense.receiver", + "weight": 4432, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationDispense.note", + "weight": 4433, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "MedicationDispense.dosageInstruction", + "weight": 4434, + "max": "*", + "type": "Dosage" + }, + { + "min": 0, + "path": "MedicationDispense.substitution", + "weight": 4435, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationDispense.substitution.id", + "weight": 4436, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationDispense.substitution.extension", + "weight": 4437, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationDispense.substitution.modifierExtension", + "weight": 4438, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicationDispense.substitution.wasSubstituted", + "weight": 4439, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "MedicationDispense.substitution.type", + "weight": 4440, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationDispense.substitution.reason", + "weight": 4441, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationDispense.substitution.responsibleParty", + "weight": 4442, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationDispense.detectedIssue", + "weight": 4443, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationDispense.eventHistory", + "weight": 4444, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationKnowledge", + "weight": 4445, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicationKnowledge.id", + "weight": 4446, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.meta", + "weight": 4447, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicationKnowledge.implicitRules", + "weight": 4448, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicationKnowledge.language", + "weight": 4449, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicationKnowledge.text", + "weight": 4450, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicationKnowledge.contained", + "weight": 4451, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicationKnowledge.extension", + "weight": 4452, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.modifierExtension", + "weight": 4453, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.code", + "weight": 4454, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.status", + "weight": 4455, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicationKnowledge.manufacturer", + "weight": 4456, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationKnowledge.doseForm", + "weight": 4457, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.amount", + "weight": 4458, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicationKnowledge.synonym", + "weight": 4459, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "MedicationKnowledge.relatedMedicationKnowledge", + "weight": 4460, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.relatedMedicationKnowledge.id", + "weight": 4461, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.relatedMedicationKnowledge.extension", + "weight": 4462, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.relatedMedicationKnowledge.modifierExtension", + "weight": 4463, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicationKnowledge.relatedMedicationKnowledge.type", + "weight": 4464, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationKnowledge.relatedMedicationKnowledge.reference", + "weight": 4465, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationKnowledge.associatedMedication", + "weight": 4466, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationKnowledge.productType", + "weight": 4467, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.monograph", + "weight": 4468, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.monograph.id", + "weight": 4469, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.monograph.extension", + "weight": 4470, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.monograph.modifierExtension", + "weight": 4471, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.monograph.type", + "weight": 4472, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.monograph.source", + "weight": 4473, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationKnowledge.ingredient", + "weight": 4474, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.ingredient.id", + "weight": 4475, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.ingredient.extension", + "weight": 4476, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.ingredient.modifierExtension", + "weight": 4477, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicationKnowledge.ingredient.itemCodeableConcept", + "weight": 4478, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationKnowledge.ingredient.itemReference", + "weight": 4478, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationKnowledge.ingredient.isActive", + "weight": 4479, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "MedicationKnowledge.ingredient.strength", + "weight": 4480, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "MedicationKnowledge.preparationInstruction", + "weight": 4481, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "MedicationKnowledge.intendedRoute", + "weight": 4482, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.cost", + "weight": 4483, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.cost.id", + "weight": 4484, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.cost.extension", + "weight": 4485, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.cost.modifierExtension", + "weight": 4486, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicationKnowledge.cost.type", + "weight": 4487, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.cost.source", + "weight": 4488, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "MedicationKnowledge.cost.cost", + "weight": 4489, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "MedicationKnowledge.monitoringProgram", + "weight": 4490, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.monitoringProgram.id", + "weight": 4491, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.monitoringProgram.extension", + "weight": 4492, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.monitoringProgram.modifierExtension", + "weight": 4493, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.monitoringProgram.type", + "weight": 4494, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.monitoringProgram.name", + "weight": 4495, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines", + "weight": 4496, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.id", + "weight": 4497, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.extension", + "weight": 4498, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.modifierExtension", + "weight": 4499, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.dosage", + "weight": 4500, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.dosage.id", + "weight": 4501, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.dosage.extension", + "weight": 4502, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.dosage.modifierExtension", + "weight": 4503, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicationKnowledge.administrationGuidelines.dosage.type", + "weight": 4504, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationKnowledge.administrationGuidelines.dosage.dosage", + "weight": 4505, + "max": "*", + "type": "Dosage" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.indicationCodeableConcept", + "weight": 4506, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.indicationReference", + "weight": 4506, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.patientCharacteristics", + "weight": 4507, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.patientCharacteristics.id", + "weight": 4508, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.patientCharacteristics.extension", + "weight": 4509, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.patientCharacteristics.modifierExtension", + "weight": 4510, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicationKnowledge.administrationGuidelines.patientCharacteristics.characteristicCodeableConcept", + "weight": 4511, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationKnowledge.administrationGuidelines.patientCharacteristics.characteristicQuantity", + "weight": 4511, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicationKnowledge.administrationGuidelines.patientCharacteristics.value", + "weight": 4512, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "MedicationKnowledge.medicineClassification", + "weight": 4513, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.medicineClassification.id", + "weight": 4514, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.medicineClassification.extension", + "weight": 4515, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.medicineClassification.modifierExtension", + "weight": 4516, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicationKnowledge.medicineClassification.type", + "weight": 4517, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.medicineClassification.classification", + "weight": 4518, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.packaging", + "weight": 4519, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.packaging.id", + "weight": 4520, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.packaging.extension", + "weight": 4521, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.packaging.modifierExtension", + "weight": 4522, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.packaging.type", + "weight": 4523, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.packaging.quantity", + "weight": 4524, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicationKnowledge.drugCharacteristic", + "weight": 4525, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.drugCharacteristic.id", + "weight": 4526, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.drugCharacteristic.extension", + "weight": 4527, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.drugCharacteristic.modifierExtension", + "weight": 4528, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.drugCharacteristic.type", + "weight": 4529, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.drugCharacteristic.valueCodeableConcept", + "weight": 4530, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.drugCharacteristic.valueString", + "weight": 4530, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MedicationKnowledge.drugCharacteristic.valueQuantity", + "weight": 4530, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicationKnowledge.drugCharacteristic.valueBase64Binary", + "weight": 4530, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "MedicationKnowledge.contraindication", + "weight": 4531, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory", + "weight": 4532, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.id", + "weight": 4533, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.extension", + "weight": 4534, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.modifierExtension", + "weight": 4535, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicationKnowledge.regulatory.regulatoryAuthority", + "weight": 4536, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.substitution", + "weight": 4537, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.substitution.id", + "weight": 4538, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.substitution.extension", + "weight": 4539, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.substitution.modifierExtension", + "weight": 4540, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicationKnowledge.regulatory.substitution.type", + "weight": 4541, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationKnowledge.regulatory.substitution.allowed", + "weight": 4542, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.schedule", + "weight": 4543, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.schedule.id", + "weight": 4544, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.schedule.extension", + "weight": 4545, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.schedule.modifierExtension", + "weight": 4546, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicationKnowledge.regulatory.schedule.schedule", + "weight": 4547, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.maxDispense", + "weight": 4548, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.maxDispense.id", + "weight": 4549, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.maxDispense.extension", + "weight": 4550, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.maxDispense.modifierExtension", + "weight": 4551, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicationKnowledge.regulatory.maxDispense.quantity", + "weight": 4552, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicationKnowledge.regulatory.maxDispense.period", + "weight": 4553, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "MedicationKnowledge.kinetics", + "weight": 4554, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationKnowledge.kinetics.id", + "weight": 4555, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationKnowledge.kinetics.extension", + "weight": 4556, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.kinetics.modifierExtension", + "weight": 4557, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationKnowledge.kinetics.areaUnderCurve", + "weight": 4558, + "max": "*", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicationKnowledge.kinetics.lethalDose50", + "weight": 4559, + "max": "*", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicationKnowledge.kinetics.halfLifePeriod", + "weight": 4560, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "MedicationRequest", + "weight": 4561, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicationRequest.id", + "weight": 4562, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationRequest.meta", + "weight": 4563, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicationRequest.implicitRules", + "weight": 4564, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicationRequest.language", + "weight": 4565, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicationRequest.text", + "weight": 4566, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicationRequest.contained", + "weight": 4567, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicationRequest.extension", + "weight": 4568, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationRequest.modifierExtension", + "weight": 4569, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationRequest.identifier", + "weight": 4570, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "MedicationRequest.status", + "weight": 4571, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicationRequest.statusReason", + "weight": 4572, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationRequest.intent", + "weight": 4573, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicationRequest.category", + "weight": 4574, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationRequest.priority", + "weight": 4575, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicationRequest.doNotPerform", + "weight": 4576, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "MedicationRequest.reportedBoolean", + "weight": 4577, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "MedicationRequest.reportedReference", + "weight": 4577, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "MedicationRequest.medicationCodeableConcept", + "weight": 4578, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationRequest.medicationReference", + "weight": 4578, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "MedicationRequest.subject", + "weight": 4579, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationRequest.encounter", + "weight": 4580, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationRequest.supportingInformation", + "weight": 4581, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationRequest.authoredOn", + "weight": 4582, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MedicationRequest.requester", + "weight": 4583, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationRequest.performer", + "weight": 4584, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationRequest.performerType", + "weight": 4585, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationRequest.recorder", + "weight": 4586, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationRequest.reasonCode", + "weight": 4587, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationRequest.reasonReference", + "weight": 4588, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationRequest.instantiatesCanonical", + "weight": 4589, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "MedicationRequest.instantiatesUri", + "weight": 4590, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "MedicationRequest.basedOn", + "weight": 4591, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationRequest.groupIdentifier", + "weight": 4592, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "MedicationRequest.courseOfTherapyType", + "weight": 4593, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationRequest.insurance", + "weight": 4594, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationRequest.note", + "weight": 4595, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "MedicationRequest.dosageInstruction", + "weight": 4596, + "max": "*", + "type": "Dosage" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest", + "weight": 4597, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.id", + "weight": 4598, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.extension", + "weight": 4599, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.modifierExtension", + "weight": 4600, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.initialFill", + "weight": 4601, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.initialFill.id", + "weight": 4602, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.initialFill.extension", + "weight": 4603, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.initialFill.modifierExtension", + "weight": 4604, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.initialFill.quantity", + "weight": 4605, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.initialFill.duration", + "weight": 4606, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.dispenseInterval", + "weight": 4607, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.validityPeriod", + "weight": 4608, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.numberOfRepeatsAllowed", + "weight": 4609, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.quantity", + "weight": 4610, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.expectedSupplyDuration", + "weight": 4611, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "MedicationRequest.dispenseRequest.performer", + "weight": 4612, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationRequest.substitution", + "weight": 4613, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicationRequest.substitution.id", + "weight": 4614, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationRequest.substitution.extension", + "weight": 4615, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationRequest.substitution.modifierExtension", + "weight": 4616, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicationRequest.substitution.allowedBoolean", + "weight": 4617, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "MedicationRequest.substitution.allowedCodeableConcept", + "weight": 4617, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationRequest.substitution.reason", + "weight": 4618, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationRequest.priorPrescription", + "weight": 4619, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationRequest.detectedIssue", + "weight": 4620, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationRequest.eventHistory", + "weight": 4621, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationStatement", + "weight": 4622, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicationStatement.id", + "weight": 4623, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicationStatement.meta", + "weight": 4624, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicationStatement.implicitRules", + "weight": 4625, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicationStatement.language", + "weight": 4626, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicationStatement.text", + "weight": 4627, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicationStatement.contained", + "weight": 4628, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicationStatement.extension", + "weight": 4629, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationStatement.modifierExtension", + "weight": 4630, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicationStatement.identifier", + "weight": 4631, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "MedicationStatement.basedOn", + "weight": 4632, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationStatement.partOf", + "weight": 4633, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "MedicationStatement.status", + "weight": 4634, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicationStatement.statusReason", + "weight": 4635, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationStatement.category", + "weight": 4636, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationStatement.medicationCodeableConcept", + "weight": 4637, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicationStatement.medicationReference", + "weight": 4637, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "MedicationStatement.subject", + "weight": 4638, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationStatement.context", + "weight": 4639, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationStatement.effectiveDateTime", + "weight": 4640, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MedicationStatement.effectivePeriod", + "weight": 4640, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "MedicationStatement.dateAsserted", + "weight": 4641, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MedicationStatement.informationSource", + "weight": 4642, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationStatement.derivedFrom", + "weight": 4643, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationStatement.reasonCode", + "weight": 4644, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicationStatement.reasonReference", + "weight": 4645, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicationStatement.note", + "weight": 4646, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "MedicationStatement.dosage", + "weight": 4647, + "max": "*", + "type": "Dosage" + }, + { + "min": 0, + "path": "MedicinalProduct", + "weight": 4648, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicinalProduct.id", + "weight": 4649, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProduct.meta", + "weight": 4650, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicinalProduct.implicitRules", + "weight": 4651, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicinalProduct.language", + "weight": 4652, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicinalProduct.text", + "weight": 4653, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicinalProduct.contained", + "weight": 4654, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicinalProduct.extension", + "weight": 4655, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProduct.modifierExtension", + "weight": 4656, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProduct.identifier", + "weight": 4657, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "MedicinalProduct.type", + "weight": 4658, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.domain", + "weight": 4659, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "MedicinalProduct.combinedPharmaceuticalDoseForm", + "weight": 4660, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.legalStatusOfSupply", + "weight": 4661, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.additionalMonitoringIndicator", + "weight": 4662, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.specialMeasures", + "weight": 4663, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "MedicinalProduct.paediatricUseIndicator", + "weight": 4664, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.productClassification", + "weight": 4665, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.marketingStatus", + "weight": 4666, + "max": "*", + "type": "MarketingStatus" + }, + { + "min": 0, + "path": "MedicinalProduct.pharmaceuticalProduct", + "weight": 4667, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProduct.packagedMedicinalProduct", + "weight": 4668, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProduct.attachedDocument", + "weight": 4669, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProduct.masterFile", + "weight": 4670, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProduct.contact", + "weight": 4671, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProduct.clinicalTrial", + "weight": 4672, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "MedicinalProduct.name", + "weight": 4673, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProduct.name.id", + "weight": 4674, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProduct.name.extension", + "weight": 4675, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProduct.name.modifierExtension", + "weight": 4676, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProduct.name.productName", + "weight": 4677, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MedicinalProduct.name.namePart", + "weight": 4678, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProduct.name.namePart.id", + "weight": 4679, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProduct.name.namePart.extension", + "weight": 4680, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProduct.name.namePart.modifierExtension", + "weight": 4681, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProduct.name.namePart.part", + "weight": 4682, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "MedicinalProduct.name.namePart.type", + "weight": 4683, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "MedicinalProduct.name.countryLanguage", + "weight": 4684, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProduct.name.countryLanguage.id", + "weight": 4685, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProduct.name.countryLanguage.extension", + "weight": 4686, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProduct.name.countryLanguage.modifierExtension", + "weight": 4687, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProduct.name.countryLanguage.country", + "weight": 4688, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.name.countryLanguage.jurisdiction", + "weight": 4689, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicinalProduct.name.countryLanguage.language", + "weight": 4690, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.crossReference", + "weight": 4691, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "MedicinalProduct.manufacturingBusinessOperation", + "weight": 4692, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProduct.manufacturingBusinessOperation.id", + "weight": 4693, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProduct.manufacturingBusinessOperation.extension", + "weight": 4694, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProduct.manufacturingBusinessOperation.modifierExtension", + "weight": 4695, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProduct.manufacturingBusinessOperation.operationType", + "weight": 4696, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.manufacturingBusinessOperation.authorisationReferenceNumber", + "weight": 4697, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "MedicinalProduct.manufacturingBusinessOperation.effectiveDate", + "weight": 4698, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MedicinalProduct.manufacturingBusinessOperation.confidentialityIndicator", + "weight": 4699, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.manufacturingBusinessOperation.manufacturer", + "weight": 4700, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProduct.manufacturingBusinessOperation.regulator", + "weight": 4701, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProduct.specialDesignation", + "weight": 4702, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProduct.specialDesignation.id", + "weight": 4703, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProduct.specialDesignation.extension", + "weight": 4704, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProduct.specialDesignation.modifierExtension", + "weight": 4705, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProduct.specialDesignation.identifier", + "weight": 4706, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "MedicinalProduct.specialDesignation.type", + "weight": 4707, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.specialDesignation.intendedUse", + "weight": 4708, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.specialDesignation.indicationCodeableConcept", + "weight": 4709, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.specialDesignation.indicationReference", + "weight": 4709, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProduct.specialDesignation.status", + "weight": 4710, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProduct.specialDesignation.date", + "weight": 4711, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MedicinalProduct.specialDesignation.species", + "weight": 4712, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization", + "weight": 4713, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.id", + "weight": 4714, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.meta", + "weight": 4715, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.implicitRules", + "weight": 4716, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.language", + "weight": 4717, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.text", + "weight": 4718, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.contained", + "weight": 4719, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.extension", + "weight": 4720, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.modifierExtension", + "weight": 4721, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.identifier", + "weight": 4722, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.subject", + "weight": 4723, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.country", + "weight": 4724, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.jurisdiction", + "weight": 4725, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.status", + "weight": 4726, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.statusDate", + "weight": 4727, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.restoreDate", + "weight": 4728, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.validityPeriod", + "weight": 4729, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.dataExclusivityPeriod", + "weight": 4730, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.dateOfFirstAuthorization", + "weight": 4731, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.internationalBirthDate", + "weight": 4732, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.legalBasis", + "weight": 4733, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.jurisdictionalAuthorization", + "weight": 4734, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.jurisdictionalAuthorization.id", + "weight": 4735, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.jurisdictionalAuthorization.extension", + "weight": 4736, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.jurisdictionalAuthorization.modifierExtension", + "weight": 4737, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.jurisdictionalAuthorization.identifier", + "weight": 4738, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.jurisdictionalAuthorization.country", + "weight": 4739, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.jurisdictionalAuthorization.jurisdiction", + "weight": 4740, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.jurisdictionalAuthorization.legalStatusOfSupply", + "weight": 4741, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.jurisdictionalAuthorization.validityPeriod", + "weight": 4742, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.holder", + "weight": 4743, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.regulator", + "weight": 4744, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.procedure", + "weight": 4745, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.procedure.id", + "weight": 4746, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.procedure.extension", + "weight": 4747, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.procedure.modifierExtension", + "weight": 4748, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.procedure.identifier", + "weight": 4749, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "MedicinalProductAuthorization.procedure.type", + "weight": 4750, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.procedure.datePeriod", + "weight": 4751, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.procedure.dateDateTime", + "weight": 4751, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MedicinalProductAuthorization.procedure.application", + "weight": 4752, + "max": "*" + }, + { + "min": 0, + "path": "MedicinalProductContraindication", + "weight": 4753, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.id", + "weight": 4754, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.meta", + "weight": 4755, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.implicitRules", + "weight": 4756, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.language", + "weight": 4757, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.text", + "weight": 4758, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.contained", + "weight": 4759, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.extension", + "weight": 4760, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.modifierExtension", + "weight": 4761, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.subject", + "weight": 4762, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.disease", + "weight": 4763, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.diseaseStatus", + "weight": 4764, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.comorbidity", + "weight": 4765, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.therapeuticIndication", + "weight": 4766, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.otherTherapy", + "weight": 4767, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.otherTherapy.id", + "weight": 4768, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.otherTherapy.extension", + "weight": 4769, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.otherTherapy.modifierExtension", + "weight": 4770, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProductContraindication.otherTherapy.therapyRelationshipType", + "weight": 4771, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicinalProductContraindication.otherTherapy.medicationCodeableConcept", + "weight": 4772, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicinalProductContraindication.otherTherapy.medicationReference", + "weight": 4772, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductContraindication.population", + "weight": 4773, + "max": "*", + "type": "Population" + }, + { + "min": 0, + "path": "MedicinalProductIndication", + "weight": 4774, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicinalProductIndication.id", + "weight": 4775, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductIndication.meta", + "weight": 4776, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicinalProductIndication.implicitRules", + "weight": 4777, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicinalProductIndication.language", + "weight": 4778, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicinalProductIndication.text", + "weight": 4779, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicinalProductIndication.contained", + "weight": 4780, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicinalProductIndication.extension", + "weight": 4781, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductIndication.modifierExtension", + "weight": 4782, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductIndication.subject", + "weight": 4783, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductIndication.diseaseSymptomProcedure", + "weight": 4784, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductIndication.diseaseStatus", + "weight": 4785, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductIndication.comorbidity", + "weight": 4786, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductIndication.intendedEffect", + "weight": 4787, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductIndication.duration", + "weight": 4788, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicinalProductIndication.otherTherapy", + "weight": 4789, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductIndication.otherTherapy.id", + "weight": 4790, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductIndication.otherTherapy.extension", + "weight": 4791, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductIndication.otherTherapy.modifierExtension", + "weight": 4792, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProductIndication.otherTherapy.therapyRelationshipType", + "weight": 4793, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicinalProductIndication.otherTherapy.medicationCodeableConcept", + "weight": 4794, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicinalProductIndication.otherTherapy.medicationReference", + "weight": 4794, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductIndication.undesirableEffect", + "weight": 4795, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductIndication.population", + "weight": 4796, + "max": "*", + "type": "Population" + }, + { + "min": 0, + "path": "MedicinalProductIngredient", + "weight": 4797, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.id", + "weight": 4798, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.meta", + "weight": 4799, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.implicitRules", + "weight": 4800, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.language", + "weight": 4801, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.text", + "weight": 4802, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.contained", + "weight": 4803, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.extension", + "weight": 4804, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.modifierExtension", + "weight": 4805, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.identifier", + "weight": 4806, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "MedicinalProductIngredient.role", + "weight": 4807, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.allergenicIndicator", + "weight": 4808, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.manufacturer", + "weight": 4809, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance", + "weight": 4810, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.id", + "weight": 4811, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.extension", + "weight": 4812, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.modifierExtension", + "weight": 4813, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProductIngredient.specifiedSubstance.code", + "weight": 4814, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicinalProductIngredient.specifiedSubstance.group", + "weight": 4815, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.confidentiality", + "weight": 4816, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength", + "weight": 4817, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.id", + "weight": 4818, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.extension", + "weight": 4819, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.modifierExtension", + "weight": 4820, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.presentation", + "weight": 4821, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.presentationLowLimit", + "weight": 4822, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.concentration", + "weight": 4823, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.concentrationLowLimit", + "weight": 4824, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.measurementPoint", + "weight": 4825, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.country", + "weight": 4826, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.referenceStrength", + "weight": 4827, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.referenceStrength.id", + "weight": 4828, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.referenceStrength.extension", + "weight": 4829, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.referenceStrength.modifierExtension", + "weight": 4830, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.referenceStrength.substance", + "weight": 4831, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.referenceStrength.strength", + "weight": 4832, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.referenceStrength.strengthLowLimit", + "weight": 4833, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.referenceStrength.measurementPoint", + "weight": 4834, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.specifiedSubstance.strength.referenceStrength.country", + "weight": 4835, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.substance", + "weight": 4836, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.substance.id", + "weight": 4837, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.substance.extension", + "weight": 4838, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.substance.modifierExtension", + "weight": 4839, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProductIngredient.substance.code", + "weight": 4840, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductIngredient.substance.strength", + "weight": 4841, + "max": "*" + }, + { + "min": 0, + "path": "MedicinalProductInteraction", + "weight": 4842, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.id", + "weight": 4843, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.meta", + "weight": 4844, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.implicitRules", + "weight": 4845, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.language", + "weight": 4846, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.text", + "weight": 4847, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.contained", + "weight": 4848, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.extension", + "weight": 4849, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.modifierExtension", + "weight": 4850, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.subject", + "weight": 4851, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.description", + "weight": 4852, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.interactant", + "weight": 4853, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.interactant.id", + "weight": 4854, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.interactant.extension", + "weight": 4855, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.interactant.modifierExtension", + "weight": 4856, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProductInteraction.interactant.itemReference", + "weight": 4857, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "MedicinalProductInteraction.interactant.itemCodeableConcept", + "weight": 4857, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.type", + "weight": 4858, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.effect", + "weight": 4859, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.incidence", + "weight": 4860, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductInteraction.management", + "weight": 4861, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductManufactured", + "weight": 4862, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicinalProductManufactured.id", + "weight": 4863, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductManufactured.meta", + "weight": 4864, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicinalProductManufactured.implicitRules", + "weight": 4865, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicinalProductManufactured.language", + "weight": 4866, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicinalProductManufactured.text", + "weight": 4867, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicinalProductManufactured.contained", + "weight": 4868, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicinalProductManufactured.extension", + "weight": 4869, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductManufactured.modifierExtension", + "weight": 4870, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProductManufactured.manufacturedDoseForm", + "weight": 4871, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductManufactured.unitOfPresentation", + "weight": 4872, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicinalProductManufactured.quantity", + "weight": 4873, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicinalProductManufactured.manufacturer", + "weight": 4874, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductManufactured.ingredient", + "weight": 4875, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductManufactured.physicalCharacteristics", + "weight": 4876, + "max": "1", + "type": "ProdCharacteristic" + }, + { + "min": 0, + "path": "MedicinalProductManufactured.otherCharacteristics", + "weight": 4877, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductPackaged", + "weight": 4878, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.id", + "weight": 4879, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.meta", + "weight": 4880, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.implicitRules", + "weight": 4881, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.language", + "weight": 4882, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.text", + "weight": 4883, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.contained", + "weight": 4884, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.extension", + "weight": 4885, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.modifierExtension", + "weight": 4886, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.identifier", + "weight": 4887, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.subject", + "weight": 4888, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.description", + "weight": 4889, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.legalStatusOfSupply", + "weight": 4890, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.marketingStatus", + "weight": 4891, + "max": "*", + "type": "MarketingStatus" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.marketingAuthorization", + "weight": 4892, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.manufacturer", + "weight": 4893, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.batchIdentifier", + "weight": 4894, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.batchIdentifier.id", + "weight": 4895, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.batchIdentifier.extension", + "weight": 4896, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.batchIdentifier.modifierExtension", + "weight": 4897, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProductPackaged.batchIdentifier.outerPackaging", + "weight": 4898, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.batchIdentifier.immediatePackaging", + "weight": 4899, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "MedicinalProductPackaged.packageItem", + "weight": 4900, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.packageItem.id", + "weight": 4901, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.packageItem.extension", + "weight": 4902, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.packageItem.modifierExtension", + "weight": 4903, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.packageItem.identifier", + "weight": 4904, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "MedicinalProductPackaged.packageItem.type", + "weight": 4905, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicinalProductPackaged.packageItem.quantity", + "weight": 4906, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.packageItem.material", + "weight": 4907, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.packageItem.alternateMaterial", + "weight": 4908, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.packageItem.device", + "weight": 4909, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.packageItem.manufacturedItem", + "weight": 4910, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.packageItem.packageItem", + "weight": 4911, + "max": "*" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.packageItem.physicalCharacteristics", + "weight": 4912, + "max": "1", + "type": "ProdCharacteristic" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.packageItem.otherCharacteristics", + "weight": 4913, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.packageItem.shelfLifeStorage", + "weight": 4914, + "max": "*", + "type": "ProductShelfLife" + }, + { + "min": 0, + "path": "MedicinalProductPackaged.packageItem.manufacturer", + "weight": 4915, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical", + "weight": 4916, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.id", + "weight": 4917, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.meta", + "weight": 4918, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.implicitRules", + "weight": 4919, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.language", + "weight": 4920, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.text", + "weight": 4921, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.contained", + "weight": 4922, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.extension", + "weight": 4923, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.modifierExtension", + "weight": 4924, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.identifier", + "weight": 4925, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "MedicinalProductPharmaceutical.administrableDoseForm", + "weight": 4926, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.unitOfPresentation", + "weight": 4927, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.ingredient", + "weight": 4928, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.device", + "weight": 4929, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.characteristics", + "weight": 4930, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.characteristics.id", + "weight": 4931, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.characteristics.extension", + "weight": 4932, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.characteristics.modifierExtension", + "weight": 4933, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProductPharmaceutical.characteristics.code", + "weight": 4934, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.characteristics.status", + "weight": 4935, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicinalProductPharmaceutical.routeOfAdministration", + "weight": 4936, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.id", + "weight": 4937, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.extension", + "weight": 4938, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.modifierExtension", + "weight": 4939, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.code", + "weight": 4940, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.firstDose", + "weight": 4941, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.maxSingleDose", + "weight": 4942, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.maxDosePerDay", + "weight": 4943, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.maxDosePerTreatmentPeriod", + "weight": 4944, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.maxTreatmentPeriod", + "weight": 4945, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies", + "weight": 4946, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.id", + "weight": 4947, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.extension", + "weight": 4948, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.modifierExtension", + "weight": 4949, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.code", + "weight": 4950, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.withdrawalPeriod", + "weight": 4951, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.withdrawalPeriod.id", + "weight": 4952, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.withdrawalPeriod.extension", + "weight": 4953, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.withdrawalPeriod.modifierExtension", + "weight": 4954, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.withdrawalPeriod.tissue", + "weight": 4955, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.withdrawalPeriod.value", + "weight": 4956, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.withdrawalPeriod.supportingInformation", + "weight": 4957, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect", + "weight": 4958, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect.id", + "weight": 4959, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect.meta", + "weight": 4960, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect.implicitRules", + "weight": 4961, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect.language", + "weight": 4962, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect.text", + "weight": 4963, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect.contained", + "weight": 4964, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect.extension", + "weight": 4965, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect.modifierExtension", + "weight": 4966, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect.subject", + "weight": 4967, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect.symptomConditionEffect", + "weight": 4968, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect.classification", + "weight": 4969, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect.frequencyOfOccurrence", + "weight": 4970, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MedicinalProductUndesirableEffect.population", + "weight": 4971, + "max": "*", + "type": "Population" + }, + { + "min": 0, + "path": "MessageDefinition", + "weight": 4972, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MessageDefinition.id", + "weight": 4973, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MessageDefinition.meta", + "weight": 4974, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MessageDefinition.implicitRules", + "weight": 4975, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MessageDefinition.language", + "weight": 4976, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MessageDefinition.text", + "weight": 4977, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MessageDefinition.contained", + "weight": 4978, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MessageDefinition.extension", + "weight": 4979, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MessageDefinition.modifierExtension", + "weight": 4980, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MessageDefinition.url", + "weight": 4981, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MessageDefinition.identifier", + "weight": 4982, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "MessageDefinition.version", + "weight": 4983, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MessageDefinition.name", + "weight": 4984, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MessageDefinition.title", + "weight": 4985, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MessageDefinition.replaces", + "weight": 4986, + "max": "*", + "type": "canonical" + }, + { + "min": 1, + "path": "MessageDefinition.status", + "weight": 4987, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MessageDefinition.experimental", + "weight": 4988, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "MessageDefinition.date", + "weight": 4989, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MessageDefinition.publisher", + "weight": 4990, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MessageDefinition.contact", + "weight": 4991, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "MessageDefinition.description", + "weight": 4992, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "MessageDefinition.useContext", + "weight": 4993, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "MessageDefinition.jurisdiction", + "weight": 4994, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MessageDefinition.purpose", + "weight": 4995, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "MessageDefinition.copyright", + "weight": 4996, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "MessageDefinition.base", + "weight": 4997, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "MessageDefinition.parent", + "weight": 4998, + "max": "*", + "type": "canonical" + }, + { + "min": 1, + "path": "MessageDefinition.eventCoding", + "weight": 4999, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "MessageDefinition.eventUri", + "weight": 4999, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MessageDefinition.category", + "weight": 5000, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MessageDefinition.focus", + "weight": 5001, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MessageDefinition.focus.id", + "weight": 5002, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MessageDefinition.focus.extension", + "weight": 5003, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MessageDefinition.focus.modifierExtension", + "weight": 5004, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MessageDefinition.focus.code", + "weight": 5005, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MessageDefinition.focus.profile", + "weight": 5006, + "max": "1", + "type": "canonical" + }, + { + "min": 1, + "path": "MessageDefinition.focus.min", + "weight": 5007, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "MessageDefinition.focus.max", + "weight": 5008, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MessageDefinition.responseRequired", + "weight": 5009, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MessageDefinition.allowedResponse", + "weight": 5010, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MessageDefinition.allowedResponse.id", + "weight": 5011, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MessageDefinition.allowedResponse.extension", + "weight": 5012, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MessageDefinition.allowedResponse.modifierExtension", + "weight": 5013, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MessageDefinition.allowedResponse.message", + "weight": 5014, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "MessageDefinition.allowedResponse.situation", + "weight": 5015, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "MessageDefinition.graph", + "weight": 5016, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "MessageHeader", + "weight": 5017, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MessageHeader.id", + "weight": 5018, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MessageHeader.meta", + "weight": 5019, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MessageHeader.implicitRules", + "weight": 5020, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MessageHeader.language", + "weight": 5021, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MessageHeader.text", + "weight": 5022, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MessageHeader.contained", + "weight": 5023, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MessageHeader.extension", + "weight": 5024, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MessageHeader.modifierExtension", + "weight": 5025, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MessageHeader.eventCoding", + "weight": 5026, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "MessageHeader.eventUri", + "weight": 5026, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MessageHeader.destination", + "weight": 5027, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MessageHeader.destination.id", + "weight": 5028, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MessageHeader.destination.extension", + "weight": 5029, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MessageHeader.destination.modifierExtension", + "weight": 5030, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MessageHeader.destination.name", + "weight": 5031, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MessageHeader.destination.target", + "weight": 5032, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "MessageHeader.destination.endpoint", + "weight": 5033, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "MessageHeader.destination.receiver", + "weight": 5034, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MessageHeader.sender", + "weight": 5035, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MessageHeader.enterer", + "weight": 5036, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MessageHeader.author", + "weight": 5037, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "MessageHeader.source", + "weight": 5038, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MessageHeader.source.id", + "weight": 5039, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MessageHeader.source.extension", + "weight": 5040, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MessageHeader.source.modifierExtension", + "weight": 5041, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MessageHeader.source.name", + "weight": 5042, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MessageHeader.source.software", + "weight": 5043, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MessageHeader.source.version", + "weight": 5044, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MessageHeader.source.contact", + "weight": 5045, + "max": "1", + "type": "ContactPoint" + }, + { + "min": 1, + "path": "MessageHeader.source.endpoint", + "weight": 5046, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "MessageHeader.responsible", + "weight": 5047, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MessageHeader.reason", + "weight": 5048, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MessageHeader.response", + "weight": 5049, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MessageHeader.response.id", + "weight": 5050, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MessageHeader.response.extension", + "weight": 5051, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MessageHeader.response.modifierExtension", + "weight": 5052, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MessageHeader.response.identifier", + "weight": 5053, + "max": "1", + "type": "id" + }, + { + "min": 1, + "path": "MessageHeader.response.code", + "weight": 5054, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MessageHeader.response.details", + "weight": 5055, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MessageHeader.focus", + "weight": 5056, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MessageHeader.definition", + "weight": 5057, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "MolecularSequence", + "weight": 5058, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MolecularSequence.id", + "weight": 5059, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MolecularSequence.meta", + "weight": 5060, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MolecularSequence.implicitRules", + "weight": 5061, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MolecularSequence.language", + "weight": 5062, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MolecularSequence.text", + "weight": 5063, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MolecularSequence.contained", + "weight": 5064, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MolecularSequence.extension", + "weight": 5065, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.modifierExtension", + "weight": 5066, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.identifier", + "weight": 5067, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "MolecularSequence.type", + "weight": 5068, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "MolecularSequence.coordinateSystem", + "weight": 5069, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.patient", + "weight": 5070, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MolecularSequence.specimen", + "weight": 5071, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MolecularSequence.device", + "weight": 5072, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MolecularSequence.performer", + "weight": 5073, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MolecularSequence.quantity", + "weight": 5074, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MolecularSequence.referenceSeq", + "weight": 5075, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MolecularSequence.referenceSeq.id", + "weight": 5076, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MolecularSequence.referenceSeq.extension", + "weight": 5077, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.referenceSeq.modifierExtension", + "weight": 5078, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.referenceSeq.chromosome", + "weight": 5079, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MolecularSequence.referenceSeq.genomeBuild", + "weight": 5080, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MolecularSequence.referenceSeq.orientation", + "weight": 5081, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MolecularSequence.referenceSeq.referenceSeqId", + "weight": 5082, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MolecularSequence.referenceSeq.referenceSeqPointer", + "weight": 5083, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MolecularSequence.referenceSeq.referenceSeqString", + "weight": 5084, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MolecularSequence.referenceSeq.strand", + "weight": 5085, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MolecularSequence.referenceSeq.windowStart", + "weight": 5086, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.referenceSeq.windowEnd", + "weight": 5087, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.variant", + "weight": 5088, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MolecularSequence.variant.id", + "weight": 5089, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MolecularSequence.variant.extension", + "weight": 5090, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.variant.modifierExtension", + "weight": 5091, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.variant.start", + "weight": 5092, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.variant.end", + "weight": 5093, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.variant.observedAllele", + "weight": 5094, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MolecularSequence.variant.referenceAllele", + "weight": 5095, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MolecularSequence.variant.cigar", + "weight": 5096, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MolecularSequence.variant.variantPointer", + "weight": 5097, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "MolecularSequence.observedSeq", + "weight": 5098, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MolecularSequence.quality", + "weight": 5099, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MolecularSequence.quality.id", + "weight": 5100, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MolecularSequence.quality.extension", + "weight": 5101, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.quality.modifierExtension", + "weight": 5102, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MolecularSequence.quality.type", + "weight": 5103, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MolecularSequence.quality.standardSequence", + "weight": 5104, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MolecularSequence.quality.start", + "weight": 5105, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.quality.end", + "weight": 5106, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.quality.score", + "weight": 5107, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "MolecularSequence.quality.method", + "weight": 5108, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MolecularSequence.quality.truthTP", + "weight": 5109, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "MolecularSequence.quality.queryTP", + "weight": 5110, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "MolecularSequence.quality.truthFN", + "weight": 5111, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "MolecularSequence.quality.queryFP", + "weight": 5112, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "MolecularSequence.quality.gtFP", + "weight": 5113, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "MolecularSequence.quality.precision", + "weight": 5114, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "MolecularSequence.quality.recall", + "weight": 5115, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "MolecularSequence.quality.fScore", + "weight": 5116, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "MolecularSequence.quality.roc", + "weight": 5117, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MolecularSequence.quality.roc.id", + "weight": 5118, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MolecularSequence.quality.roc.extension", + "weight": 5119, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.quality.roc.modifierExtension", + "weight": 5120, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.quality.roc.score", + "weight": 5121, + "max": "*", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.quality.roc.numTP", + "weight": 5122, + "max": "*", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.quality.roc.numFP", + "weight": 5123, + "max": "*", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.quality.roc.numFN", + "weight": 5124, + "max": "*", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.quality.roc.precision", + "weight": 5125, + "max": "*", + "type": "decimal" + }, + { + "min": 0, + "path": "MolecularSequence.quality.roc.sensitivity", + "weight": 5126, + "max": "*", + "type": "decimal" + }, + { + "min": 0, + "path": "MolecularSequence.quality.roc.fMeasure", + "weight": 5127, + "max": "*", + "type": "decimal" + }, + { + "min": 0, + "path": "MolecularSequence.readCoverage", + "weight": 5128, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.repository", + "weight": 5129, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MolecularSequence.repository.id", + "weight": 5130, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MolecularSequence.repository.extension", + "weight": 5131, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.repository.modifierExtension", + "weight": 5132, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "MolecularSequence.repository.type", + "weight": 5133, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MolecularSequence.repository.url", + "weight": 5134, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MolecularSequence.repository.name", + "weight": 5135, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MolecularSequence.repository.datasetId", + "weight": 5136, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MolecularSequence.repository.variantsetId", + "weight": 5137, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MolecularSequence.repository.readsetId", + "weight": 5138, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MolecularSequence.pointer", + "weight": 5139, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant", + "weight": 5140, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.id", + "weight": 5141, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.extension", + "weight": 5142, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.modifierExtension", + "weight": 5143, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.variantType", + "weight": 5144, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.exact", + "weight": 5145, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.length", + "weight": 5146, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.outer", + "weight": 5147, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.outer.id", + "weight": 5148, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.outer.extension", + "weight": 5149, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.outer.modifierExtension", + "weight": 5150, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.outer.start", + "weight": 5151, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.outer.end", + "weight": 5152, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.inner", + "weight": 5153, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.inner.id", + "weight": 5154, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.inner.extension", + "weight": 5155, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.inner.modifierExtension", + "weight": 5156, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.inner.start", + "weight": 5157, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "MolecularSequence.structureVariant.inner.end", + "weight": 5158, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "NamingSystem", + "weight": 5159, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "NamingSystem.id", + "weight": 5160, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "NamingSystem.meta", + "weight": 5161, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "NamingSystem.implicitRules", + "weight": 5162, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "NamingSystem.language", + "weight": 5163, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "NamingSystem.text", + "weight": 5164, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "NamingSystem.contained", + "weight": 5165, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "NamingSystem.extension", + "weight": 5166, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NamingSystem.modifierExtension", + "weight": 5167, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "NamingSystem.name", + "weight": 5168, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "NamingSystem.status", + "weight": 5169, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "NamingSystem.kind", + "weight": 5170, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "NamingSystem.date", + "weight": 5171, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "NamingSystem.publisher", + "weight": 5172, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "NamingSystem.contact", + "weight": 5173, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "NamingSystem.responsible", + "weight": 5174, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "NamingSystem.type", + "weight": 5175, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "NamingSystem.description", + "weight": 5176, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "NamingSystem.useContext", + "weight": 5177, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "NamingSystem.jurisdiction", + "weight": 5178, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "NamingSystem.usage", + "weight": 5179, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "NamingSystem.uniqueId", + "weight": 5180, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "NamingSystem.uniqueId.id", + "weight": 5181, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "NamingSystem.uniqueId.extension", + "weight": 5182, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NamingSystem.uniqueId.modifierExtension", + "weight": 5183, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "NamingSystem.uniqueId.type", + "weight": 5184, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "NamingSystem.uniqueId.value", + "weight": 5185, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "NamingSystem.uniqueId.preferred", + "weight": 5186, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "NamingSystem.uniqueId.comment", + "weight": 5187, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "NamingSystem.uniqueId.period", + "weight": 5188, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "NutritionOrder", + "weight": 5189, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "NutritionOrder.id", + "weight": 5190, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "NutritionOrder.meta", + "weight": 5191, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "NutritionOrder.implicitRules", + "weight": 5192, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "NutritionOrder.language", + "weight": 5193, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "NutritionOrder.text", + "weight": 5194, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "NutritionOrder.contained", + "weight": 5195, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "NutritionOrder.extension", + "weight": 5196, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.modifierExtension", + "weight": 5197, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.identifier", + "weight": 5198, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "NutritionOrder.instantiatesCanonical", + "weight": 5199, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "NutritionOrder.instantiatesUri", + "weight": 5200, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "NutritionOrder.instantiates", + "weight": 5201, + "max": "*", + "type": "uri" + }, + { + "min": 1, + "path": "NutritionOrder.status", + "weight": 5202, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "NutritionOrder.intent", + "weight": 5203, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "NutritionOrder.patient", + "weight": 5204, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "NutritionOrder.encounter", + "weight": 5205, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "NutritionOrder.dateTime", + "weight": 5206, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "NutritionOrder.orderer", + "weight": 5207, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "NutritionOrder.allergyIntolerance", + "weight": 5208, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "NutritionOrder.foodPreferenceModifier", + "weight": 5209, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "NutritionOrder.excludeFoodModifier", + "weight": 5210, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet", + "weight": 5211, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.id", + "weight": 5212, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.extension", + "weight": 5213, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.modifierExtension", + "weight": 5214, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.type", + "weight": 5215, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.schedule", + "weight": 5216, + "max": "*", + "type": "Timing" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.nutrient", + "weight": 5217, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.nutrient.id", + "weight": 5218, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.nutrient.extension", + "weight": 5219, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.nutrient.modifierExtension", + "weight": 5220, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.nutrient.modifier", + "weight": 5221, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.nutrient.amount", + "weight": 5222, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.texture", + "weight": 5223, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.texture.id", + "weight": 5224, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.texture.extension", + "weight": 5225, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.texture.modifierExtension", + "weight": 5226, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.texture.modifier", + "weight": 5227, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.texture.foodType", + "weight": 5228, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.fluidConsistencyType", + "weight": 5229, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "NutritionOrder.oralDiet.instruction", + "weight": 5230, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "NutritionOrder.supplement", + "weight": 5231, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "NutritionOrder.supplement.id", + "weight": 5232, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "NutritionOrder.supplement.extension", + "weight": 5233, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.supplement.modifierExtension", + "weight": 5234, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.supplement.type", + "weight": 5235, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "NutritionOrder.supplement.productName", + "weight": 5236, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "NutritionOrder.supplement.schedule", + "weight": 5237, + "max": "*", + "type": "Timing" + }, + { + "min": 0, + "path": "NutritionOrder.supplement.quantity", + "weight": 5238, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "NutritionOrder.supplement.instruction", + "weight": 5239, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula", + "weight": 5240, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.id", + "weight": 5241, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.extension", + "weight": 5242, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.modifierExtension", + "weight": 5243, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.baseFormulaType", + "weight": 5244, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.baseFormulaProductName", + "weight": 5245, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.additiveType", + "weight": 5246, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.additiveProductName", + "weight": 5247, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.caloricDensity", + "weight": 5248, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.routeofAdministration", + "weight": 5249, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.administration", + "weight": 5250, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.administration.id", + "weight": 5251, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.administration.extension", + "weight": 5252, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.administration.modifierExtension", + "weight": 5253, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.administration.schedule", + "weight": 5254, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.administration.quantity", + "weight": 5255, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.administration.rateQuantity", + "weight": 5256, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.administration.rateRatio", + "weight": 5256, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.maxVolumeToDeliver", + "weight": 5257, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "NutritionOrder.enteralFormula.administrationInstruction", + "weight": 5258, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "NutritionOrder.note", + "weight": 5259, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Observation", + "weight": 5260, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Observation.id", + "weight": 5261, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Observation.meta", + "weight": 5262, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Observation.implicitRules", + "weight": 5263, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Observation.language", + "weight": 5264, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Observation.text", + "weight": 5265, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Observation.contained", + "weight": 5266, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Observation.extension", + "weight": 5267, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Observation.modifierExtension", + "weight": 5268, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Observation.identifier", + "weight": 5269, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Observation.basedOn", + "weight": 5270, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Observation.partOf", + "weight": 5271, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "Observation.status", + "weight": 5272, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Observation.category", + "weight": 5273, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Observation.code", + "weight": 5274, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Observation.subject", + "weight": 5275, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Observation.focus", + "weight": 5276, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Observation.encounter", + "weight": 5277, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Observation.effectiveDateTime", + "weight": 5278, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Observation.effectivePeriod", + "weight": 5278, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Observation.effectiveTiming", + "weight": 5278, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "Observation.effectiveInstant", + "weight": 5278, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "Observation.issued", + "weight": 5279, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "Observation.performer", + "weight": 5280, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Observation.valueQuantity", + "weight": 5281, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Observation.valueCodeableConcept", + "weight": 5281, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Observation.valueString", + "weight": 5281, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Observation.valueBoolean", + "weight": 5281, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Observation.valueInteger", + "weight": 5281, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "Observation.valueRange", + "weight": 5281, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "Observation.valueRatio", + "weight": 5281, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "Observation.valueSampledData", + "weight": 5281, + "max": "1", + "type": "SampledData" + }, + { + "min": 0, + "path": "Observation.valueTime", + "weight": 5281, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "Observation.valueDateTime", + "weight": 5281, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Observation.valuePeriod", + "weight": 5281, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Observation.dataAbsentReason", + "weight": 5282, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Observation.interpretation", + "weight": 5283, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Observation.note", + "weight": 5284, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Observation.bodySite", + "weight": 5285, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Observation.method", + "weight": 5286, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Observation.specimen", + "weight": 5287, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Observation.device", + "weight": 5288, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Observation.referenceRange", + "weight": 5289, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Observation.referenceRange.id", + "weight": 5290, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Observation.referenceRange.extension", + "weight": 5291, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Observation.referenceRange.modifierExtension", + "weight": 5292, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Observation.referenceRange.low", + "weight": 5293, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Observation.referenceRange.high", + "weight": 5294, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Observation.referenceRange.type", + "weight": 5295, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Observation.referenceRange.appliesTo", + "weight": 5296, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Observation.referenceRange.age", + "weight": 5297, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "Observation.referenceRange.text", + "weight": 5298, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Observation.hasMember", + "weight": 5299, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Observation.derivedFrom", + "weight": 5300, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Observation.component", + "weight": 5301, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Observation.component.id", + "weight": 5302, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Observation.component.extension", + "weight": 5303, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Observation.component.modifierExtension", + "weight": 5304, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Observation.component.code", + "weight": 5305, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Observation.component.valueQuantity", + "weight": 5306, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Observation.component.valueCodeableConcept", + "weight": 5306, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Observation.component.valueString", + "weight": 5306, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Observation.component.valueBoolean", + "weight": 5306, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Observation.component.valueInteger", + "weight": 5306, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "Observation.component.valueRange", + "weight": 5306, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "Observation.component.valueRatio", + "weight": 5306, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "Observation.component.valueSampledData", + "weight": 5306, + "max": "1", + "type": "SampledData" + }, + { + "min": 0, + "path": "Observation.component.valueTime", + "weight": 5306, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "Observation.component.valueDateTime", + "weight": 5306, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Observation.component.valuePeriod", + "weight": 5306, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Observation.component.dataAbsentReason", + "weight": 5307, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Observation.component.interpretation", + "weight": 5308, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Observation.component.referenceRange", + "weight": 5309, + "max": "*" + }, + { + "min": 0, + "path": "ObservationDefinition", + "weight": 5310, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ObservationDefinition.id", + "weight": 5311, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ObservationDefinition.meta", + "weight": 5312, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ObservationDefinition.implicitRules", + "weight": 5313, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ObservationDefinition.language", + "weight": 5314, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ObservationDefinition.text", + "weight": 5315, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ObservationDefinition.contained", + "weight": 5316, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ObservationDefinition.extension", + "weight": 5317, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ObservationDefinition.modifierExtension", + "weight": 5318, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ObservationDefinition.category", + "weight": 5319, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ObservationDefinition.code", + "weight": 5320, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ObservationDefinition.identifier", + "weight": 5321, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "ObservationDefinition.permittedDataType", + "weight": 5322, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "ObservationDefinition.multipleResultsAllowed", + "weight": 5323, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ObservationDefinition.method", + "weight": 5324, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ObservationDefinition.preferredReportName", + "weight": 5325, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ObservationDefinition.quantitativeDetails", + "weight": 5326, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ObservationDefinition.quantitativeDetails.id", + "weight": 5327, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ObservationDefinition.quantitativeDetails.extension", + "weight": 5328, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ObservationDefinition.quantitativeDetails.modifierExtension", + "weight": 5329, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ObservationDefinition.quantitativeDetails.customaryUnit", + "weight": 5330, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ObservationDefinition.quantitativeDetails.unit", + "weight": 5331, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ObservationDefinition.quantitativeDetails.conversionFactor", + "weight": 5332, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ObservationDefinition.quantitativeDetails.decimalPrecision", + "weight": 5333, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "ObservationDefinition.qualifiedInterval", + "weight": 5334, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ObservationDefinition.qualifiedInterval.id", + "weight": 5335, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ObservationDefinition.qualifiedInterval.extension", + "weight": 5336, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ObservationDefinition.qualifiedInterval.modifierExtension", + "weight": 5337, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ObservationDefinition.qualifiedInterval.category", + "weight": 5338, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ObservationDefinition.qualifiedInterval.range", + "weight": 5339, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "ObservationDefinition.qualifiedInterval.context", + "weight": 5340, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ObservationDefinition.qualifiedInterval.appliesTo", + "weight": 5341, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ObservationDefinition.qualifiedInterval.gender", + "weight": 5342, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ObservationDefinition.qualifiedInterval.age", + "weight": 5343, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "ObservationDefinition.qualifiedInterval.gestationalAge", + "weight": 5344, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "ObservationDefinition.qualifiedInterval.condition", + "weight": 5345, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ObservationDefinition.validCodedValueSet", + "weight": 5346, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ObservationDefinition.normalCodedValueSet", + "weight": 5347, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ObservationDefinition.abnormalCodedValueSet", + "weight": 5348, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ObservationDefinition.criticalCodedValueSet", + "weight": 5349, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "OperationDefinition", + "weight": 5350, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "OperationDefinition.id", + "weight": 5351, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "OperationDefinition.meta", + "weight": 5352, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "OperationDefinition.implicitRules", + "weight": 5353, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "OperationDefinition.language", + "weight": 5354, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "OperationDefinition.text", + "weight": 5355, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "OperationDefinition.contained", + "weight": 5356, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "OperationDefinition.extension", + "weight": 5357, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "OperationDefinition.modifierExtension", + "weight": 5358, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "OperationDefinition.url", + "weight": 5359, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "OperationDefinition.version", + "weight": 5360, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "OperationDefinition.name", + "weight": 5361, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "OperationDefinition.title", + "weight": 5362, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "OperationDefinition.status", + "weight": 5363, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "OperationDefinition.kind", + "weight": 5364, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "OperationDefinition.experimental", + "weight": 5365, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "OperationDefinition.date", + "weight": 5366, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "OperationDefinition.publisher", + "weight": 5367, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "OperationDefinition.contact", + "weight": 5368, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "OperationDefinition.description", + "weight": 5369, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "OperationDefinition.useContext", + "weight": 5370, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "OperationDefinition.jurisdiction", + "weight": 5371, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "OperationDefinition.purpose", + "weight": 5372, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "OperationDefinition.affectsState", + "weight": 5373, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "OperationDefinition.code", + "weight": 5374, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "OperationDefinition.comment", + "weight": 5375, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "OperationDefinition.base", + "weight": 5376, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "OperationDefinition.resource", + "weight": 5377, + "max": "*", + "type": "code" + }, + { + "min": 1, + "path": "OperationDefinition.system", + "weight": 5378, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "OperationDefinition.type", + "weight": 5379, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "OperationDefinition.instance", + "weight": 5380, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "OperationDefinition.inputProfile", + "weight": 5381, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "OperationDefinition.outputProfile", + "weight": 5382, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "OperationDefinition.parameter", + "weight": 5383, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.id", + "weight": 5384, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.extension", + "weight": 5385, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.modifierExtension", + "weight": 5386, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "OperationDefinition.parameter.name", + "weight": 5387, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "OperationDefinition.parameter.use", + "weight": 5388, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "OperationDefinition.parameter.min", + "weight": 5389, + "max": "1", + "type": "integer" + }, + { + "min": 1, + "path": "OperationDefinition.parameter.max", + "weight": 5390, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.documentation", + "weight": 5391, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.type", + "weight": 5392, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.targetProfile", + "weight": 5393, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.searchType", + "weight": 5394, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.binding", + "weight": 5395, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.binding.id", + "weight": 5396, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.binding.extension", + "weight": 5397, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.binding.modifierExtension", + "weight": 5398, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "OperationDefinition.parameter.binding.strength", + "weight": 5399, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "OperationDefinition.parameter.binding.valueSet", + "weight": 5400, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.referencedFrom", + "weight": 5401, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.referencedFrom.id", + "weight": 5402, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.referencedFrom.extension", + "weight": 5403, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.referencedFrom.modifierExtension", + "weight": 5404, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "OperationDefinition.parameter.referencedFrom.source", + "weight": 5405, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.referencedFrom.sourceId", + "weight": 5406, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "OperationDefinition.parameter.part", + "weight": 5407, + "max": "*" + }, + { + "min": 0, + "path": "OperationDefinition.overload", + "weight": 5408, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "OperationDefinition.overload.id", + "weight": 5409, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "OperationDefinition.overload.extension", + "weight": 5410, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "OperationDefinition.overload.modifierExtension", + "weight": 5411, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "OperationDefinition.overload.parameterName", + "weight": 5412, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "OperationDefinition.overload.comment", + "weight": 5413, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "OperationOutcome", + "weight": 5414, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "OperationOutcome.id", + "weight": 5415, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "OperationOutcome.meta", + "weight": 5416, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "OperationOutcome.implicitRules", + "weight": 5417, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "OperationOutcome.language", + "weight": 5418, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "OperationOutcome.text", + "weight": 5419, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "OperationOutcome.contained", + "weight": 5420, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "OperationOutcome.extension", + "weight": 5421, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "OperationOutcome.modifierExtension", + "weight": 5422, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "OperationOutcome.issue", + "weight": 5423, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "OperationOutcome.issue.id", + "weight": 5424, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "OperationOutcome.issue.extension", + "weight": 5425, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "OperationOutcome.issue.modifierExtension", + "weight": 5426, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "OperationOutcome.issue.severity", + "weight": 5427, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "OperationOutcome.issue.code", + "weight": 5428, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "OperationOutcome.issue.details", + "weight": 5429, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "OperationOutcome.issue.diagnostics", + "weight": 5430, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "OperationOutcome.issue.location", + "weight": 5431, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "OperationOutcome.issue.expression", + "weight": 5432, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Organization", + "weight": 5433, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Organization.id", + "weight": 5434, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Organization.meta", + "weight": 5435, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Organization.implicitRules", + "weight": 5436, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Organization.language", + "weight": 5437, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Organization.text", + "weight": 5438, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Organization.contained", + "weight": 5439, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Organization.extension", + "weight": 5440, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Organization.modifierExtension", + "weight": 5441, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Organization.identifier", + "weight": 5442, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Organization.active", + "weight": 5443, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Organization.type", + "weight": 5444, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Organization.name", + "weight": 5445, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Organization.alias", + "weight": 5446, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Organization.telecom", + "weight": 5447, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "Organization.address", + "weight": 5448, + "max": "*", + "type": "Address" + }, + { + "min": 0, + "path": "Organization.partOf", + "weight": 5449, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Organization.contact", + "weight": 5450, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Organization.contact.id", + "weight": 5451, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Organization.contact.extension", + "weight": 5452, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Organization.contact.modifierExtension", + "weight": 5453, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Organization.contact.purpose", + "weight": 5454, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Organization.contact.name", + "weight": 5455, + "max": "1", + "type": "HumanName" + }, + { + "min": 0, + "path": "Organization.contact.telecom", + "weight": 5456, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "Organization.contact.address", + "weight": 5457, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "Organization.endpoint", + "weight": 5458, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "OrganizationAffiliation", + "weight": 5459, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "OrganizationAffiliation.id", + "weight": 5460, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "OrganizationAffiliation.meta", + "weight": 5461, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "OrganizationAffiliation.implicitRules", + "weight": 5462, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "OrganizationAffiliation.language", + "weight": 5463, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "OrganizationAffiliation.text", + "weight": 5464, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "OrganizationAffiliation.contained", + "weight": 5465, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "OrganizationAffiliation.extension", + "weight": 5466, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "OrganizationAffiliation.modifierExtension", + "weight": 5467, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "OrganizationAffiliation.identifier", + "weight": 5468, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "OrganizationAffiliation.active", + "weight": 5469, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "OrganizationAffiliation.period", + "weight": 5470, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "OrganizationAffiliation.organization", + "weight": 5471, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "OrganizationAffiliation.participatingOrganization", + "weight": 5472, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "OrganizationAffiliation.network", + "weight": 5473, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "OrganizationAffiliation.code", + "weight": 5474, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "OrganizationAffiliation.specialty", + "weight": 5475, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "OrganizationAffiliation.location", + "weight": 5476, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "OrganizationAffiliation.healthcareService", + "weight": 5477, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "OrganizationAffiliation.telecom", + "weight": 5478, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "OrganizationAffiliation.endpoint", + "weight": 5479, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Parameters", + "weight": 5480, + "max": "*", + "kind": "resource", + "type": "Resource" + }, + { + "min": 0, + "path": "Parameters.id", + "weight": 5481, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Parameters.meta", + "weight": 5482, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Parameters.implicitRules", + "weight": 5483, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Parameters.language", + "weight": 5484, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Parameters.parameter", + "weight": 5485, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Parameters.parameter.id", + "weight": 5486, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Parameters.parameter.extension", + "weight": 5487, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Parameters.parameter.modifierExtension", + "weight": 5488, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Parameters.parameter.name", + "weight": 5489, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Parameters.parameter.valueBase64Binary", + "weight": 5490, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "Parameters.parameter.valueBoolean", + "weight": 5490, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Parameters.parameter.valueCanonical", + "weight": 5490, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "Parameters.parameter.valueCode", + "weight": 5490, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Parameters.parameter.valueDate", + "weight": 5490, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Parameters.parameter.valueDateTime", + "weight": 5490, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Parameters.parameter.valueDecimal", + "weight": 5490, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "Parameters.parameter.valueId", + "weight": 5490, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "Parameters.parameter.valueInstant", + "weight": 5490, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "Parameters.parameter.valueInteger", + "weight": 5490, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "Parameters.parameter.valueMarkdown", + "weight": 5490, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Parameters.parameter.valueOid", + "weight": 5490, + "max": "1", + "type": "oid" + }, + { + "min": 0, + "path": "Parameters.parameter.valuePositiveInt", + "weight": 5490, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Parameters.parameter.valueString", + "weight": 5490, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Parameters.parameter.valueTime", + "weight": 5490, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "Parameters.parameter.valueUnsignedInt", + "weight": 5490, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "Parameters.parameter.valueUri", + "weight": 5490, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Parameters.parameter.valueUrl", + "weight": 5490, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "Parameters.parameter.valueUuid", + "weight": 5490, + "max": "1", + "type": "uuid" + }, + { + "min": 0, + "path": "Parameters.parameter.valueAddress", + "weight": 5490, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "Parameters.parameter.valueAge", + "weight": 5490, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "Parameters.parameter.valueAnnotation", + "weight": 5490, + "max": "1", + "type": "Annotation" + }, + { + "min": 0, + "path": "Parameters.parameter.valueAttachment", + "weight": 5490, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "Parameters.parameter.valueCodeableConcept", + "weight": 5490, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Parameters.parameter.valueCoding", + "weight": 5490, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "Parameters.parameter.valueContactPoint", + "weight": 5490, + "max": "1", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "Parameters.parameter.valueCount", + "weight": 5490, + "max": "1", + "type": "Count" + }, + { + "min": 0, + "path": "Parameters.parameter.valueDistance", + "weight": 5490, + "max": "1", + "type": "Distance" + }, + { + "min": 0, + "path": "Parameters.parameter.valueDuration", + "weight": 5490, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "Parameters.parameter.valueHumanName", + "weight": 5490, + "max": "1", + "type": "HumanName" + }, + { + "min": 0, + "path": "Parameters.parameter.valueIdentifier", + "weight": 5490, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "Parameters.parameter.valueMoney", + "weight": 5490, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "Parameters.parameter.valuePeriod", + "weight": 5490, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Parameters.parameter.valueQuantity", + "weight": 5490, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Parameters.parameter.valueRange", + "weight": 5490, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "Parameters.parameter.valueRatio", + "weight": 5490, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "Parameters.parameter.valueReference", + "weight": 5490, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Parameters.parameter.valueSampledData", + "weight": 5490, + "max": "1", + "type": "SampledData" + }, + { + "min": 0, + "path": "Parameters.parameter.valueSignature", + "weight": 5490, + "max": "1", + "type": "Signature" + }, + { + "min": 0, + "path": "Parameters.parameter.valueTiming", + "weight": 5490, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "Parameters.parameter.valueContactDetail", + "weight": 5490, + "max": "1", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Parameters.parameter.valueContributor", + "weight": 5490, + "max": "1", + "type": "Contributor" + }, + { + "min": 0, + "path": "Parameters.parameter.valueDataRequirement", + "weight": 5490, + "max": "1", + "type": "DataRequirement" + }, + { + "min": 0, + "path": "Parameters.parameter.valueExpression", + "weight": 5490, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "Parameters.parameter.valueParameterDefinition", + "weight": 5490, + "max": "1", + "type": "ParameterDefinition" + }, + { + "min": 0, + "path": "Parameters.parameter.valueRelatedArtifact", + "weight": 5490, + "max": "1", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "Parameters.parameter.valueTriggerDefinition", + "weight": 5490, + "max": "1", + "type": "TriggerDefinition" + }, + { + "min": 0, + "path": "Parameters.parameter.valueUsageContext", + "weight": 5490, + "max": "1", + "type": "UsageContext" + }, + { + "min": 0, + "path": "Parameters.parameter.valueDosage", + "weight": 5490, + "max": "1", + "type": "Dosage" + }, + { + "min": 0, + "path": "Parameters.parameter.valueMeta", + "weight": 5490, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Parameters.parameter.resource", + "weight": 5491, + "max": "1", + "type": "Resource" + }, + { + "min": 0, + "path": "Parameters.parameter.part", + "weight": 5492, + "max": "*" + }, + { + "min": 0, + "path": "Patient", + "weight": 5493, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Patient.id", + "weight": 5494, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Patient.meta", + "weight": 5495, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Patient.implicitRules", + "weight": 5496, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Patient.language", + "weight": 5497, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Patient.text", + "weight": 5498, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Patient.contained", + "weight": 5499, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Patient.extension", + "weight": 5500, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Patient.modifierExtension", + "weight": 5501, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Patient.identifier", + "weight": 5502, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Patient.active", + "weight": 5503, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Patient.name", + "weight": 5504, + "max": "*", + "type": "HumanName" + }, + { + "min": 0, + "path": "Patient.telecom", + "weight": 5505, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "Patient.gender", + "weight": 5506, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Patient.birthDate", + "weight": 5507, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Patient.deceasedBoolean", + "weight": 5508, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Patient.deceasedDateTime", + "weight": 5508, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Patient.address", + "weight": 5509, + "max": "*", + "type": "Address" + }, + { + "min": 0, + "path": "Patient.maritalStatus", + "weight": 5510, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Patient.multipleBirthBoolean", + "weight": 5511, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Patient.multipleBirthInteger", + "weight": 5511, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "Patient.photo", + "weight": 5512, + "max": "*", + "type": "Attachment" + }, + { + "min": 0, + "path": "Patient.contact", + "weight": 5513, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Patient.contact.id", + "weight": 5514, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Patient.contact.extension", + "weight": 5515, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Patient.contact.modifierExtension", + "weight": 5516, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Patient.contact.relationship", + "weight": 5517, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Patient.contact.name", + "weight": 5518, + "max": "1", + "type": "HumanName" + }, + { + "min": 0, + "path": "Patient.contact.telecom", + "weight": 5519, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "Patient.contact.address", + "weight": 5520, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "Patient.contact.gender", + "weight": 5521, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Patient.contact.organization", + "weight": 5522, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Patient.contact.period", + "weight": 5523, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Patient.communication", + "weight": 5524, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Patient.communication.id", + "weight": 5525, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Patient.communication.extension", + "weight": 5526, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Patient.communication.modifierExtension", + "weight": 5527, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Patient.communication.language", + "weight": 5528, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Patient.communication.preferred", + "weight": 5529, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Patient.generalPractitioner", + "weight": 5530, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Patient.managingOrganization", + "weight": 5531, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Patient.link", + "weight": 5532, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Patient.link.id", + "weight": 5533, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Patient.link.extension", + "weight": 5534, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Patient.link.modifierExtension", + "weight": 5535, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Patient.link.other", + "weight": 5536, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "Patient.link.type", + "weight": 5537, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PaymentNotice", + "weight": 5538, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "PaymentNotice.id", + "weight": 5539, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PaymentNotice.meta", + "weight": 5540, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "PaymentNotice.implicitRules", + "weight": 5541, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "PaymentNotice.language", + "weight": 5542, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PaymentNotice.text", + "weight": 5543, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "PaymentNotice.contained", + "weight": 5544, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "PaymentNotice.extension", + "weight": 5545, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PaymentNotice.modifierExtension", + "weight": 5546, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PaymentNotice.identifier", + "weight": 5547, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "PaymentNotice.status", + "weight": 5548, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PaymentNotice.request", + "weight": 5549, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PaymentNotice.response", + "weight": 5550, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "PaymentNotice.created", + "weight": 5551, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "PaymentNotice.provider", + "weight": 5552, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "PaymentNotice.payment", + "weight": 5553, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PaymentNotice.paymentDate", + "weight": 5554, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "PaymentNotice.payee", + "weight": 5555, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "PaymentNotice.recipient", + "weight": 5556, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "PaymentNotice.amount", + "weight": 5557, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "PaymentNotice.paymentStatus", + "weight": 5558, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PaymentReconciliation", + "weight": 5559, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "PaymentReconciliation.id", + "weight": 5560, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PaymentReconciliation.meta", + "weight": 5561, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "PaymentReconciliation.implicitRules", + "weight": 5562, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "PaymentReconciliation.language", + "weight": 5563, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PaymentReconciliation.text", + "weight": 5564, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "PaymentReconciliation.contained", + "weight": 5565, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "PaymentReconciliation.extension", + "weight": 5566, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PaymentReconciliation.modifierExtension", + "weight": 5567, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PaymentReconciliation.identifier", + "weight": 5568, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "PaymentReconciliation.status", + "weight": 5569, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PaymentReconciliation.period", + "weight": 5570, + "max": "1", + "type": "Period" + }, + { + "min": 1, + "path": "PaymentReconciliation.created", + "weight": 5571, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "PaymentReconciliation.paymentIssuer", + "weight": 5572, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PaymentReconciliation.request", + "weight": 5573, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PaymentReconciliation.requestor", + "weight": 5574, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PaymentReconciliation.outcome", + "weight": 5575, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PaymentReconciliation.disposition", + "weight": 5576, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "PaymentReconciliation.paymentDate", + "weight": 5577, + "max": "1", + "type": "date" + }, + { + "min": 1, + "path": "PaymentReconciliation.paymentAmount", + "weight": 5578, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "PaymentReconciliation.paymentIdentifier", + "weight": 5579, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "PaymentReconciliation.detail", + "weight": 5580, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "PaymentReconciliation.detail.id", + "weight": 5581, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PaymentReconciliation.detail.extension", + "weight": 5582, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PaymentReconciliation.detail.modifierExtension", + "weight": 5583, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PaymentReconciliation.detail.identifier", + "weight": 5584, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "PaymentReconciliation.detail.predecessor", + "weight": 5585, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "PaymentReconciliation.detail.type", + "weight": 5586, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PaymentReconciliation.detail.request", + "weight": 5587, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PaymentReconciliation.detail.submitter", + "weight": 5588, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PaymentReconciliation.detail.response", + "weight": 5589, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PaymentReconciliation.detail.date", + "weight": 5590, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "PaymentReconciliation.detail.responsible", + "weight": 5591, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PaymentReconciliation.detail.payee", + "weight": 5592, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PaymentReconciliation.detail.amount", + "weight": 5593, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "PaymentReconciliation.formCode", + "weight": 5594, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PaymentReconciliation.processNote", + "weight": 5595, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "PaymentReconciliation.processNote.id", + "weight": 5596, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PaymentReconciliation.processNote.extension", + "weight": 5597, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PaymentReconciliation.processNote.modifierExtension", + "weight": 5598, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PaymentReconciliation.processNote.type", + "weight": 5599, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PaymentReconciliation.processNote.text", + "weight": 5600, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Person", + "weight": 5601, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Person.id", + "weight": 5602, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Person.meta", + "weight": 5603, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Person.implicitRules", + "weight": 5604, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Person.language", + "weight": 5605, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Person.text", + "weight": 5606, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Person.contained", + "weight": 5607, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Person.extension", + "weight": 5608, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Person.modifierExtension", + "weight": 5609, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Person.identifier", + "weight": 5610, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Person.name", + "weight": 5611, + "max": "*", + "type": "HumanName" + }, + { + "min": 0, + "path": "Person.telecom", + "weight": 5612, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "Person.gender", + "weight": 5613, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Person.birthDate", + "weight": 5614, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Person.address", + "weight": 5615, + "max": "*", + "type": "Address" + }, + { + "min": 0, + "path": "Person.photo", + "weight": 5616, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "Person.managingOrganization", + "weight": 5617, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Person.active", + "weight": 5618, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Person.link", + "weight": 5619, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Person.link.id", + "weight": 5620, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Person.link.extension", + "weight": 5621, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Person.link.modifierExtension", + "weight": 5622, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Person.link.target", + "weight": 5623, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Person.link.assurance", + "weight": 5624, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PlanDefinition", + "weight": 5625, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "PlanDefinition.id", + "weight": 5626, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PlanDefinition.meta", + "weight": 5627, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "PlanDefinition.implicitRules", + "weight": 5628, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "PlanDefinition.language", + "weight": 5629, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PlanDefinition.text", + "weight": 5630, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "PlanDefinition.contained", + "weight": 5631, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "PlanDefinition.extension", + "weight": 5632, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PlanDefinition.modifierExtension", + "weight": 5633, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PlanDefinition.url", + "weight": 5634, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "PlanDefinition.identifier", + "weight": 5635, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "PlanDefinition.version", + "weight": 5636, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "PlanDefinition.name", + "weight": 5637, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "PlanDefinition.title", + "weight": 5638, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "PlanDefinition.subtitle", + "weight": 5639, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "PlanDefinition.type", + "weight": 5640, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "PlanDefinition.status", + "weight": 5641, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PlanDefinition.experimental", + "weight": 5642, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "PlanDefinition.subjectCodeableConcept", + "weight": 5643, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.subjectReference", + "weight": 5643, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PlanDefinition.date", + "weight": 5644, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "PlanDefinition.publisher", + "weight": 5645, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "PlanDefinition.contact", + "weight": 5646, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "PlanDefinition.description", + "weight": 5647, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "PlanDefinition.useContext", + "weight": 5648, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "PlanDefinition.jurisdiction", + "weight": 5649, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.purpose", + "weight": 5650, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "PlanDefinition.usage", + "weight": 5651, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "PlanDefinition.copyright", + "weight": 5652, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "PlanDefinition.approvalDate", + "weight": 5653, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "PlanDefinition.lastReviewDate", + "weight": 5654, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "PlanDefinition.effectivePeriod", + "weight": 5655, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "PlanDefinition.topic", + "weight": 5656, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.author", + "weight": 5657, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "PlanDefinition.editor", + "weight": 5658, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "PlanDefinition.reviewer", + "weight": 5659, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "PlanDefinition.endorser", + "weight": 5660, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "PlanDefinition.relatedArtifact", + "weight": 5661, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "PlanDefinition.library", + "weight": 5662, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "PlanDefinition.goal", + "weight": 5663, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "PlanDefinition.goal.id", + "weight": 5664, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PlanDefinition.goal.extension", + "weight": 5665, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PlanDefinition.goal.modifierExtension", + "weight": 5666, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PlanDefinition.goal.category", + "weight": 5667, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "PlanDefinition.goal.description", + "weight": 5668, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.goal.priority", + "weight": 5669, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.goal.start", + "weight": 5670, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.goal.addresses", + "weight": 5671, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.goal.documentation", + "weight": 5672, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "PlanDefinition.goal.target", + "weight": 5673, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "PlanDefinition.goal.target.id", + "weight": 5674, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PlanDefinition.goal.target.extension", + "weight": 5675, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PlanDefinition.goal.target.modifierExtension", + "weight": 5676, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PlanDefinition.goal.target.measure", + "weight": 5677, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.goal.target.detailQuantity", + "weight": 5678, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "PlanDefinition.goal.target.detailRange", + "weight": 5678, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "PlanDefinition.goal.target.detailCodeableConcept", + "weight": 5678, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.goal.target.due", + "weight": 5679, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "PlanDefinition.action", + "weight": 5680, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "PlanDefinition.action.id", + "weight": 5681, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PlanDefinition.action.extension", + "weight": 5682, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PlanDefinition.action.modifierExtension", + "weight": 5683, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PlanDefinition.action.prefix", + "weight": 5684, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "PlanDefinition.action.title", + "weight": 5685, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "PlanDefinition.action.description", + "weight": 5686, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "PlanDefinition.action.textEquivalent", + "weight": 5687, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "PlanDefinition.action.priority", + "weight": 5688, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PlanDefinition.action.code", + "weight": 5689, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.action.reason", + "weight": 5690, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.action.documentation", + "weight": 5691, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "PlanDefinition.action.goalId", + "weight": 5692, + "max": "*", + "type": "id" + }, + { + "min": 0, + "path": "PlanDefinition.action.subjectCodeableConcept", + "weight": 5693, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.action.subjectReference", + "weight": 5693, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PlanDefinition.action.trigger", + "weight": 5694, + "max": "*", + "type": "TriggerDefinition" + }, + { + "min": 0, + "path": "PlanDefinition.action.condition", + "weight": 5695, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "PlanDefinition.action.condition.id", + "weight": 5696, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PlanDefinition.action.condition.extension", + "weight": 5697, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PlanDefinition.action.condition.modifierExtension", + "weight": 5698, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "PlanDefinition.action.condition.kind", + "weight": 5699, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PlanDefinition.action.condition.expression", + "weight": 5700, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "PlanDefinition.action.input", + "weight": 5701, + "max": "*", + "type": "DataRequirement" + }, + { + "min": 0, + "path": "PlanDefinition.action.output", + "weight": 5702, + "max": "*", + "type": "DataRequirement" + }, + { + "min": 0, + "path": "PlanDefinition.action.relatedAction", + "weight": 5703, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "PlanDefinition.action.relatedAction.id", + "weight": 5704, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PlanDefinition.action.relatedAction.extension", + "weight": 5705, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PlanDefinition.action.relatedAction.modifierExtension", + "weight": 5706, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "PlanDefinition.action.relatedAction.actionId", + "weight": 5707, + "max": "1", + "type": "id" + }, + { + "min": 1, + "path": "PlanDefinition.action.relatedAction.relationship", + "weight": 5708, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PlanDefinition.action.relatedAction.offsetDuration", + "weight": 5709, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "PlanDefinition.action.relatedAction.offsetRange", + "weight": 5709, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "PlanDefinition.action.timingDateTime", + "weight": 5710, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "PlanDefinition.action.timingAge", + "weight": 5710, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "PlanDefinition.action.timingPeriod", + "weight": 5710, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "PlanDefinition.action.timingDuration", + "weight": 5710, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "PlanDefinition.action.timingRange", + "weight": 5710, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "PlanDefinition.action.timingTiming", + "weight": 5710, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "PlanDefinition.action.participant", + "weight": 5711, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "PlanDefinition.action.participant.id", + "weight": 5712, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PlanDefinition.action.participant.extension", + "weight": 5713, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PlanDefinition.action.participant.modifierExtension", + "weight": 5714, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "PlanDefinition.action.participant.type", + "weight": 5715, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PlanDefinition.action.participant.role", + "weight": 5716, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.action.type", + "weight": 5717, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PlanDefinition.action.groupingBehavior", + "weight": 5718, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PlanDefinition.action.selectionBehavior", + "weight": 5719, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PlanDefinition.action.requiredBehavior", + "weight": 5720, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PlanDefinition.action.precheckBehavior", + "weight": 5721, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PlanDefinition.action.cardinalityBehavior", + "weight": 5722, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PlanDefinition.action.definitionCanonical", + "weight": 5723, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "PlanDefinition.action.definitionUri", + "weight": 5723, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "PlanDefinition.action.transform", + "weight": 5724, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "PlanDefinition.action.dynamicValue", + "weight": 5725, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "PlanDefinition.action.dynamicValue.id", + "weight": 5726, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PlanDefinition.action.dynamicValue.extension", + "weight": 5727, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PlanDefinition.action.dynamicValue.modifierExtension", + "weight": 5728, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PlanDefinition.action.dynamicValue.path", + "weight": 5729, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "PlanDefinition.action.dynamicValue.expression", + "weight": 5730, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "PlanDefinition.action.action", + "weight": 5731, + "max": "*" + }, + { + "min": 0, + "path": "Practitioner", + "weight": 5732, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Practitioner.id", + "weight": 5733, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Practitioner.meta", + "weight": 5734, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Practitioner.implicitRules", + "weight": 5735, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Practitioner.language", + "weight": 5736, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Practitioner.text", + "weight": 5737, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Practitioner.contained", + "weight": 5738, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Practitioner.extension", + "weight": 5739, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Practitioner.modifierExtension", + "weight": 5740, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Practitioner.identifier", + "weight": 5741, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Practitioner.active", + "weight": 5742, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Practitioner.name", + "weight": 5743, + "max": "*", + "type": "HumanName" + }, + { + "min": 0, + "path": "Practitioner.telecom", + "weight": 5744, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "Practitioner.address", + "weight": 5745, + "max": "*", + "type": "Address" + }, + { + "min": 0, + "path": "Practitioner.gender", + "weight": 5746, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Practitioner.birthDate", + "weight": 5747, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Practitioner.photo", + "weight": 5748, + "max": "*", + "type": "Attachment" + }, + { + "min": 0, + "path": "Practitioner.qualification", + "weight": 5749, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Practitioner.qualification.id", + "weight": 5750, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Practitioner.qualification.extension", + "weight": 5751, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Practitioner.qualification.modifierExtension", + "weight": 5752, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Practitioner.qualification.identifier", + "weight": 5753, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "Practitioner.qualification.code", + "weight": 5754, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Practitioner.qualification.period", + "weight": 5755, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Practitioner.qualification.issuer", + "weight": 5756, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Practitioner.communication", + "weight": 5757, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PractitionerRole", + "weight": 5758, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "PractitionerRole.id", + "weight": 5759, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PractitionerRole.meta", + "weight": 5760, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "PractitionerRole.implicitRules", + "weight": 5761, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "PractitionerRole.language", + "weight": 5762, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "PractitionerRole.text", + "weight": 5763, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "PractitionerRole.contained", + "weight": 5764, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "PractitionerRole.extension", + "weight": 5765, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PractitionerRole.modifierExtension", + "weight": 5766, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PractitionerRole.identifier", + "weight": 5767, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "PractitionerRole.active", + "weight": 5768, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "PractitionerRole.period", + "weight": 5769, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "PractitionerRole.practitioner", + "weight": 5770, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PractitionerRole.organization", + "weight": 5771, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "PractitionerRole.code", + "weight": 5772, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PractitionerRole.specialty", + "weight": 5773, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "PractitionerRole.location", + "weight": 5774, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "PractitionerRole.healthcareService", + "weight": 5775, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "PractitionerRole.telecom", + "weight": 5776, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "PractitionerRole.availableTime", + "weight": 5777, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "PractitionerRole.availableTime.id", + "weight": 5778, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PractitionerRole.availableTime.extension", + "weight": 5779, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PractitionerRole.availableTime.modifierExtension", + "weight": 5780, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PractitionerRole.availableTime.daysOfWeek", + "weight": 5781, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "PractitionerRole.availableTime.allDay", + "weight": 5782, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "PractitionerRole.availableTime.availableStartTime", + "weight": 5783, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "PractitionerRole.availableTime.availableEndTime", + "weight": 5784, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "PractitionerRole.notAvailable", + "weight": 5785, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "PractitionerRole.notAvailable.id", + "weight": 5786, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "PractitionerRole.notAvailable.extension", + "weight": 5787, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "PractitionerRole.notAvailable.modifierExtension", + "weight": 5788, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "PractitionerRole.notAvailable.description", + "weight": 5789, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "PractitionerRole.notAvailable.during", + "weight": 5790, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "PractitionerRole.availabilityExceptions", + "weight": 5791, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "PractitionerRole.endpoint", + "weight": 5792, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure", + "weight": 5793, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Procedure.id", + "weight": 5794, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Procedure.meta", + "weight": 5795, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Procedure.implicitRules", + "weight": 5796, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Procedure.language", + "weight": 5797, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Procedure.text", + "weight": 5798, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Procedure.contained", + "weight": 5799, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Procedure.extension", + "weight": 5800, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Procedure.modifierExtension", + "weight": 5801, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Procedure.identifier", + "weight": 5802, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Procedure.instantiatesCanonical", + "weight": 5803, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "Procedure.instantiatesUri", + "weight": 5804, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "Procedure.basedOn", + "weight": 5805, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure.partOf", + "weight": 5806, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "Procedure.status", + "weight": 5807, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Procedure.statusReason", + "weight": 5808, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Procedure.category", + "weight": 5809, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Procedure.code", + "weight": 5810, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Procedure.subject", + "weight": 5811, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure.encounter", + "weight": 5812, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure.performedDateTime", + "weight": 5813, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Procedure.performedPeriod", + "weight": 5813, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Procedure.performedString", + "weight": 5813, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Procedure.performedAge", + "weight": 5813, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "Procedure.performedRange", + "weight": 5813, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "Procedure.recorder", + "weight": 5814, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure.asserter", + "weight": 5815, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure.performer", + "weight": 5816, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Procedure.performer.id", + "weight": 5817, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Procedure.performer.extension", + "weight": 5818, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Procedure.performer.modifierExtension", + "weight": 5819, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Procedure.performer.function", + "weight": 5820, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Procedure.performer.actor", + "weight": 5821, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure.performer.onBehalfOf", + "weight": 5822, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure.location", + "weight": 5823, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure.reasonCode", + "weight": 5824, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Procedure.reasonReference", + "weight": 5825, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure.bodySite", + "weight": 5826, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Procedure.outcome", + "weight": 5827, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Procedure.report", + "weight": 5828, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure.complication", + "weight": 5829, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Procedure.complicationDetail", + "weight": 5830, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure.followUp", + "weight": 5831, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Procedure.note", + "weight": 5832, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Procedure.focalDevice", + "weight": 5833, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Procedure.focalDevice.id", + "weight": 5834, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Procedure.focalDevice.extension", + "weight": 5835, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Procedure.focalDevice.modifierExtension", + "weight": 5836, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Procedure.focalDevice.action", + "weight": 5837, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Procedure.focalDevice.manipulated", + "weight": 5838, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure.usedReference", + "weight": 5839, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Procedure.usedCode", + "weight": 5840, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Provenance", + "weight": 5841, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Provenance.id", + "weight": 5842, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Provenance.meta", + "weight": 5843, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Provenance.implicitRules", + "weight": 5844, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Provenance.language", + "weight": 5845, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Provenance.text", + "weight": 5846, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Provenance.contained", + "weight": 5847, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Provenance.extension", + "weight": 5848, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Provenance.modifierExtension", + "weight": 5849, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Provenance.target", + "weight": 5850, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Provenance.occurredPeriod", + "weight": 5851, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Provenance.occurredDateTime", + "weight": 5851, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "Provenance.recorded", + "weight": 5852, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "Provenance.policy", + "weight": 5853, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "Provenance.location", + "weight": 5854, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Provenance.reason", + "weight": 5855, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Provenance.activity", + "weight": 5856, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Provenance.agent", + "weight": 5857, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Provenance.agent.id", + "weight": 5858, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Provenance.agent.extension", + "weight": 5859, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Provenance.agent.modifierExtension", + "weight": 5860, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Provenance.agent.type", + "weight": 5861, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Provenance.agent.role", + "weight": 5862, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Provenance.agent.who", + "weight": 5863, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Provenance.agent.onBehalfOf", + "weight": 5864, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Provenance.entity", + "weight": 5865, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Provenance.entity.id", + "weight": 5866, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Provenance.entity.extension", + "weight": 5867, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Provenance.entity.modifierExtension", + "weight": 5868, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Provenance.entity.role", + "weight": 5869, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Provenance.entity.what", + "weight": 5870, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Provenance.entity.agent", + "weight": 5871, + "max": "*" + }, + { + "min": 0, + "path": "Provenance.signature", + "weight": 5872, + "max": "*", + "type": "Signature" + }, + { + "min": 0, + "path": "Questionnaire", + "weight": 5873, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Questionnaire.id", + "weight": 5874, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Questionnaire.meta", + "weight": 5875, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Questionnaire.implicitRules", + "weight": 5876, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Questionnaire.language", + "weight": 5877, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Questionnaire.text", + "weight": 5878, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Questionnaire.contained", + "weight": 5879, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Questionnaire.extension", + "weight": 5880, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Questionnaire.modifierExtension", + "weight": 5881, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Questionnaire.url", + "weight": 5882, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Questionnaire.identifier", + "weight": 5883, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Questionnaire.version", + "weight": 5884, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Questionnaire.name", + "weight": 5885, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Questionnaire.title", + "weight": 5886, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Questionnaire.derivedFrom", + "weight": 5887, + "max": "*", + "type": "canonical" + }, + { + "min": 1, + "path": "Questionnaire.status", + "weight": 5888, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Questionnaire.experimental", + "weight": 5889, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Questionnaire.subjectType", + "weight": 5890, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "Questionnaire.date", + "weight": 5891, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Questionnaire.publisher", + "weight": 5892, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Questionnaire.contact", + "weight": 5893, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "Questionnaire.description", + "weight": 5894, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Questionnaire.useContext", + "weight": 5895, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "Questionnaire.jurisdiction", + "weight": 5896, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Questionnaire.purpose", + "weight": 5897, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Questionnaire.copyright", + "weight": 5898, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "Questionnaire.approvalDate", + "weight": 5899, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Questionnaire.lastReviewDate", + "weight": 5900, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "Questionnaire.effectivePeriod", + "weight": 5901, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Questionnaire.code", + "weight": 5902, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "Questionnaire.item", + "weight": 5903, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Questionnaire.item.id", + "weight": 5904, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Questionnaire.item.extension", + "weight": 5905, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Questionnaire.item.modifierExtension", + "weight": 5906, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Questionnaire.item.linkId", + "weight": 5907, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Questionnaire.item.definition", + "weight": 5908, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Questionnaire.item.code", + "weight": 5909, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "Questionnaire.item.prefix", + "weight": 5910, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Questionnaire.item.text", + "weight": 5911, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Questionnaire.item.type", + "weight": 5912, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Questionnaire.item.enableWhen", + "weight": 5913, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Questionnaire.item.enableWhen.id", + "weight": 5914, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Questionnaire.item.enableWhen.extension", + "weight": 5915, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Questionnaire.item.enableWhen.modifierExtension", + "weight": 5916, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Questionnaire.item.enableWhen.question", + "weight": 5917, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Questionnaire.item.enableWhen.operator", + "weight": 5918, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Questionnaire.item.enableWhen.answerBoolean", + "weight": 5919, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "Questionnaire.item.enableWhen.answerDecimal", + "weight": 5919, + "max": "1", + "type": "decimal" + }, + { + "min": 1, + "path": "Questionnaire.item.enableWhen.answerInteger", + "weight": 5919, + "max": "1", + "type": "integer" + }, + { + "min": 1, + "path": "Questionnaire.item.enableWhen.answerDate", + "weight": 5919, + "max": "1", + "type": "date" + }, + { + "min": 1, + "path": "Questionnaire.item.enableWhen.answerDateTime", + "weight": 5919, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "Questionnaire.item.enableWhen.answerTime", + "weight": 5919, + "max": "1", + "type": "time" + }, + { + "min": 1, + "path": "Questionnaire.item.enableWhen.answerString", + "weight": 5919, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Questionnaire.item.enableWhen.answerCoding", + "weight": 5919, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "Questionnaire.item.enableWhen.answerQuantity", + "weight": 5919, + "max": "1", + "type": "Quantity" + }, + { + "min": 1, + "path": "Questionnaire.item.enableWhen.answerReference", + "weight": 5919, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Questionnaire.item.enableBehavior", + "weight": 5920, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Questionnaire.item.required", + "weight": 5921, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Questionnaire.item.repeats", + "weight": 5922, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Questionnaire.item.readOnly", + "weight": 5923, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Questionnaire.item.maxLength", + "weight": 5924, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "Questionnaire.item.answerValueSet", + "weight": 5925, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "Questionnaire.item.answerOption", + "weight": 5926, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Questionnaire.item.answerOption.id", + "weight": 5927, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Questionnaire.item.answerOption.extension", + "weight": 5928, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Questionnaire.item.answerOption.modifierExtension", + "weight": 5929, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Questionnaire.item.answerOption.valueInteger", + "weight": 5930, + "max": "1", + "type": "integer" + }, + { + "min": 1, + "path": "Questionnaire.item.answerOption.valueDate", + "weight": 5930, + "max": "1", + "type": "date" + }, + { + "min": 1, + "path": "Questionnaire.item.answerOption.valueTime", + "weight": 5930, + "max": "1", + "type": "time" + }, + { + "min": 1, + "path": "Questionnaire.item.answerOption.valueString", + "weight": 5930, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Questionnaire.item.answerOption.valueCoding", + "weight": 5930, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "Questionnaire.item.answerOption.valueReference", + "weight": 5930, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Questionnaire.item.answerOption.initialSelected", + "weight": 5931, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Questionnaire.item.initial", + "weight": 5932, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Questionnaire.item.initial.id", + "weight": 5933, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Questionnaire.item.initial.extension", + "weight": 5934, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Questionnaire.item.initial.modifierExtension", + "weight": 5935, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Questionnaire.item.initial.valueBoolean", + "weight": 5936, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "Questionnaire.item.initial.valueDecimal", + "weight": 5936, + "max": "1", + "type": "decimal" + }, + { + "min": 1, + "path": "Questionnaire.item.initial.valueInteger", + "weight": 5936, + "max": "1", + "type": "integer" + }, + { + "min": 1, + "path": "Questionnaire.item.initial.valueDate", + "weight": 5936, + "max": "1", + "type": "date" + }, + { + "min": 1, + "path": "Questionnaire.item.initial.valueDateTime", + "weight": 5936, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "Questionnaire.item.initial.valueTime", + "weight": 5936, + "max": "1", + "type": "time" + }, + { + "min": 1, + "path": "Questionnaire.item.initial.valueString", + "weight": 5936, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Questionnaire.item.initial.valueUri", + "weight": 5936, + "max": "1", + "type": "uri" + }, + { + "min": 1, + "path": "Questionnaire.item.initial.valueAttachment", + "weight": 5936, + "max": "1", + "type": "Attachment" + }, + { + "min": 1, + "path": "Questionnaire.item.initial.valueCoding", + "weight": 5936, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "Questionnaire.item.initial.valueQuantity", + "weight": 5936, + "max": "1", + "type": "Quantity" + }, + { + "min": 1, + "path": "Questionnaire.item.initial.valueReference", + "weight": 5936, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Questionnaire.item.item", + "weight": 5937, + "max": "*" + }, + { + "min": 0, + "path": "QuestionnaireResponse", + "weight": 5938, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "QuestionnaireResponse.id", + "weight": 5939, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "QuestionnaireResponse.meta", + "weight": 5940, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "QuestionnaireResponse.implicitRules", + "weight": 5941, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "QuestionnaireResponse.language", + "weight": 5942, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "QuestionnaireResponse.text", + "weight": 5943, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "QuestionnaireResponse.contained", + "weight": 5944, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "QuestionnaireResponse.extension", + "weight": 5945, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "QuestionnaireResponse.modifierExtension", + "weight": 5946, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "QuestionnaireResponse.identifier", + "weight": 5947, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "QuestionnaireResponse.basedOn", + "weight": 5948, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "QuestionnaireResponse.partOf", + "weight": 5949, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "QuestionnaireResponse.questionnaire", + "weight": 5950, + "max": "1", + "type": "canonical" + }, + { + "min": 1, + "path": "QuestionnaireResponse.status", + "weight": 5951, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "QuestionnaireResponse.subject", + "weight": 5952, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "QuestionnaireResponse.encounter", + "weight": 5953, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "QuestionnaireResponse.authored", + "weight": 5954, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "QuestionnaireResponse.author", + "weight": 5955, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "QuestionnaireResponse.source", + "weight": 5956, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item", + "weight": 5957, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.id", + "weight": 5958, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.extension", + "weight": 5959, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.modifierExtension", + "weight": 5960, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "QuestionnaireResponse.item.linkId", + "weight": 5961, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.definition", + "weight": 5962, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.text", + "weight": 5963, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer", + "weight": 5964, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.id", + "weight": 5965, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.extension", + "weight": 5966, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.modifierExtension", + "weight": 5967, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.valueBoolean", + "weight": 5968, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.valueDecimal", + "weight": 5968, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.valueInteger", + "weight": 5968, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.valueDate", + "weight": 5968, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.valueDateTime", + "weight": 5968, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.valueTime", + "weight": 5968, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.valueString", + "weight": 5968, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.valueUri", + "weight": 5968, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.valueAttachment", + "weight": 5968, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.valueCoding", + "weight": 5968, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.valueQuantity", + "weight": 5968, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.valueReference", + "weight": 5968, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.answer.item", + "weight": 5969, + "max": "*" + }, + { + "min": 0, + "path": "QuestionnaireResponse.item.item", + "weight": 5970, + "max": "*" + }, + { + "min": 0, + "path": "RelatedPerson", + "weight": 5971, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "RelatedPerson.id", + "weight": 5972, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RelatedPerson.meta", + "weight": 5973, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "RelatedPerson.implicitRules", + "weight": 5974, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "RelatedPerson.language", + "weight": 5975, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RelatedPerson.text", + "weight": 5976, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "RelatedPerson.contained", + "weight": 5977, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "RelatedPerson.extension", + "weight": 5978, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RelatedPerson.modifierExtension", + "weight": 5979, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RelatedPerson.identifier", + "weight": 5980, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "RelatedPerson.active", + "weight": 5981, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "RelatedPerson.patient", + "weight": 5982, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "RelatedPerson.relationship", + "weight": 5983, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RelatedPerson.name", + "weight": 5984, + "max": "*", + "type": "HumanName" + }, + { + "min": 0, + "path": "RelatedPerson.telecom", + "weight": 5985, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "RelatedPerson.gender", + "weight": 5986, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RelatedPerson.birthDate", + "weight": 5987, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "RelatedPerson.address", + "weight": 5988, + "max": "*", + "type": "Address" + }, + { + "min": 0, + "path": "RelatedPerson.photo", + "weight": 5989, + "max": "*", + "type": "Attachment" + }, + { + "min": 0, + "path": "RelatedPerson.period", + "weight": 5990, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "RelatedPerson.communication", + "weight": 5991, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "RelatedPerson.communication.id", + "weight": 5992, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RelatedPerson.communication.extension", + "weight": 5993, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RelatedPerson.communication.modifierExtension", + "weight": 5994, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "RelatedPerson.communication.language", + "weight": 5995, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RelatedPerson.communication.preferred", + "weight": 5996, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "RequestGroup", + "weight": 5997, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "RequestGroup.id", + "weight": 5998, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RequestGroup.meta", + "weight": 5999, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "RequestGroup.implicitRules", + "weight": 6000, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "RequestGroup.language", + "weight": 6001, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RequestGroup.text", + "weight": 6002, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "RequestGroup.contained", + "weight": 6003, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "RequestGroup.extension", + "weight": 6004, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RequestGroup.modifierExtension", + "weight": 6005, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RequestGroup.identifier", + "weight": 6006, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "RequestGroup.instantiatesCanonical", + "weight": 6007, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "RequestGroup.instantiatesUri", + "weight": 6008, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "RequestGroup.basedOn", + "weight": 6009, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "RequestGroup.replaces", + "weight": 6010, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "RequestGroup.groupIdentifier", + "weight": 6011, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "RequestGroup.status", + "weight": 6012, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "RequestGroup.intent", + "weight": 6013, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RequestGroup.priority", + "weight": 6014, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RequestGroup.code", + "weight": 6015, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RequestGroup.subject", + "weight": 6016, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "RequestGroup.encounter", + "weight": 6017, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "RequestGroup.authoredOn", + "weight": 6018, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "RequestGroup.author", + "weight": 6019, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "RequestGroup.reasonCode", + "weight": 6020, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RequestGroup.reasonReference", + "weight": 6021, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "RequestGroup.note", + "weight": 6022, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "RequestGroup.action", + "weight": 6023, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "RequestGroup.action.id", + "weight": 6024, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RequestGroup.action.extension", + "weight": 6025, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RequestGroup.action.modifierExtension", + "weight": 6026, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RequestGroup.action.prefix", + "weight": 6027, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RequestGroup.action.title", + "weight": 6028, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RequestGroup.action.description", + "weight": 6029, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RequestGroup.action.textEquivalent", + "weight": 6030, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RequestGroup.action.priority", + "weight": 6031, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RequestGroup.action.code", + "weight": 6032, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RequestGroup.action.documentation", + "weight": 6033, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "RequestGroup.action.condition", + "weight": 6034, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "RequestGroup.action.condition.id", + "weight": 6035, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RequestGroup.action.condition.extension", + "weight": 6036, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RequestGroup.action.condition.modifierExtension", + "weight": 6037, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "RequestGroup.action.condition.kind", + "weight": 6038, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RequestGroup.action.condition.expression", + "weight": 6039, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "RequestGroup.action.relatedAction", + "weight": 6040, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "RequestGroup.action.relatedAction.id", + "weight": 6041, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RequestGroup.action.relatedAction.extension", + "weight": 6042, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RequestGroup.action.relatedAction.modifierExtension", + "weight": 6043, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "RequestGroup.action.relatedAction.actionId", + "weight": 6044, + "max": "1", + "type": "id" + }, + { + "min": 1, + "path": "RequestGroup.action.relatedAction.relationship", + "weight": 6045, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RequestGroup.action.relatedAction.offsetDuration", + "weight": 6046, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "RequestGroup.action.relatedAction.offsetRange", + "weight": 6046, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "RequestGroup.action.timingDateTime", + "weight": 6047, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "RequestGroup.action.timingAge", + "weight": 6047, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "RequestGroup.action.timingPeriod", + "weight": 6047, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "RequestGroup.action.timingDuration", + "weight": 6047, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "RequestGroup.action.timingRange", + "weight": 6047, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "RequestGroup.action.timingTiming", + "weight": 6047, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "RequestGroup.action.participant", + "weight": 6048, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "RequestGroup.action.type", + "weight": 6049, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RequestGroup.action.groupingBehavior", + "weight": 6050, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RequestGroup.action.selectionBehavior", + "weight": 6051, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RequestGroup.action.requiredBehavior", + "weight": 6052, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RequestGroup.action.precheckBehavior", + "weight": 6053, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RequestGroup.action.cardinalityBehavior", + "weight": 6054, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RequestGroup.action.resource", + "weight": 6055, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "RequestGroup.action.action", + "weight": 6056, + "max": "*" + }, + { + "min": 0, + "path": "ResearchDefinition", + "weight": 6057, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ResearchDefinition.id", + "weight": 6058, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ResearchDefinition.meta", + "weight": 6059, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ResearchDefinition.implicitRules", + "weight": 6060, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ResearchDefinition.language", + "weight": 6061, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ResearchDefinition.text", + "weight": 6062, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ResearchDefinition.contained", + "weight": 6063, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ResearchDefinition.extension", + "weight": 6064, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ResearchDefinition.modifierExtension", + "weight": 6065, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ResearchDefinition.url", + "weight": 6066, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ResearchDefinition.identifier", + "weight": 6067, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "ResearchDefinition.version", + "weight": 6068, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchDefinition.name", + "weight": 6069, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchDefinition.title", + "weight": 6070, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchDefinition.shortTitle", + "weight": 6071, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchDefinition.subtitle", + "weight": 6072, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ResearchDefinition.status", + "weight": 6073, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ResearchDefinition.experimental", + "weight": 6074, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ResearchDefinition.subjectCodeableConcept", + "weight": 6075, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchDefinition.subjectReference", + "weight": 6075, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ResearchDefinition.date", + "weight": 6076, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ResearchDefinition.publisher", + "weight": 6077, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchDefinition.contact", + "weight": 6078, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ResearchDefinition.description", + "weight": 6079, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ResearchDefinition.comment", + "weight": 6080, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "ResearchDefinition.useContext", + "weight": 6081, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "ResearchDefinition.jurisdiction", + "weight": 6082, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchDefinition.purpose", + "weight": 6083, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ResearchDefinition.usage", + "weight": 6084, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchDefinition.copyright", + "weight": 6085, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ResearchDefinition.approvalDate", + "weight": 6086, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ResearchDefinition.lastReviewDate", + "weight": 6087, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ResearchDefinition.effectivePeriod", + "weight": 6088, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ResearchDefinition.topic", + "weight": 6089, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchDefinition.author", + "weight": 6090, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ResearchDefinition.editor", + "weight": 6091, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ResearchDefinition.reviewer", + "weight": 6092, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ResearchDefinition.endorser", + "weight": 6093, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ResearchDefinition.relatedArtifact", + "weight": 6094, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "ResearchDefinition.library", + "weight": 6095, + "max": "*", + "type": "canonical" + }, + { + "min": 1, + "path": "ResearchDefinition.population", + "weight": 6096, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ResearchDefinition.exposure", + "weight": 6097, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ResearchDefinition.exposureAlternative", + "weight": 6098, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ResearchDefinition.outcome", + "weight": 6099, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ResearchElementDefinition", + "weight": 6100, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ResearchElementDefinition.id", + "weight": 6101, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ResearchElementDefinition.meta", + "weight": 6102, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ResearchElementDefinition.implicitRules", + "weight": 6103, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ResearchElementDefinition.language", + "weight": 6104, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ResearchElementDefinition.text", + "weight": 6105, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ResearchElementDefinition.contained", + "weight": 6106, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ResearchElementDefinition.extension", + "weight": 6107, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ResearchElementDefinition.modifierExtension", + "weight": 6108, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ResearchElementDefinition.url", + "weight": 6109, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ResearchElementDefinition.identifier", + "weight": 6110, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "ResearchElementDefinition.version", + "weight": 6111, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchElementDefinition.name", + "weight": 6112, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchElementDefinition.title", + "weight": 6113, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchElementDefinition.shortTitle", + "weight": 6114, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchElementDefinition.subtitle", + "weight": 6115, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ResearchElementDefinition.status", + "weight": 6116, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ResearchElementDefinition.experimental", + "weight": 6117, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ResearchElementDefinition.subjectCodeableConcept", + "weight": 6118, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchElementDefinition.subjectReference", + "weight": 6118, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ResearchElementDefinition.date", + "weight": 6119, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ResearchElementDefinition.publisher", + "weight": 6120, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchElementDefinition.contact", + "weight": 6121, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ResearchElementDefinition.description", + "weight": 6122, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ResearchElementDefinition.comment", + "weight": 6123, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "ResearchElementDefinition.useContext", + "weight": 6124, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "ResearchElementDefinition.jurisdiction", + "weight": 6125, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchElementDefinition.purpose", + "weight": 6126, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ResearchElementDefinition.usage", + "weight": 6127, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchElementDefinition.copyright", + "weight": 6128, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ResearchElementDefinition.approvalDate", + "weight": 6129, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ResearchElementDefinition.lastReviewDate", + "weight": 6130, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ResearchElementDefinition.effectivePeriod", + "weight": 6131, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ResearchElementDefinition.topic", + "weight": 6132, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchElementDefinition.author", + "weight": 6133, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ResearchElementDefinition.editor", + "weight": 6134, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ResearchElementDefinition.reviewer", + "weight": 6135, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ResearchElementDefinition.endorser", + "weight": 6136, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ResearchElementDefinition.relatedArtifact", + "weight": 6137, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "ResearchElementDefinition.library", + "weight": 6138, + "max": "*", + "type": "canonical" + }, + { + "min": 1, + "path": "ResearchElementDefinition.type", + "weight": 6139, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ResearchElementDefinition.variableType", + "weight": 6140, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ResearchElementDefinition.characteristic", + "weight": 6141, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.id", + "weight": 6142, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.extension", + "weight": 6143, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.modifierExtension", + "weight": 6144, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ResearchElementDefinition.characteristic.definitionCodeableConcept", + "weight": 6145, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "ResearchElementDefinition.characteristic.definitionCanonical", + "weight": 6145, + "max": "1", + "type": "canonical" + }, + { + "min": 1, + "path": "ResearchElementDefinition.characteristic.definitionExpression", + "weight": 6145, + "max": "1", + "type": "Expression" + }, + { + "min": 1, + "path": "ResearchElementDefinition.characteristic.definitionDataRequirement", + "weight": 6145, + "max": "1", + "type": "DataRequirement" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.usageContext", + "weight": 6146, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.exclude", + "weight": 6147, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.unitOfMeasure", + "weight": 6148, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.studyEffectiveDescription", + "weight": 6149, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.studyEffectiveDateTime", + "weight": 6150, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.studyEffectivePeriod", + "weight": 6150, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.studyEffectiveDuration", + "weight": 6150, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.studyEffectiveTiming", + "weight": 6150, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.studyEffectiveTimeFromStart", + "weight": 6151, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.studyEffectiveGroupMeasure", + "weight": 6152, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.participantEffectiveDescription", + "weight": 6153, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.participantEffectiveDateTime", + "weight": 6154, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.participantEffectivePeriod", + "weight": 6154, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.participantEffectiveDuration", + "weight": 6154, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.participantEffectiveTiming", + "weight": 6154, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.participantEffectiveTimeFromStart", + "weight": 6155, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "ResearchElementDefinition.characteristic.participantEffectiveGroupMeasure", + "weight": 6156, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ResearchStudy", + "weight": 6157, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ResearchStudy.id", + "weight": 6158, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ResearchStudy.meta", + "weight": 6159, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ResearchStudy.implicitRules", + "weight": 6160, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ResearchStudy.language", + "weight": 6161, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ResearchStudy.text", + "weight": 6162, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ResearchStudy.contained", + "weight": 6163, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ResearchStudy.extension", + "weight": 6164, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ResearchStudy.modifierExtension", + "weight": 6165, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ResearchStudy.identifier", + "weight": 6166, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "ResearchStudy.title", + "weight": 6167, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchStudy.protocol", + "weight": 6168, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ResearchStudy.partOf", + "weight": 6169, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "ResearchStudy.status", + "weight": 6170, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ResearchStudy.primaryPurposeType", + "weight": 6171, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchStudy.phase", + "weight": 6172, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchStudy.category", + "weight": 6173, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchStudy.focus", + "weight": 6174, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchStudy.condition", + "weight": 6175, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchStudy.contact", + "weight": 6176, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ResearchStudy.relatedArtifact", + "weight": 6177, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "ResearchStudy.keyword", + "weight": 6178, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchStudy.location", + "weight": 6179, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchStudy.description", + "weight": 6180, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ResearchStudy.enrollment", + "weight": 6181, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ResearchStudy.period", + "weight": 6182, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ResearchStudy.sponsor", + "weight": 6183, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ResearchStudy.principalInvestigator", + "weight": 6184, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ResearchStudy.site", + "weight": 6185, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ResearchStudy.reasonStopped", + "weight": 6186, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchStudy.note", + "weight": 6187, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "ResearchStudy.arm", + "weight": 6188, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ResearchStudy.arm.id", + "weight": 6189, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ResearchStudy.arm.extension", + "weight": 6190, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ResearchStudy.arm.modifierExtension", + "weight": 6191, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ResearchStudy.arm.name", + "weight": 6192, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchStudy.arm.type", + "weight": 6193, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchStudy.arm.description", + "weight": 6194, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchStudy.objective", + "weight": 6195, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ResearchStudy.objective.id", + "weight": 6196, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ResearchStudy.objective.extension", + "weight": 6197, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ResearchStudy.objective.modifierExtension", + "weight": 6198, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ResearchStudy.objective.name", + "weight": 6199, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchStudy.objective.type", + "weight": 6200, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ResearchSubject", + "weight": 6201, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ResearchSubject.id", + "weight": 6202, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ResearchSubject.meta", + "weight": 6203, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ResearchSubject.implicitRules", + "weight": 6204, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ResearchSubject.language", + "weight": 6205, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ResearchSubject.text", + "weight": 6206, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ResearchSubject.contained", + "weight": 6207, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ResearchSubject.extension", + "weight": 6208, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ResearchSubject.modifierExtension", + "weight": 6209, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ResearchSubject.identifier", + "weight": 6210, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "ResearchSubject.status", + "weight": 6211, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ResearchSubject.period", + "weight": 6212, + "max": "1", + "type": "Period" + }, + { + "min": 1, + "path": "ResearchSubject.study", + "weight": 6213, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "ResearchSubject.individual", + "weight": 6214, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ResearchSubject.assignedArm", + "weight": 6215, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchSubject.actualArm", + "weight": 6216, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ResearchSubject.consent", + "weight": 6217, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "RiskAssessment", + "weight": 6218, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "RiskAssessment.id", + "weight": 6219, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RiskAssessment.meta", + "weight": 6220, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "RiskAssessment.implicitRules", + "weight": 6221, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "RiskAssessment.language", + "weight": 6222, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RiskAssessment.text", + "weight": 6223, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "RiskAssessment.contained", + "weight": 6224, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "RiskAssessment.extension", + "weight": 6225, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskAssessment.modifierExtension", + "weight": 6226, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskAssessment.identifier", + "weight": 6227, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "RiskAssessment.basedOn", + "weight": 6228, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "RiskAssessment.parent", + "weight": 6229, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "RiskAssessment.status", + "weight": 6230, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RiskAssessment.method", + "weight": 6231, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RiskAssessment.code", + "weight": 6232, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "RiskAssessment.subject", + "weight": 6233, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "RiskAssessment.encounter", + "weight": 6234, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "RiskAssessment.occurrenceDateTime", + "weight": 6235, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "RiskAssessment.occurrencePeriod", + "weight": 6235, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "RiskAssessment.condition", + "weight": 6236, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "RiskAssessment.performer", + "weight": 6237, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "RiskAssessment.reasonCode", + "weight": 6238, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RiskAssessment.reasonReference", + "weight": 6239, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "RiskAssessment.basis", + "weight": 6240, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "RiskAssessment.prediction", + "weight": 6241, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "RiskAssessment.prediction.id", + "weight": 6242, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RiskAssessment.prediction.extension", + "weight": 6243, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskAssessment.prediction.modifierExtension", + "weight": 6244, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskAssessment.prediction.outcome", + "weight": 6245, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RiskAssessment.prediction.probabilityDecimal", + "weight": 6246, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "RiskAssessment.prediction.probabilityRange", + "weight": 6246, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "RiskAssessment.prediction.qualitativeRisk", + "weight": 6247, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RiskAssessment.prediction.relativeRisk", + "weight": 6248, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "RiskAssessment.prediction.whenPeriod", + "weight": 6249, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "RiskAssessment.prediction.whenRange", + "weight": 6249, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "RiskAssessment.prediction.rationale", + "weight": 6250, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RiskAssessment.mitigation", + "weight": 6251, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RiskAssessment.note", + "weight": 6252, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis", + "weight": 6253, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.id", + "weight": 6254, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.meta", + "weight": 6255, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.implicitRules", + "weight": 6256, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.language", + "weight": 6257, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.text", + "weight": 6258, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.contained", + "weight": 6259, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.extension", + "weight": 6260, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.modifierExtension", + "weight": 6261, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.url", + "weight": 6262, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.identifier", + "weight": 6263, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.version", + "weight": 6264, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.name", + "weight": 6265, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.title", + "weight": 6266, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "RiskEvidenceSynthesis.status", + "weight": 6267, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.date", + "weight": 6268, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.publisher", + "weight": 6269, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.contact", + "weight": 6270, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.description", + "weight": 6271, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.note", + "weight": 6272, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.useContext", + "weight": 6273, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.jurisdiction", + "weight": 6274, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.copyright", + "weight": 6275, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.approvalDate", + "weight": 6276, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.lastReviewDate", + "weight": 6277, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.effectivePeriod", + "weight": 6278, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.topic", + "weight": 6279, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.author", + "weight": 6280, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.editor", + "weight": 6281, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.reviewer", + "weight": 6282, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.endorser", + "weight": 6283, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.relatedArtifact", + "weight": 6284, + "max": "*", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.synthesisType", + "weight": 6285, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.studyType", + "weight": 6286, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "RiskEvidenceSynthesis.population", + "weight": 6287, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.exposure", + "weight": 6288, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "RiskEvidenceSynthesis.outcome", + "weight": 6289, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.sampleSize", + "weight": 6290, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.sampleSize.id", + "weight": 6291, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.sampleSize.extension", + "weight": 6292, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.sampleSize.modifierExtension", + "weight": 6293, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.sampleSize.description", + "weight": 6294, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.sampleSize.numberOfStudies", + "weight": 6295, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.sampleSize.numberOfParticipants", + "weight": 6296, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate", + "weight": 6297, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.id", + "weight": 6298, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.extension", + "weight": 6299, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.modifierExtension", + "weight": 6300, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.description", + "weight": 6301, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.type", + "weight": 6302, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.value", + "weight": 6303, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.unitOfMeasure", + "weight": 6304, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.denominatorCount", + "weight": 6305, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.numeratorCount", + "weight": 6306, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.precisionEstimate", + "weight": 6307, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.precisionEstimate.id", + "weight": 6308, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.precisionEstimate.extension", + "weight": 6309, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.precisionEstimate.modifierExtension", + "weight": 6310, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.precisionEstimate.type", + "weight": 6311, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.precisionEstimate.level", + "weight": 6312, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.precisionEstimate.from", + "weight": 6313, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.riskEstimate.precisionEstimate.to", + "weight": 6314, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.certainty", + "weight": 6315, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.certainty.id", + "weight": 6316, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.certainty.extension", + "weight": 6317, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.certainty.modifierExtension", + "weight": 6318, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.certainty.rating", + "weight": 6319, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.certainty.note", + "weight": 6320, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.certainty.certaintySubcomponent", + "weight": 6321, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.certainty.certaintySubcomponent.id", + "weight": 6322, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.certainty.certaintySubcomponent.extension", + "weight": 6323, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.certainty.certaintySubcomponent.modifierExtension", + "weight": 6324, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.certainty.certaintySubcomponent.type", + "weight": 6325, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.certainty.certaintySubcomponent.rating", + "weight": 6326, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "RiskEvidenceSynthesis.certainty.certaintySubcomponent.note", + "weight": 6327, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Schedule", + "weight": 6328, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Schedule.id", + "weight": 6329, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Schedule.meta", + "weight": 6330, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Schedule.implicitRules", + "weight": 6331, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Schedule.language", + "weight": 6332, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Schedule.text", + "weight": 6333, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Schedule.contained", + "weight": 6334, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Schedule.extension", + "weight": 6335, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Schedule.modifierExtension", + "weight": 6336, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Schedule.identifier", + "weight": 6337, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Schedule.active", + "weight": 6338, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Schedule.serviceCategory", + "weight": 6339, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Schedule.serviceType", + "weight": 6340, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Schedule.specialty", + "weight": 6341, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Schedule.actor", + "weight": 6342, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Schedule.planningHorizon", + "weight": 6343, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Schedule.comment", + "weight": 6344, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SearchParameter", + "weight": 6345, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "SearchParameter.id", + "weight": 6346, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SearchParameter.meta", + "weight": 6347, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "SearchParameter.implicitRules", + "weight": 6348, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "SearchParameter.language", + "weight": 6349, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SearchParameter.text", + "weight": 6350, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "SearchParameter.contained", + "weight": 6351, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "SearchParameter.extension", + "weight": 6352, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SearchParameter.modifierExtension", + "weight": 6353, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "SearchParameter.url", + "weight": 6354, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "SearchParameter.version", + "weight": 6355, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "SearchParameter.name", + "weight": 6356, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SearchParameter.derivedFrom", + "weight": 6357, + "max": "1", + "type": "canonical" + }, + { + "min": 1, + "path": "SearchParameter.status", + "weight": 6358, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SearchParameter.experimental", + "weight": 6359, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "SearchParameter.date", + "weight": 6360, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "SearchParameter.publisher", + "weight": 6361, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SearchParameter.contact", + "weight": 6362, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 1, + "path": "SearchParameter.description", + "weight": 6363, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "SearchParameter.useContext", + "weight": 6364, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "SearchParameter.jurisdiction", + "weight": 6365, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SearchParameter.purpose", + "weight": 6366, + "max": "1", + "type": "markdown" + }, + { + "min": 1, + "path": "SearchParameter.code", + "weight": 6367, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "SearchParameter.base", + "weight": 6368, + "max": "*", + "type": "code" + }, + { + "min": 1, + "path": "SearchParameter.type", + "weight": 6369, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SearchParameter.expression", + "weight": 6370, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SearchParameter.xpath", + "weight": 6371, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SearchParameter.xpathUsage", + "weight": 6372, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SearchParameter.target", + "weight": 6373, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "SearchParameter.multipleOr", + "weight": 6374, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "SearchParameter.multipleAnd", + "weight": 6375, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "SearchParameter.comparator", + "weight": 6376, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "SearchParameter.modifier", + "weight": 6377, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "SearchParameter.chain", + "weight": 6378, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "SearchParameter.component", + "weight": 6379, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SearchParameter.component.id", + "weight": 6380, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SearchParameter.component.extension", + "weight": 6381, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SearchParameter.component.modifierExtension", + "weight": 6382, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "SearchParameter.component.definition", + "weight": 6383, + "max": "1", + "type": "canonical" + }, + { + "min": 1, + "path": "SearchParameter.component.expression", + "weight": 6384, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ServiceRequest", + "weight": 6385, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ServiceRequest.id", + "weight": 6386, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ServiceRequest.meta", + "weight": 6387, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ServiceRequest.implicitRules", + "weight": 6388, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ServiceRequest.language", + "weight": 6389, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ServiceRequest.text", + "weight": 6390, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ServiceRequest.contained", + "weight": 6391, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ServiceRequest.extension", + "weight": 6392, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ServiceRequest.modifierExtension", + "weight": 6393, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ServiceRequest.identifier", + "weight": 6394, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "ServiceRequest.instantiatesCanonical", + "weight": 6395, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "ServiceRequest.instantiatesUri", + "weight": 6396, + "max": "*", + "type": "uri" + }, + { + "min": 0, + "path": "ServiceRequest.basedOn", + "weight": 6397, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ServiceRequest.replaces", + "weight": 6398, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ServiceRequest.requisition", + "weight": 6399, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "ServiceRequest.status", + "weight": 6400, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ServiceRequest.intent", + "weight": 6401, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ServiceRequest.category", + "weight": 6402, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ServiceRequest.priority", + "weight": 6403, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ServiceRequest.doNotPerform", + "weight": 6404, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ServiceRequest.code", + "weight": 6405, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ServiceRequest.orderDetail", + "weight": 6406, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ServiceRequest.quantityQuantity", + "weight": 6407, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "ServiceRequest.quantityRatio", + "weight": 6407, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "ServiceRequest.quantityRange", + "weight": 6407, + "max": "1", + "type": "Range" + }, + { + "min": 1, + "path": "ServiceRequest.subject", + "weight": 6408, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ServiceRequest.encounter", + "weight": 6409, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ServiceRequest.occurrenceDateTime", + "weight": 6410, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ServiceRequest.occurrencePeriod", + "weight": 6410, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "ServiceRequest.occurrenceTiming", + "weight": 6410, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "ServiceRequest.asNeededBoolean", + "weight": 6411, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ServiceRequest.asNeededCodeableConcept", + "weight": 6411, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ServiceRequest.authoredOn", + "weight": 6412, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ServiceRequest.requester", + "weight": 6413, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "ServiceRequest.performerType", + "weight": 6414, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ServiceRequest.performer", + "weight": 6415, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ServiceRequest.locationCode", + "weight": 6416, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ServiceRequest.locationReference", + "weight": 6417, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ServiceRequest.reasonCode", + "weight": 6418, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ServiceRequest.reasonReference", + "weight": 6419, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ServiceRequest.insurance", + "weight": 6420, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ServiceRequest.supportingInfo", + "weight": 6421, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ServiceRequest.specimen", + "weight": 6422, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "ServiceRequest.bodySite", + "weight": 6423, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ServiceRequest.note", + "weight": 6424, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "ServiceRequest.patientInstruction", + "weight": 6425, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ServiceRequest.relevantHistory", + "weight": 6426, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Slot", + "weight": 6427, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Slot.id", + "weight": 6428, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Slot.meta", + "weight": 6429, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Slot.implicitRules", + "weight": 6430, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Slot.language", + "weight": 6431, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Slot.text", + "weight": 6432, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Slot.contained", + "weight": 6433, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Slot.extension", + "weight": 6434, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Slot.modifierExtension", + "weight": 6435, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Slot.identifier", + "weight": 6436, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Slot.serviceCategory", + "weight": 6437, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Slot.serviceType", + "weight": 6438, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Slot.specialty", + "weight": 6439, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Slot.appointmentType", + "weight": 6440, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Slot.schedule", + "weight": 6441, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "Slot.status", + "weight": 6442, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Slot.start", + "weight": 6443, + "max": "1", + "type": "instant" + }, + { + "min": 1, + "path": "Slot.end", + "weight": 6444, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "Slot.overbooked", + "weight": 6445, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "Slot.comment", + "weight": 6446, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Specimen", + "weight": 6447, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Specimen.id", + "weight": 6448, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Specimen.meta", + "weight": 6449, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Specimen.implicitRules", + "weight": 6450, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Specimen.language", + "weight": 6451, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Specimen.text", + "weight": 6452, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Specimen.contained", + "weight": 6453, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Specimen.extension", + "weight": 6454, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Specimen.modifierExtension", + "weight": 6455, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Specimen.identifier", + "weight": 6456, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Specimen.accessionIdentifier", + "weight": 6457, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "Specimen.status", + "weight": 6458, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Specimen.type", + "weight": 6459, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Specimen.subject", + "weight": 6460, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Specimen.receivedTime", + "weight": 6461, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Specimen.parent", + "weight": 6462, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Specimen.request", + "weight": 6463, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Specimen.collection", + "weight": 6464, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Specimen.collection.id", + "weight": 6465, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Specimen.collection.extension", + "weight": 6466, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Specimen.collection.modifierExtension", + "weight": 6467, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Specimen.collection.collector", + "weight": 6468, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Specimen.collection.collectedDateTime", + "weight": 6469, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Specimen.collection.collectedPeriod", + "weight": 6469, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Specimen.collection.duration", + "weight": 6470, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "Specimen.collection.quantity", + "weight": 6471, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Specimen.collection.method", + "weight": 6472, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Specimen.collection.bodySite", + "weight": 6473, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Specimen.collection.fastingStatusCodeableConcept", + "weight": 6474, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Specimen.collection.fastingStatusDuration", + "weight": 6474, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "Specimen.processing", + "weight": 6475, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Specimen.processing.id", + "weight": 6476, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Specimen.processing.extension", + "weight": 6477, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Specimen.processing.modifierExtension", + "weight": 6478, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Specimen.processing.description", + "weight": 6479, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Specimen.processing.procedure", + "weight": 6480, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Specimen.processing.additive", + "weight": 6481, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Specimen.processing.timeDateTime", + "weight": 6482, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Specimen.processing.timePeriod", + "weight": 6482, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Specimen.container", + "weight": 6483, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Specimen.container.id", + "weight": 6484, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Specimen.container.extension", + "weight": 6485, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Specimen.container.modifierExtension", + "weight": 6486, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Specimen.container.identifier", + "weight": 6487, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Specimen.container.description", + "weight": 6488, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Specimen.container.type", + "weight": 6489, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Specimen.container.capacity", + "weight": 6490, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Specimen.container.specimenQuantity", + "weight": 6491, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Specimen.container.additiveCodeableConcept", + "weight": 6492, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Specimen.container.additiveReference", + "weight": 6492, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Specimen.condition", + "weight": 6493, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Specimen.note", + "weight": 6494, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "SpecimenDefinition", + "weight": 6495, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "SpecimenDefinition.id", + "weight": 6496, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SpecimenDefinition.meta", + "weight": 6497, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "SpecimenDefinition.implicitRules", + "weight": 6498, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "SpecimenDefinition.language", + "weight": 6499, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SpecimenDefinition.text", + "weight": 6500, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "SpecimenDefinition.contained", + "weight": 6501, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "SpecimenDefinition.extension", + "weight": 6502, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SpecimenDefinition.modifierExtension", + "weight": 6503, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SpecimenDefinition.identifier", + "weight": 6504, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeCollected", + "weight": 6505, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SpecimenDefinition.patientPreparation", + "weight": 6506, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SpecimenDefinition.timeAspect", + "weight": 6507, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SpecimenDefinition.collection", + "weight": 6508, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested", + "weight": 6509, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.id", + "weight": 6510, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.extension", + "weight": 6511, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.modifierExtension", + "weight": 6512, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.isDerived", + "weight": 6513, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.type", + "weight": 6514, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "SpecimenDefinition.typeTested.preference", + "weight": 6515, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container", + "weight": 6516, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.id", + "weight": 6517, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.extension", + "weight": 6518, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.modifierExtension", + "weight": 6519, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.material", + "weight": 6520, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.type", + "weight": 6521, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.cap", + "weight": 6522, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.description", + "weight": 6523, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.capacity", + "weight": 6524, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.minimumVolumeQuantity", + "weight": 6525, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.minimumVolumeString", + "weight": 6525, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.additive", + "weight": 6526, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.additive.id", + "weight": 6527, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.additive.extension", + "weight": 6528, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.additive.modifierExtension", + "weight": 6529, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "SpecimenDefinition.typeTested.container.additive.additiveCodeableConcept", + "weight": 6530, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "SpecimenDefinition.typeTested.container.additive.additiveReference", + "weight": 6530, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.container.preparation", + "weight": 6531, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.requirement", + "weight": 6532, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.retentionTime", + "weight": 6533, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.rejectionCriterion", + "weight": 6534, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.handling", + "weight": 6535, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.handling.id", + "weight": 6536, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.handling.extension", + "weight": 6537, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.handling.modifierExtension", + "weight": 6538, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.handling.temperatureQualifier", + "weight": 6539, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.handling.temperatureRange", + "weight": 6540, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.handling.maxDuration", + "weight": 6541, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "SpecimenDefinition.typeTested.handling.instruction", + "weight": 6542, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureDefinition", + "weight": 6543, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "StructureDefinition.id", + "weight": 6544, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureDefinition.meta", + "weight": 6545, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "StructureDefinition.implicitRules", + "weight": 6546, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "StructureDefinition.language", + "weight": 6547, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "StructureDefinition.text", + "weight": 6548, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "StructureDefinition.contained", + "weight": 6549, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "StructureDefinition.extension", + "weight": 6550, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureDefinition.modifierExtension", + "weight": 6551, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "StructureDefinition.url", + "weight": 6552, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "StructureDefinition.identifier", + "weight": 6553, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "StructureDefinition.version", + "weight": 6554, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "StructureDefinition.name", + "weight": 6555, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureDefinition.title", + "weight": 6556, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "StructureDefinition.status", + "weight": 6557, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "StructureDefinition.experimental", + "weight": 6558, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "StructureDefinition.date", + "weight": 6559, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "StructureDefinition.publisher", + "weight": 6560, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureDefinition.contact", + "weight": 6561, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "StructureDefinition.description", + "weight": 6562, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "StructureDefinition.useContext", + "weight": 6563, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "StructureDefinition.jurisdiction", + "weight": 6564, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "StructureDefinition.purpose", + "weight": 6565, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "StructureDefinition.copyright", + "weight": 6566, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "StructureDefinition.keyword", + "weight": 6567, + "max": "*", + "type": "Coding" + }, + { + "min": 0, + "path": "StructureDefinition.fhirVersion", + "weight": 6568, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "StructureDefinition.mapping", + "weight": 6569, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "StructureDefinition.mapping.id", + "weight": 6570, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureDefinition.mapping.extension", + "weight": 6571, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureDefinition.mapping.modifierExtension", + "weight": 6572, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "StructureDefinition.mapping.identity", + "weight": 6573, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "StructureDefinition.mapping.uri", + "weight": 6574, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "StructureDefinition.mapping.name", + "weight": 6575, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureDefinition.mapping.comment", + "weight": 6576, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "StructureDefinition.kind", + "weight": 6577, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "StructureDefinition.abstract", + "weight": 6578, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "StructureDefinition.context", + "weight": 6579, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "StructureDefinition.context.id", + "weight": 6580, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureDefinition.context.extension", + "weight": 6581, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureDefinition.context.modifierExtension", + "weight": 6582, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "StructureDefinition.context.type", + "weight": 6583, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "StructureDefinition.context.expression", + "weight": 6584, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureDefinition.contextInvariant", + "weight": 6585, + "max": "*", + "type": "string" + }, + { + "min": 1, + "path": "StructureDefinition.type", + "weight": 6586, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "StructureDefinition.baseDefinition", + "weight": 6587, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "StructureDefinition.derivation", + "weight": 6588, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "StructureDefinition.snapshot", + "weight": 6589, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "StructureDefinition.snapshot.id", + "weight": 6590, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureDefinition.snapshot.extension", + "weight": 6591, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureDefinition.snapshot.modifierExtension", + "weight": 6592, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "StructureDefinition.snapshot.element", + "weight": 6593, + "max": "*", + "type": "ElementDefinition" + }, + { + "min": 0, + "path": "StructureDefinition.differential", + "weight": 6594, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "StructureDefinition.differential.id", + "weight": 6595, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureDefinition.differential.extension", + "weight": 6596, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureDefinition.differential.modifierExtension", + "weight": 6597, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "StructureDefinition.differential.element", + "weight": 6598, + "max": "*", + "type": "ElementDefinition" + }, + { + "min": 0, + "path": "StructureMap", + "weight": 6599, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "StructureMap.id", + "weight": 6600, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureMap.meta", + "weight": 6601, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "StructureMap.implicitRules", + "weight": 6602, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "StructureMap.language", + "weight": 6603, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "StructureMap.text", + "weight": 6604, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "StructureMap.contained", + "weight": 6605, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "StructureMap.extension", + "weight": 6606, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureMap.modifierExtension", + "weight": 6607, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "StructureMap.url", + "weight": 6608, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "StructureMap.identifier", + "weight": 6609, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "StructureMap.version", + "weight": 6610, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "StructureMap.name", + "weight": 6611, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureMap.title", + "weight": 6612, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "StructureMap.status", + "weight": 6613, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "StructureMap.experimental", + "weight": 6614, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "StructureMap.date", + "weight": 6615, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "StructureMap.publisher", + "weight": 6616, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureMap.contact", + "weight": 6617, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "StructureMap.description", + "weight": 6618, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "StructureMap.useContext", + "weight": 6619, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "StructureMap.jurisdiction", + "weight": 6620, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "StructureMap.purpose", + "weight": 6621, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "StructureMap.copyright", + "weight": 6622, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "StructureMap.structure", + "weight": 6623, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "StructureMap.structure.id", + "weight": 6624, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureMap.structure.extension", + "weight": 6625, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureMap.structure.modifierExtension", + "weight": 6626, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "StructureMap.structure.url", + "weight": 6627, + "max": "1", + "type": "canonical" + }, + { + "min": 1, + "path": "StructureMap.structure.mode", + "weight": 6628, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "StructureMap.structure.alias", + "weight": 6629, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureMap.structure.documentation", + "weight": 6630, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureMap.import", + "weight": 6631, + "max": "*", + "type": "canonical" + }, + { + "min": 1, + "path": "StructureMap.group", + "weight": 6632, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "StructureMap.group.id", + "weight": 6633, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureMap.group.extension", + "weight": 6634, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureMap.group.modifierExtension", + "weight": 6635, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "StructureMap.group.name", + "weight": 6636, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "StructureMap.group.extends", + "weight": 6637, + "max": "1", + "type": "id" + }, + { + "min": 1, + "path": "StructureMap.group.typeMode", + "weight": 6638, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "StructureMap.group.documentation", + "weight": 6639, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "StructureMap.group.input", + "weight": 6640, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "StructureMap.group.input.id", + "weight": 6641, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureMap.group.input.extension", + "weight": 6642, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureMap.group.input.modifierExtension", + "weight": 6643, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "StructureMap.group.input.name", + "weight": 6644, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "StructureMap.group.input.type", + "weight": 6645, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "StructureMap.group.input.mode", + "weight": 6646, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "StructureMap.group.input.documentation", + "weight": 6647, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "StructureMap.group.rule", + "weight": 6648, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "StructureMap.group.rule.id", + "weight": 6649, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureMap.group.rule.extension", + "weight": 6650, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureMap.group.rule.modifierExtension", + "weight": 6651, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "StructureMap.group.rule.name", + "weight": 6652, + "max": "1", + "type": "id" + }, + { + "min": 1, + "path": "StructureMap.group.rule.source", + "weight": 6653, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.id", + "weight": 6654, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.extension", + "weight": 6655, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.modifierExtension", + "weight": 6656, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "StructureMap.group.rule.source.context", + "weight": 6657, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.min", + "weight": 6658, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.max", + "weight": 6659, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.type", + "weight": 6660, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueBase64Binary", + "weight": 6661, + "max": "1", + "type": "base64Binary" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueBoolean", + "weight": 6661, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueCanonical", + "weight": 6661, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueCode", + "weight": 6661, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueDate", + "weight": 6661, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueDateTime", + "weight": 6661, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueDecimal", + "weight": 6661, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueId", + "weight": 6661, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueInstant", + "weight": 6661, + "max": "1", + "type": "instant" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueInteger", + "weight": 6661, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueMarkdown", + "weight": 6661, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueOid", + "weight": 6661, + "max": "1", + "type": "oid" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValuePositiveInt", + "weight": 6661, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueString", + "weight": 6661, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueTime", + "weight": 6661, + "max": "1", + "type": "time" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueUnsignedInt", + "weight": 6661, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueUri", + "weight": 6661, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueUrl", + "weight": 6661, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueUuid", + "weight": 6661, + "max": "1", + "type": "uuid" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueAddress", + "weight": 6661, + "max": "1", + "type": "Address" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueAge", + "weight": 6661, + "max": "1", + "type": "Age" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueAnnotation", + "weight": 6661, + "max": "1", + "type": "Annotation" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueAttachment", + "weight": 6661, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueCodeableConcept", + "weight": 6661, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueCoding", + "weight": 6661, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueContactPoint", + "weight": 6661, + "max": "1", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueCount", + "weight": 6661, + "max": "1", + "type": "Count" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueDistance", + "weight": 6661, + "max": "1", + "type": "Distance" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueDuration", + "weight": 6661, + "max": "1", + "type": "Duration" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueHumanName", + "weight": 6661, + "max": "1", + "type": "HumanName" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueIdentifier", + "weight": 6661, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueMoney", + "weight": 6661, + "max": "1", + "type": "Money" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValuePeriod", + "weight": 6661, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueQuantity", + "weight": 6661, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueRange", + "weight": 6661, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueRatio", + "weight": 6661, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueReference", + "weight": 6661, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueSampledData", + "weight": 6661, + "max": "1", + "type": "SampledData" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueSignature", + "weight": 6661, + "max": "1", + "type": "Signature" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueTiming", + "weight": 6661, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueContactDetail", + "weight": 6661, + "max": "1", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueContributor", + "weight": 6661, + "max": "1", + "type": "Contributor" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueDataRequirement", + "weight": 6661, + "max": "1", + "type": "DataRequirement" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueExpression", + "weight": 6661, + "max": "1", + "type": "Expression" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueParameterDefinition", + "weight": 6661, + "max": "1", + "type": "ParameterDefinition" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueRelatedArtifact", + "weight": 6661, + "max": "1", + "type": "RelatedArtifact" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueTriggerDefinition", + "weight": 6661, + "max": "1", + "type": "TriggerDefinition" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueUsageContext", + "weight": 6661, + "max": "1", + "type": "UsageContext" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueDosage", + "weight": 6661, + "max": "1", + "type": "Dosage" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.defaultValueMeta", + "weight": 6661, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.element", + "weight": 6662, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.listMode", + "weight": 6663, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.variable", + "weight": 6664, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.condition", + "weight": 6665, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.check", + "weight": 6666, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureMap.group.rule.source.logMessage", + "weight": 6667, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target", + "weight": 6668, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.id", + "weight": 6669, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.extension", + "weight": 6670, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.modifierExtension", + "weight": 6671, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.context", + "weight": 6672, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.contextType", + "weight": 6673, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.element", + "weight": 6674, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.variable", + "weight": 6675, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.listMode", + "weight": 6676, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.listRuleId", + "weight": 6677, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.transform", + "weight": 6678, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.parameter", + "weight": 6679, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.parameter.id", + "weight": 6680, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.parameter.extension", + "weight": 6681, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureMap.group.rule.target.parameter.modifierExtension", + "weight": 6682, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "StructureMap.group.rule.target.parameter.valueId", + "weight": 6683, + "max": "1", + "type": "id" + }, + { + "min": 1, + "path": "StructureMap.group.rule.target.parameter.valueString", + "weight": 6683, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "StructureMap.group.rule.target.parameter.valueBoolean", + "weight": 6683, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "StructureMap.group.rule.target.parameter.valueInteger", + "weight": 6683, + "max": "1", + "type": "integer" + }, + { + "min": 1, + "path": "StructureMap.group.rule.target.parameter.valueDecimal", + "weight": 6683, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "StructureMap.group.rule.rule", + "weight": 6684, + "max": "*" + }, + { + "min": 0, + "path": "StructureMap.group.rule.dependent", + "weight": 6685, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "StructureMap.group.rule.dependent.id", + "weight": 6686, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "StructureMap.group.rule.dependent.extension", + "weight": 6687, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "StructureMap.group.rule.dependent.modifierExtension", + "weight": 6688, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "StructureMap.group.rule.dependent.name", + "weight": 6689, + "max": "1", + "type": "id" + }, + { + "min": 1, + "path": "StructureMap.group.rule.dependent.variable", + "weight": 6690, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "StructureMap.group.rule.documentation", + "weight": 6691, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Subscription", + "weight": 6692, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Subscription.id", + "weight": 6693, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Subscription.meta", + "weight": 6694, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Subscription.implicitRules", + "weight": 6695, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Subscription.language", + "weight": 6696, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Subscription.text", + "weight": 6697, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Subscription.contained", + "weight": 6698, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Subscription.extension", + "weight": 6699, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Subscription.modifierExtension", + "weight": 6700, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Subscription.status", + "weight": 6701, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Subscription.contact", + "weight": 6702, + "max": "*", + "type": "ContactPoint" + }, + { + "min": 0, + "path": "Subscription.end", + "weight": 6703, + "max": "1", + "type": "instant" + }, + { + "min": 1, + "path": "Subscription.reason", + "weight": 6704, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Subscription.criteria", + "weight": 6705, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Subscription.error", + "weight": 6706, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Subscription.channel", + "weight": 6707, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Subscription.channel.id", + "weight": 6708, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Subscription.channel.extension", + "weight": 6709, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Subscription.channel.modifierExtension", + "weight": 6710, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Subscription.channel.type", + "weight": 6711, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Subscription.channel.endpoint", + "weight": 6712, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "Subscription.channel.payload", + "weight": 6713, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Subscription.channel.header", + "weight": 6714, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "Substance", + "weight": 6715, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Substance.id", + "weight": 6716, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Substance.meta", + "weight": 6717, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Substance.implicitRules", + "weight": 6718, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Substance.language", + "weight": 6719, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Substance.text", + "weight": 6720, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Substance.contained", + "weight": 6721, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Substance.extension", + "weight": 6722, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Substance.modifierExtension", + "weight": 6723, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Substance.identifier", + "weight": 6724, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Substance.status", + "weight": 6725, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Substance.category", + "weight": 6726, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Substance.code", + "weight": 6727, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Substance.description", + "weight": 6728, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Substance.instance", + "weight": 6729, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Substance.instance.id", + "weight": 6730, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Substance.instance.extension", + "weight": 6731, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Substance.instance.modifierExtension", + "weight": 6732, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Substance.instance.identifier", + "weight": 6733, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "Substance.instance.expiry", + "weight": 6734, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Substance.instance.quantity", + "weight": 6735, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "Substance.ingredient", + "weight": 6736, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Substance.ingredient.id", + "weight": 6737, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Substance.ingredient.extension", + "weight": 6738, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Substance.ingredient.modifierExtension", + "weight": 6739, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Substance.ingredient.quantity", + "weight": 6740, + "max": "1", + "type": "Ratio" + }, + { + "min": 1, + "path": "Substance.ingredient.substanceCodeableConcept", + "weight": 6741, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Substance.ingredient.substanceReference", + "weight": 6741, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid", + "weight": 6742, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.id", + "weight": 6743, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.meta", + "weight": 6744, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.implicitRules", + "weight": 6745, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.language", + "weight": 6746, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.text", + "weight": 6747, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.contained", + "weight": 6748, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.extension", + "weight": 6749, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.modifierExtension", + "weight": 6750, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.sequenceType", + "weight": 6751, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.numberOfSubunits", + "weight": 6752, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.areaOfHybridisation", + "weight": 6753, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.oligoNucleotideType", + "weight": 6754, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit", + "weight": 6755, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.id", + "weight": 6756, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.extension", + "weight": 6757, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.modifierExtension", + "weight": 6758, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.subunit", + "weight": 6759, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.sequence", + "weight": 6760, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.length", + "weight": 6761, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.sequenceAttachment", + "weight": 6762, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.fivePrime", + "weight": 6763, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.threePrime", + "weight": 6764, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.linkage", + "weight": 6765, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.linkage.id", + "weight": 6766, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.linkage.extension", + "weight": 6767, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.linkage.modifierExtension", + "weight": 6768, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.linkage.connectivity", + "weight": 6769, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.linkage.identifier", + "weight": 6770, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.linkage.name", + "weight": 6771, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.linkage.residueSite", + "weight": 6772, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.sugar", + "weight": 6773, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.sugar.id", + "weight": 6774, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.sugar.extension", + "weight": 6775, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.sugar.modifierExtension", + "weight": 6776, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.sugar.identifier", + "weight": 6777, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.sugar.name", + "weight": 6778, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceNucleicAcid.subunit.sugar.residueSite", + "weight": 6779, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstancePolymer", + "weight": 6780, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "SubstancePolymer.id", + "weight": 6781, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstancePolymer.meta", + "weight": 6782, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "SubstancePolymer.implicitRules", + "weight": 6783, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "SubstancePolymer.language", + "weight": 6784, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SubstancePolymer.text", + "weight": 6785, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "SubstancePolymer.contained", + "weight": 6786, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "SubstancePolymer.extension", + "weight": 6787, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.modifierExtension", + "weight": 6788, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.class", + "weight": 6789, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstancePolymer.geometry", + "weight": 6790, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstancePolymer.copolymerConnectivity", + "weight": 6791, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstancePolymer.modification", + "weight": 6792, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "SubstancePolymer.monomerSet", + "weight": 6793, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstancePolymer.monomerSet.id", + "weight": 6794, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstancePolymer.monomerSet.extension", + "weight": 6795, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.monomerSet.modifierExtension", + "weight": 6796, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.monomerSet.ratioType", + "weight": 6797, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstancePolymer.monomerSet.startingMaterial", + "weight": 6798, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstancePolymer.monomerSet.startingMaterial.id", + "weight": 6799, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstancePolymer.monomerSet.startingMaterial.extension", + "weight": 6800, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.monomerSet.startingMaterial.modifierExtension", + "weight": 6801, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.monomerSet.startingMaterial.material", + "weight": 6802, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstancePolymer.monomerSet.startingMaterial.type", + "weight": 6803, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstancePolymer.monomerSet.startingMaterial.isDefining", + "weight": 6804, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "SubstancePolymer.monomerSet.startingMaterial.amount", + "weight": 6805, + "max": "1", + "type": "SubstanceAmount" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat", + "weight": 6806, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.id", + "weight": 6807, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.extension", + "weight": 6808, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.modifierExtension", + "weight": 6809, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.numberOfUnits", + "weight": 6810, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.averageMolecularFormula", + "weight": 6811, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnitAmountType", + "weight": 6812, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit", + "weight": 6813, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.id", + "weight": 6814, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.extension", + "weight": 6815, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.modifierExtension", + "weight": 6816, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.orientationOfPolymerisation", + "weight": 6817, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.repeatUnit", + "weight": 6818, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.amount", + "weight": 6819, + "max": "1", + "type": "SubstanceAmount" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.degreeOfPolymerisation", + "weight": 6820, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.degreeOfPolymerisation.id", + "weight": 6821, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.degreeOfPolymerisation.extension", + "weight": 6822, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.degreeOfPolymerisation.modifierExtension", + "weight": 6823, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.degreeOfPolymerisation.degree", + "weight": 6824, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.degreeOfPolymerisation.amount", + "weight": 6825, + "max": "1", + "type": "SubstanceAmount" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.structuralRepresentation", + "weight": 6826, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.structuralRepresentation.id", + "weight": 6827, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.structuralRepresentation.extension", + "weight": 6828, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.structuralRepresentation.modifierExtension", + "weight": 6829, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.structuralRepresentation.type", + "weight": 6830, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.structuralRepresentation.representation", + "weight": 6831, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstancePolymer.repeat.repeatUnit.structuralRepresentation.attachment", + "weight": 6832, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "SubstanceProtein", + "weight": 6833, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "SubstanceProtein.id", + "weight": 6834, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceProtein.meta", + "weight": 6835, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "SubstanceProtein.implicitRules", + "weight": 6836, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "SubstanceProtein.language", + "weight": 6837, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SubstanceProtein.text", + "weight": 6838, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "SubstanceProtein.contained", + "weight": 6839, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "SubstanceProtein.extension", + "weight": 6840, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceProtein.modifierExtension", + "weight": 6841, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceProtein.sequenceType", + "weight": 6842, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceProtein.numberOfSubunits", + "weight": 6843, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "SubstanceProtein.disulfideLinkage", + "weight": 6844, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceProtein.subunit", + "weight": 6845, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceProtein.subunit.id", + "weight": 6846, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceProtein.subunit.extension", + "weight": 6847, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceProtein.subunit.modifierExtension", + "weight": 6848, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceProtein.subunit.subunit", + "weight": 6849, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "SubstanceProtein.subunit.sequence", + "weight": 6850, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceProtein.subunit.length", + "weight": 6851, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "SubstanceProtein.subunit.sequenceAttachment", + "weight": 6852, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "SubstanceProtein.subunit.nTerminalModificationId", + "weight": 6853, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "SubstanceProtein.subunit.nTerminalModification", + "weight": 6854, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceProtein.subunit.cTerminalModificationId", + "weight": 6855, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "SubstanceProtein.subunit.cTerminalModification", + "weight": 6856, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation", + "weight": 6857, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.id", + "weight": 6858, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.meta", + "weight": 6859, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.implicitRules", + "weight": 6860, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.language", + "weight": 6861, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.text", + "weight": 6862, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.contained", + "weight": 6863, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.extension", + "weight": 6864, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.modifierExtension", + "weight": 6865, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.comment", + "weight": 6866, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.gene", + "weight": 6867, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.gene.id", + "weight": 6868, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.gene.extension", + "weight": 6869, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.gene.modifierExtension", + "weight": 6870, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.gene.geneSequenceOrigin", + "weight": 6871, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.gene.gene", + "weight": 6872, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.gene.source", + "weight": 6873, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.geneElement", + "weight": 6874, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.geneElement.id", + "weight": 6875, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.geneElement.extension", + "weight": 6876, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.geneElement.modifierExtension", + "weight": 6877, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.geneElement.type", + "weight": 6878, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.geneElement.element", + "weight": 6879, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.geneElement.source", + "weight": 6880, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.classification", + "weight": 6881, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.classification.id", + "weight": 6882, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.classification.extension", + "weight": 6883, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.classification.modifierExtension", + "weight": 6884, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.classification.domain", + "weight": 6885, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.classification.classification", + "weight": 6886, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.classification.subtype", + "weight": 6887, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.classification.source", + "weight": 6888, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target", + "weight": 6889, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target.id", + "weight": 6890, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target.extension", + "weight": 6891, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target.modifierExtension", + "weight": 6892, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target.target", + "weight": 6893, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target.type", + "weight": 6894, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target.interaction", + "weight": 6895, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target.organism", + "weight": 6896, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target.organismType", + "weight": 6897, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target.amountQuantity", + "weight": 6898, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target.amountRange", + "weight": 6898, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target.amountString", + "weight": 6898, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target.amountType", + "weight": 6899, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceReferenceInformation.target.source", + "weight": 6900, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial", + "weight": 6901, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.id", + "weight": 6902, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.meta", + "weight": 6903, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.implicitRules", + "weight": 6904, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.language", + "weight": 6905, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.text", + "weight": 6906, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.contained", + "weight": 6907, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.extension", + "weight": 6908, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.modifierExtension", + "weight": 6909, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.sourceMaterialClass", + "weight": 6910, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.sourceMaterialType", + "weight": 6911, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.sourceMaterialState", + "weight": 6912, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organismId", + "weight": 6913, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organismName", + "weight": 6914, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.parentSubstanceId", + "weight": 6915, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.parentSubstanceName", + "weight": 6916, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.countryOfOrigin", + "weight": 6917, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.geographicalLocation", + "weight": 6918, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.developmentStage", + "weight": 6919, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.fractionDescription", + "weight": 6920, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.fractionDescription.id", + "weight": 6921, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.fractionDescription.extension", + "weight": 6922, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.fractionDescription.modifierExtension", + "weight": 6923, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.fractionDescription.fraction", + "weight": 6924, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.fractionDescription.materialType", + "weight": 6925, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism", + "weight": 6926, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.id", + "weight": 6927, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.extension", + "weight": 6928, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.modifierExtension", + "weight": 6929, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.family", + "weight": 6930, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.genus", + "weight": 6931, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.species", + "weight": 6932, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.intraspecificType", + "weight": 6933, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.intraspecificDescription", + "weight": 6934, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.author", + "weight": 6935, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.author.id", + "weight": 6936, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.author.extension", + "weight": 6937, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.author.modifierExtension", + "weight": 6938, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.author.authorType", + "weight": 6939, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.author.authorDescription", + "weight": 6940, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.hybrid", + "weight": 6941, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.hybrid.id", + "weight": 6942, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.hybrid.extension", + "weight": 6943, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.hybrid.modifierExtension", + "weight": 6944, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.hybrid.maternalOrganismId", + "weight": 6945, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.hybrid.maternalOrganismName", + "weight": 6946, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.hybrid.paternalOrganismId", + "weight": 6947, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.hybrid.paternalOrganismName", + "weight": 6948, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.hybrid.hybridType", + "weight": 6949, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.organismGeneral", + "weight": 6950, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.organismGeneral.id", + "weight": 6951, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.organismGeneral.extension", + "weight": 6952, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.organismGeneral.modifierExtension", + "weight": 6953, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.organismGeneral.kingdom", + "weight": 6954, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.organismGeneral.phylum", + "weight": 6955, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.organismGeneral.class", + "weight": 6956, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.organism.organismGeneral.order", + "weight": 6957, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.partDescription", + "weight": 6958, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.partDescription.id", + "weight": 6959, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.partDescription.extension", + "weight": 6960, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.partDescription.modifierExtension", + "weight": 6961, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.partDescription.part", + "weight": 6962, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSourceMaterial.partDescription.partLocation", + "weight": 6963, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification", + "weight": 6964, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "SubstanceSpecification.id", + "weight": 6965, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSpecification.meta", + "weight": 6966, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "SubstanceSpecification.implicitRules", + "weight": 6967, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "SubstanceSpecification.language", + "weight": 6968, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SubstanceSpecification.text", + "weight": 6969, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "SubstanceSpecification.contained", + "weight": 6970, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "SubstanceSpecification.extension", + "weight": 6971, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.modifierExtension", + "weight": 6972, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.identifier", + "weight": 6973, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "SubstanceSpecification.type", + "weight": 6974, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.status", + "weight": 6975, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.domain", + "weight": 6976, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.description", + "weight": 6977, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSpecification.source", + "weight": 6978, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceSpecification.comment", + "weight": 6979, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSpecification.moiety", + "weight": 6980, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSpecification.moiety.id", + "weight": 6981, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSpecification.moiety.extension", + "weight": 6982, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.moiety.modifierExtension", + "weight": 6983, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.moiety.role", + "weight": 6984, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.moiety.identifier", + "weight": 6985, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "SubstanceSpecification.moiety.name", + "weight": 6986, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSpecification.moiety.stereochemistry", + "weight": 6987, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.moiety.opticalActivity", + "weight": 6988, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.moiety.molecularFormula", + "weight": 6989, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSpecification.moiety.amountQuantity", + "weight": 6990, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "SubstanceSpecification.moiety.amountString", + "weight": 6990, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSpecification.property", + "weight": 6991, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSpecification.property.id", + "weight": 6992, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSpecification.property.extension", + "weight": 6993, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.property.modifierExtension", + "weight": 6994, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.property.category", + "weight": 6995, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.property.code", + "weight": 6996, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.property.parameters", + "weight": 6997, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSpecification.property.definingSubstanceReference", + "weight": 6998, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceSpecification.property.definingSubstanceCodeableConcept", + "weight": 6998, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.property.amountQuantity", + "weight": 6999, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "SubstanceSpecification.property.amountString", + "weight": 6999, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSpecification.referenceInformation", + "weight": 7000, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure", + "weight": 7001, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.id", + "weight": 7002, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.extension", + "weight": 7003, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.modifierExtension", + "weight": 7004, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.stereochemistry", + "weight": 7005, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.opticalActivity", + "weight": 7006, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.molecularFormula", + "weight": 7007, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.molecularFormulaByMoiety", + "weight": 7008, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope", + "weight": 7009, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.id", + "weight": 7010, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.extension", + "weight": 7011, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.modifierExtension", + "weight": 7012, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.identifier", + "weight": 7013, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.name", + "weight": 7014, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.substitution", + "weight": 7015, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.halfLife", + "weight": 7016, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.molecularWeight", + "weight": 7017, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.molecularWeight.id", + "weight": 7018, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.molecularWeight.extension", + "weight": 7019, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.molecularWeight.modifierExtension", + "weight": 7020, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.molecularWeight.method", + "weight": 7021, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.molecularWeight.type", + "weight": 7022, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.isotope.molecularWeight.amount", + "weight": 7023, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.molecularWeight", + "weight": 7024, + "max": "1" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.source", + "weight": 7025, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.representation", + "weight": 7026, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.representation.id", + "weight": 7027, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.representation.extension", + "weight": 7028, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.representation.modifierExtension", + "weight": 7029, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.representation.type", + "weight": 7030, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.representation.representation", + "weight": 7031, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSpecification.structure.representation.attachment", + "weight": 7032, + "max": "1", + "type": "Attachment" + }, + { + "min": 0, + "path": "SubstanceSpecification.code", + "weight": 7033, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSpecification.code.id", + "weight": 7034, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSpecification.code.extension", + "weight": 7035, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.code.modifierExtension", + "weight": 7036, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.code.code", + "weight": 7037, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.code.status", + "weight": 7038, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.code.statusDate", + "weight": 7039, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "SubstanceSpecification.code.comment", + "weight": 7040, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSpecification.code.source", + "weight": 7041, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceSpecification.name", + "weight": 7042, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.id", + "weight": 7043, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.extension", + "weight": 7044, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.modifierExtension", + "weight": 7045, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "SubstanceSpecification.name.name", + "weight": 7046, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.type", + "weight": 7047, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.status", + "weight": 7048, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.preferred", + "weight": 7049, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.language", + "weight": 7050, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.domain", + "weight": 7051, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.jurisdiction", + "weight": 7052, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.synonym", + "weight": 7053, + "max": "*" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.translation", + "weight": 7054, + "max": "*" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.official", + "weight": 7055, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.official.id", + "weight": 7056, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.official.extension", + "weight": 7057, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.official.modifierExtension", + "weight": 7058, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.official.authority", + "weight": 7059, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.official.status", + "weight": 7060, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.official.date", + "weight": 7061, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "SubstanceSpecification.name.source", + "weight": 7062, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceSpecification.molecularWeight", + "weight": 7063, + "max": "*" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship", + "weight": 7064, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.id", + "weight": 7065, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.extension", + "weight": 7066, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.modifierExtension", + "weight": 7067, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.substanceReference", + "weight": 7068, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.substanceCodeableConcept", + "weight": 7068, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.relationship", + "weight": 7069, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.isDefining", + "weight": 7070, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.amountQuantity", + "weight": 7071, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.amountRange", + "weight": 7071, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.amountRatio", + "weight": 7071, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.amountString", + "weight": 7071, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.amountRatioLowLimit", + "weight": 7072, + "max": "1", + "type": "Ratio" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.amountType", + "weight": 7073, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SubstanceSpecification.relationship.source", + "weight": 7074, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceSpecification.nucleicAcid", + "weight": 7075, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceSpecification.polymer", + "weight": 7076, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceSpecification.protein", + "weight": 7077, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SubstanceSpecification.sourceMaterial", + "weight": 7078, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SupplyDelivery", + "weight": 7079, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "SupplyDelivery.id", + "weight": 7080, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SupplyDelivery.meta", + "weight": 7081, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "SupplyDelivery.implicitRules", + "weight": 7082, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "SupplyDelivery.language", + "weight": 7083, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SupplyDelivery.text", + "weight": 7084, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "SupplyDelivery.contained", + "weight": 7085, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "SupplyDelivery.extension", + "weight": 7086, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SupplyDelivery.modifierExtension", + "weight": 7087, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SupplyDelivery.identifier", + "weight": 7088, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "SupplyDelivery.basedOn", + "weight": 7089, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SupplyDelivery.partOf", + "weight": 7090, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SupplyDelivery.status", + "weight": 7091, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SupplyDelivery.patient", + "weight": 7092, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SupplyDelivery.type", + "weight": 7093, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SupplyDelivery.suppliedItem", + "weight": 7094, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SupplyDelivery.suppliedItem.id", + "weight": 7095, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SupplyDelivery.suppliedItem.extension", + "weight": 7096, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SupplyDelivery.suppliedItem.modifierExtension", + "weight": 7097, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SupplyDelivery.suppliedItem.quantity", + "weight": 7098, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "SupplyDelivery.suppliedItem.itemCodeableConcept", + "weight": 7099, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SupplyDelivery.suppliedItem.itemReference", + "weight": 7099, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SupplyDelivery.occurrenceDateTime", + "weight": 7100, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "SupplyDelivery.occurrencePeriod", + "weight": 7100, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "SupplyDelivery.occurrenceTiming", + "weight": 7100, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "SupplyDelivery.supplier", + "weight": 7101, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SupplyDelivery.destination", + "weight": 7102, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SupplyDelivery.receiver", + "weight": 7103, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SupplyRequest", + "weight": 7104, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "SupplyRequest.id", + "weight": 7105, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SupplyRequest.meta", + "weight": 7106, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "SupplyRequest.implicitRules", + "weight": 7107, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "SupplyRequest.language", + "weight": 7108, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SupplyRequest.text", + "weight": 7109, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "SupplyRequest.contained", + "weight": 7110, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "SupplyRequest.extension", + "weight": 7111, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SupplyRequest.modifierExtension", + "weight": 7112, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SupplyRequest.identifier", + "weight": 7113, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "SupplyRequest.status", + "weight": 7114, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "SupplyRequest.category", + "weight": 7115, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SupplyRequest.priority", + "weight": 7116, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "SupplyRequest.itemCodeableConcept", + "weight": 7117, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "SupplyRequest.itemReference", + "weight": 7117, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "SupplyRequest.quantity", + "weight": 7118, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "SupplyRequest.parameter", + "weight": 7119, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "SupplyRequest.parameter.id", + "weight": 7120, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "SupplyRequest.parameter.extension", + "weight": 7121, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SupplyRequest.parameter.modifierExtension", + "weight": 7122, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "SupplyRequest.parameter.code", + "weight": 7123, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SupplyRequest.parameter.valueCodeableConcept", + "weight": 7124, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SupplyRequest.parameter.valueQuantity", + "weight": 7124, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "SupplyRequest.parameter.valueRange", + "weight": 7124, + "max": "1", + "type": "Range" + }, + { + "min": 0, + "path": "SupplyRequest.parameter.valueBoolean", + "weight": 7124, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "SupplyRequest.occurrenceDateTime", + "weight": 7125, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "SupplyRequest.occurrencePeriod", + "weight": 7125, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "SupplyRequest.occurrenceTiming", + "weight": 7125, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "SupplyRequest.authoredOn", + "weight": 7126, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "SupplyRequest.requester", + "weight": 7127, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SupplyRequest.supplier", + "weight": 7128, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SupplyRequest.reasonCode", + "weight": 7129, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "SupplyRequest.reasonReference", + "weight": 7130, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "SupplyRequest.deliverFrom", + "weight": 7131, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "SupplyRequest.deliverTo", + "weight": 7132, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Task", + "weight": 7133, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "Task.id", + "weight": 7134, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Task.meta", + "weight": 7135, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Task.implicitRules", + "weight": 7136, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Task.language", + "weight": 7137, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Task.text", + "weight": 7138, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "Task.contained", + "weight": 7139, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "Task.extension", + "weight": 7140, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Task.modifierExtension", + "weight": 7141, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Task.identifier", + "weight": 7142, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "Task.instantiatesCanonical", + "weight": 7143, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "Task.instantiatesUri", + "weight": 7144, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "Task.basedOn", + "weight": 7145, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Task.groupIdentifier", + "weight": 7146, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "Task.partOf", + "weight": 7147, + "max": "*", + "type": "Reference" + }, + { + "min": 1, + "path": "Task.status", + "weight": 7148, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Task.statusReason", + "weight": 7149, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Task.businessStatus", + "weight": 7150, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Task.intent", + "weight": 7151, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Task.priority", + "weight": 7152, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "Task.code", + "weight": 7153, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Task.description", + "weight": 7154, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "Task.focus", + "weight": 7155, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Task.for", + "weight": 7156, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Task.encounter", + "weight": 7157, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Task.executionPeriod", + "weight": 7158, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Task.authoredOn", + "weight": 7159, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Task.lastModified", + "weight": 7160, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "Task.requester", + "weight": 7161, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Task.performerType", + "weight": 7162, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Task.owner", + "weight": 7163, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Task.location", + "weight": 7164, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Task.reasonCode", + "weight": 7165, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "Task.reasonReference", + "weight": 7166, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "Task.insurance", + "weight": 7167, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Task.note", + "weight": 7168, + "max": "*", + "type": "Annotation" + }, + { + "min": 0, + "path": "Task.relevantHistory", + "weight": 7169, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Task.restriction", + "weight": 7170, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Task.restriction.id", + "weight": 7171, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Task.restriction.extension", + "weight": 7172, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Task.restriction.modifierExtension", + "weight": 7173, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Task.restriction.repetitions", + "weight": 7174, + "max": "1", + "type": "positiveInt" + }, + { + "min": 0, + "path": "Task.restriction.period", + "weight": 7175, + "max": "1", + "type": "Period" + }, + { + "min": 0, + "path": "Task.restriction.recipient", + "weight": 7176, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "Task.input", + "weight": 7177, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Task.input.id", + "weight": 7178, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Task.input.extension", + "weight": 7179, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Task.input.modifierExtension", + "weight": 7180, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Task.input.type", + "weight": 7181, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Task.input.valueBase64Binary", + "weight": 7182, + "max": "1", + "type": "base64Binary" + }, + { + "min": 1, + "path": "Task.input.valueBoolean", + "weight": 7182, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "Task.input.valueCanonical", + "weight": 7182, + "max": "1", + "type": "canonical" + }, + { + "min": 1, + "path": "Task.input.valueCode", + "weight": 7182, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Task.input.valueDate", + "weight": 7182, + "max": "1", + "type": "date" + }, + { + "min": 1, + "path": "Task.input.valueDateTime", + "weight": 7182, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "Task.input.valueDecimal", + "weight": 7182, + "max": "1", + "type": "decimal" + }, + { + "min": 1, + "path": "Task.input.valueId", + "weight": 7182, + "max": "1", + "type": "id" + }, + { + "min": 1, + "path": "Task.input.valueInstant", + "weight": 7182, + "max": "1", + "type": "instant" + }, + { + "min": 1, + "path": "Task.input.valueInteger", + "weight": 7182, + "max": "1", + "type": "integer" + }, + { + "min": 1, + "path": "Task.input.valueMarkdown", + "weight": 7182, + "max": "1", + "type": "markdown" + }, + { + "min": 1, + "path": "Task.input.valueOid", + "weight": 7182, + "max": "1", + "type": "oid" + }, + { + "min": 1, + "path": "Task.input.valuePositiveInt", + "weight": 7182, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "Task.input.valueString", + "weight": 7182, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Task.input.valueTime", + "weight": 7182, + "max": "1", + "type": "time" + }, + { + "min": 1, + "path": "Task.input.valueUnsignedInt", + "weight": 7182, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 1, + "path": "Task.input.valueUri", + "weight": 7182, + "max": "1", + "type": "uri" + }, + { + "min": 1, + "path": "Task.input.valueUrl", + "weight": 7182, + "max": "1", + "type": "url" + }, + { + "min": 1, + "path": "Task.input.valueUuid", + "weight": 7182, + "max": "1", + "type": "uuid" + }, + { + "min": 1, + "path": "Task.input.valueAddress", + "weight": 7182, + "max": "1", + "type": "Address" + }, + { + "min": 1, + "path": "Task.input.valueAge", + "weight": 7182, + "max": "1", + "type": "Age" + }, + { + "min": 1, + "path": "Task.input.valueAnnotation", + "weight": 7182, + "max": "1", + "type": "Annotation" + }, + { + "min": 1, + "path": "Task.input.valueAttachment", + "weight": 7182, + "max": "1", + "type": "Attachment" + }, + { + "min": 1, + "path": "Task.input.valueCodeableConcept", + "weight": 7182, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Task.input.valueCoding", + "weight": 7182, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "Task.input.valueContactPoint", + "weight": 7182, + "max": "1", + "type": "ContactPoint" + }, + { + "min": 1, + "path": "Task.input.valueCount", + "weight": 7182, + "max": "1", + "type": "Count" + }, + { + "min": 1, + "path": "Task.input.valueDistance", + "weight": 7182, + "max": "1", + "type": "Distance" + }, + { + "min": 1, + "path": "Task.input.valueDuration", + "weight": 7182, + "max": "1", + "type": "Duration" + }, + { + "min": 1, + "path": "Task.input.valueHumanName", + "weight": 7182, + "max": "1", + "type": "HumanName" + }, + { + "min": 1, + "path": "Task.input.valueIdentifier", + "weight": 7182, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "Task.input.valueMoney", + "weight": 7182, + "max": "1", + "type": "Money" + }, + { + "min": 1, + "path": "Task.input.valuePeriod", + "weight": 7182, + "max": "1", + "type": "Period" + }, + { + "min": 1, + "path": "Task.input.valueQuantity", + "weight": 7182, + "max": "1", + "type": "Quantity" + }, + { + "min": 1, + "path": "Task.input.valueRange", + "weight": 7182, + "max": "1", + "type": "Range" + }, + { + "min": 1, + "path": "Task.input.valueRatio", + "weight": 7182, + "max": "1", + "type": "Ratio" + }, + { + "min": 1, + "path": "Task.input.valueReference", + "weight": 7182, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "Task.input.valueSampledData", + "weight": 7182, + "max": "1", + "type": "SampledData" + }, + { + "min": 1, + "path": "Task.input.valueSignature", + "weight": 7182, + "max": "1", + "type": "Signature" + }, + { + "min": 1, + "path": "Task.input.valueTiming", + "weight": 7182, + "max": "1", + "type": "Timing" + }, + { + "min": 1, + "path": "Task.input.valueContactDetail", + "weight": 7182, + "max": "1", + "type": "ContactDetail" + }, + { + "min": 1, + "path": "Task.input.valueContributor", + "weight": 7182, + "max": "1", + "type": "Contributor" + }, + { + "min": 1, + "path": "Task.input.valueDataRequirement", + "weight": 7182, + "max": "1", + "type": "DataRequirement" + }, + { + "min": 1, + "path": "Task.input.valueExpression", + "weight": 7182, + "max": "1", + "type": "Expression" + }, + { + "min": 1, + "path": "Task.input.valueParameterDefinition", + "weight": 7182, + "max": "1", + "type": "ParameterDefinition" + }, + { + "min": 1, + "path": "Task.input.valueRelatedArtifact", + "weight": 7182, + "max": "1", + "type": "RelatedArtifact" + }, + { + "min": 1, + "path": "Task.input.valueTriggerDefinition", + "weight": 7182, + "max": "1", + "type": "TriggerDefinition" + }, + { + "min": 1, + "path": "Task.input.valueUsageContext", + "weight": 7182, + "max": "1", + "type": "UsageContext" + }, + { + "min": 1, + "path": "Task.input.valueDosage", + "weight": 7182, + "max": "1", + "type": "Dosage" + }, + { + "min": 1, + "path": "Task.input.valueMeta", + "weight": 7182, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "Task.output", + "weight": 7183, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "Task.output.id", + "weight": 7184, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "Task.output.extension", + "weight": 7185, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "Task.output.modifierExtension", + "weight": 7186, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "Task.output.type", + "weight": 7187, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Task.output.valueBase64Binary", + "weight": 7188, + "max": "1", + "type": "base64Binary" + }, + { + "min": 1, + "path": "Task.output.valueBoolean", + "weight": 7188, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "Task.output.valueCanonical", + "weight": 7188, + "max": "1", + "type": "canonical" + }, + { + "min": 1, + "path": "Task.output.valueCode", + "weight": 7188, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "Task.output.valueDate", + "weight": 7188, + "max": "1", + "type": "date" + }, + { + "min": 1, + "path": "Task.output.valueDateTime", + "weight": 7188, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "Task.output.valueDecimal", + "weight": 7188, + "max": "1", + "type": "decimal" + }, + { + "min": 1, + "path": "Task.output.valueId", + "weight": 7188, + "max": "1", + "type": "id" + }, + { + "min": 1, + "path": "Task.output.valueInstant", + "weight": 7188, + "max": "1", + "type": "instant" + }, + { + "min": 1, + "path": "Task.output.valueInteger", + "weight": 7188, + "max": "1", + "type": "integer" + }, + { + "min": 1, + "path": "Task.output.valueMarkdown", + "weight": 7188, + "max": "1", + "type": "markdown" + }, + { + "min": 1, + "path": "Task.output.valueOid", + "weight": 7188, + "max": "1", + "type": "oid" + }, + { + "min": 1, + "path": "Task.output.valuePositiveInt", + "weight": 7188, + "max": "1", + "type": "positiveInt" + }, + { + "min": 1, + "path": "Task.output.valueString", + "weight": 7188, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "Task.output.valueTime", + "weight": 7188, + "max": "1", + "type": "time" + }, + { + "min": 1, + "path": "Task.output.valueUnsignedInt", + "weight": 7188, + "max": "1", + "type": "unsignedInt" + }, + { + "min": 1, + "path": "Task.output.valueUri", + "weight": 7188, + "max": "1", + "type": "uri" + }, + { + "min": 1, + "path": "Task.output.valueUrl", + "weight": 7188, + "max": "1", + "type": "url" + }, + { + "min": 1, + "path": "Task.output.valueUuid", + "weight": 7188, + "max": "1", + "type": "uuid" + }, + { + "min": 1, + "path": "Task.output.valueAddress", + "weight": 7188, + "max": "1", + "type": "Address" + }, + { + "min": 1, + "path": "Task.output.valueAge", + "weight": 7188, + "max": "1", + "type": "Age" + }, + { + "min": 1, + "path": "Task.output.valueAnnotation", + "weight": 7188, + "max": "1", + "type": "Annotation" + }, + { + "min": 1, + "path": "Task.output.valueAttachment", + "weight": 7188, + "max": "1", + "type": "Attachment" + }, + { + "min": 1, + "path": "Task.output.valueCodeableConcept", + "weight": 7188, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "Task.output.valueCoding", + "weight": 7188, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "Task.output.valueContactPoint", + "weight": 7188, + "max": "1", + "type": "ContactPoint" + }, + { + "min": 1, + "path": "Task.output.valueCount", + "weight": 7188, + "max": "1", + "type": "Count" + }, + { + "min": 1, + "path": "Task.output.valueDistance", + "weight": 7188, + "max": "1", + "type": "Distance" + }, + { + "min": 1, + "path": "Task.output.valueDuration", + "weight": 7188, + "max": "1", + "type": "Duration" + }, + { + "min": 1, + "path": "Task.output.valueHumanName", + "weight": 7188, + "max": "1", + "type": "HumanName" + }, + { + "min": 1, + "path": "Task.output.valueIdentifier", + "weight": 7188, + "max": "1", + "type": "Identifier" + }, + { + "min": 1, + "path": "Task.output.valueMoney", + "weight": 7188, + "max": "1", + "type": "Money" + }, + { + "min": 1, + "path": "Task.output.valuePeriod", + "weight": 7188, + "max": "1", + "type": "Period" + }, + { + "min": 1, + "path": "Task.output.valueQuantity", + "weight": 7188, + "max": "1", + "type": "Quantity" + }, + { + "min": 1, + "path": "Task.output.valueRange", + "weight": 7188, + "max": "1", + "type": "Range" + }, + { + "min": 1, + "path": "Task.output.valueRatio", + "weight": 7188, + "max": "1", + "type": "Ratio" + }, + { + "min": 1, + "path": "Task.output.valueReference", + "weight": 7188, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "Task.output.valueSampledData", + "weight": 7188, + "max": "1", + "type": "SampledData" + }, + { + "min": 1, + "path": "Task.output.valueSignature", + "weight": 7188, + "max": "1", + "type": "Signature" + }, + { + "min": 1, + "path": "Task.output.valueTiming", + "weight": 7188, + "max": "1", + "type": "Timing" + }, + { + "min": 1, + "path": "Task.output.valueContactDetail", + "weight": 7188, + "max": "1", + "type": "ContactDetail" + }, + { + "min": 1, + "path": "Task.output.valueContributor", + "weight": 7188, + "max": "1", + "type": "Contributor" + }, + { + "min": 1, + "path": "Task.output.valueDataRequirement", + "weight": 7188, + "max": "1", + "type": "DataRequirement" + }, + { + "min": 1, + "path": "Task.output.valueExpression", + "weight": 7188, + "max": "1", + "type": "Expression" + }, + { + "min": 1, + "path": "Task.output.valueParameterDefinition", + "weight": 7188, + "max": "1", + "type": "ParameterDefinition" + }, + { + "min": 1, + "path": "Task.output.valueRelatedArtifact", + "weight": 7188, + "max": "1", + "type": "RelatedArtifact" + }, + { + "min": 1, + "path": "Task.output.valueTriggerDefinition", + "weight": 7188, + "max": "1", + "type": "TriggerDefinition" + }, + { + "min": 1, + "path": "Task.output.valueUsageContext", + "weight": 7188, + "max": "1", + "type": "UsageContext" + }, + { + "min": 1, + "path": "Task.output.valueDosage", + "weight": 7188, + "max": "1", + "type": "Dosage" + }, + { + "min": 1, + "path": "Task.output.valueMeta", + "weight": 7188, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "TerminologyCapabilities", + "weight": 7189, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "TerminologyCapabilities.id", + "weight": 7190, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TerminologyCapabilities.meta", + "weight": 7191, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "TerminologyCapabilities.implicitRules", + "weight": 7192, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "TerminologyCapabilities.language", + "weight": 7193, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TerminologyCapabilities.text", + "weight": 7194, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "TerminologyCapabilities.contained", + "weight": 7195, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "TerminologyCapabilities.extension", + "weight": 7196, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.modifierExtension", + "weight": 7197, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.url", + "weight": 7198, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "TerminologyCapabilities.version", + "weight": 7199, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TerminologyCapabilities.name", + "weight": 7200, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TerminologyCapabilities.title", + "weight": 7201, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "TerminologyCapabilities.status", + "weight": 7202, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TerminologyCapabilities.experimental", + "weight": 7203, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "TerminologyCapabilities.date", + "weight": 7204, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "TerminologyCapabilities.publisher", + "weight": 7205, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TerminologyCapabilities.contact", + "weight": 7206, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "TerminologyCapabilities.description", + "weight": 7207, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "TerminologyCapabilities.useContext", + "weight": 7208, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "TerminologyCapabilities.jurisdiction", + "weight": 7209, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "TerminologyCapabilities.purpose", + "weight": 7210, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "TerminologyCapabilities.copyright", + "weight": 7211, + "max": "1", + "type": "markdown" + }, + { + "min": 1, + "path": "TerminologyCapabilities.kind", + "weight": 7212, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TerminologyCapabilities.software", + "weight": 7213, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TerminologyCapabilities.software.id", + "weight": 7214, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TerminologyCapabilities.software.extension", + "weight": 7215, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.software.modifierExtension", + "weight": 7216, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TerminologyCapabilities.software.name", + "weight": 7217, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TerminologyCapabilities.software.version", + "weight": 7218, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TerminologyCapabilities.implementation", + "weight": 7219, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TerminologyCapabilities.implementation.id", + "weight": 7220, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TerminologyCapabilities.implementation.extension", + "weight": 7221, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.implementation.modifierExtension", + "weight": 7222, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TerminologyCapabilities.implementation.description", + "weight": 7223, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TerminologyCapabilities.implementation.url", + "weight": 7224, + "max": "1", + "type": "url" + }, + { + "min": 0, + "path": "TerminologyCapabilities.lockedDate", + "weight": 7225, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem", + "weight": 7226, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.id", + "weight": 7227, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.extension", + "weight": 7228, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.modifierExtension", + "weight": 7229, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.uri", + "weight": 7230, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.version", + "weight": 7231, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.version.id", + "weight": 7232, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.version.extension", + "weight": 7233, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.version.modifierExtension", + "weight": 7234, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.version.code", + "weight": 7235, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.version.isDefault", + "weight": 7236, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.version.compositional", + "weight": 7237, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.version.language", + "weight": 7238, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.version.filter", + "weight": 7239, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.version.filter.id", + "weight": 7240, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.version.filter.extension", + "weight": 7241, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.version.filter.modifierExtension", + "weight": 7242, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TerminologyCapabilities.codeSystem.version.filter.code", + "weight": 7243, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "TerminologyCapabilities.codeSystem.version.filter.op", + "weight": 7244, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.version.property", + "weight": 7245, + "max": "*", + "type": "code" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSystem.subsumption", + "weight": 7246, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TerminologyCapabilities.expansion", + "weight": 7247, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TerminologyCapabilities.expansion.id", + "weight": 7248, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TerminologyCapabilities.expansion.extension", + "weight": 7249, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.expansion.modifierExtension", + "weight": 7250, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.expansion.hierarchical", + "weight": 7251, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TerminologyCapabilities.expansion.paging", + "weight": 7252, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TerminologyCapabilities.expansion.incomplete", + "weight": 7253, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TerminologyCapabilities.expansion.parameter", + "weight": 7254, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TerminologyCapabilities.expansion.parameter.id", + "weight": 7255, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TerminologyCapabilities.expansion.parameter.extension", + "weight": 7256, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.expansion.parameter.modifierExtension", + "weight": 7257, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TerminologyCapabilities.expansion.parameter.name", + "weight": 7258, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TerminologyCapabilities.expansion.parameter.documentation", + "weight": 7259, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TerminologyCapabilities.expansion.textFilter", + "weight": 7260, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "TerminologyCapabilities.codeSearch", + "weight": 7261, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TerminologyCapabilities.validateCode", + "weight": 7262, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TerminologyCapabilities.validateCode.id", + "weight": 7263, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TerminologyCapabilities.validateCode.extension", + "weight": 7264, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.validateCode.modifierExtension", + "weight": 7265, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TerminologyCapabilities.validateCode.translations", + "weight": 7266, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TerminologyCapabilities.translation", + "weight": 7267, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TerminologyCapabilities.translation.id", + "weight": 7268, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TerminologyCapabilities.translation.extension", + "weight": 7269, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.translation.modifierExtension", + "weight": 7270, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TerminologyCapabilities.translation.needsMap", + "weight": 7271, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TerminologyCapabilities.closure", + "weight": 7272, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TerminologyCapabilities.closure.id", + "weight": 7273, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TerminologyCapabilities.closure.extension", + "weight": 7274, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.closure.modifierExtension", + "weight": 7275, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TerminologyCapabilities.closure.translation", + "weight": 7276, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TestReport", + "weight": 7277, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "TestReport.id", + "weight": 7278, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestReport.meta", + "weight": 7279, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "TestReport.implicitRules", + "weight": 7280, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "TestReport.language", + "weight": 7281, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestReport.text", + "weight": 7282, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "TestReport.contained", + "weight": 7283, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "TestReport.extension", + "weight": 7284, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.modifierExtension", + "weight": 7285, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.identifier", + "weight": 7286, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "TestReport.name", + "weight": 7287, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "TestReport.status", + "weight": 7288, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "TestReport.testScript", + "weight": 7289, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "TestReport.result", + "weight": 7290, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestReport.score", + "weight": 7291, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "TestReport.tester", + "weight": 7292, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestReport.issued", + "weight": 7293, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "TestReport.participant", + "weight": 7294, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestReport.participant.id", + "weight": 7295, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestReport.participant.extension", + "weight": 7296, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.participant.modifierExtension", + "weight": 7297, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestReport.participant.type", + "weight": 7298, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "TestReport.participant.uri", + "weight": 7299, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "TestReport.participant.display", + "weight": 7300, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestReport.setup", + "weight": 7301, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestReport.setup.id", + "weight": 7302, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestReport.setup.extension", + "weight": 7303, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.setup.modifierExtension", + "weight": 7304, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestReport.setup.action", + "weight": 7305, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestReport.setup.action.id", + "weight": 7306, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestReport.setup.action.extension", + "weight": 7307, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.setup.action.modifierExtension", + "weight": 7308, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.setup.action.operation", + "weight": 7309, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestReport.setup.action.operation.id", + "weight": 7310, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestReport.setup.action.operation.extension", + "weight": 7311, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.setup.action.operation.modifierExtension", + "weight": 7312, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestReport.setup.action.operation.result", + "weight": 7313, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestReport.setup.action.operation.message", + "weight": 7314, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "TestReport.setup.action.operation.detail", + "weight": 7315, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "TestReport.setup.action.assert", + "weight": 7316, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestReport.setup.action.assert.id", + "weight": 7317, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestReport.setup.action.assert.extension", + "weight": 7318, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.setup.action.assert.modifierExtension", + "weight": 7319, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestReport.setup.action.assert.result", + "weight": 7320, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestReport.setup.action.assert.message", + "weight": 7321, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "TestReport.setup.action.assert.detail", + "weight": 7322, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestReport.test", + "weight": 7323, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestReport.test.id", + "weight": 7324, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestReport.test.extension", + "weight": 7325, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.test.modifierExtension", + "weight": 7326, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.test.name", + "weight": 7327, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestReport.test.description", + "weight": 7328, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "TestReport.test.action", + "weight": 7329, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestReport.test.action.id", + "weight": 7330, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestReport.test.action.extension", + "weight": 7331, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.test.action.modifierExtension", + "weight": 7332, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.test.action.operation", + "weight": 7333, + "max": "1" + }, + { + "min": 0, + "path": "TestReport.test.action.assert", + "weight": 7334, + "max": "1" + }, + { + "min": 0, + "path": "TestReport.teardown", + "weight": 7335, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestReport.teardown.id", + "weight": 7336, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestReport.teardown.extension", + "weight": 7337, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.teardown.modifierExtension", + "weight": 7338, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestReport.teardown.action", + "weight": 7339, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestReport.teardown.action.id", + "weight": 7340, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestReport.teardown.action.extension", + "weight": 7341, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestReport.teardown.action.modifierExtension", + "weight": 7342, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestReport.teardown.action.operation", + "weight": 7343, + "max": "1" + }, + { + "min": 0, + "path": "TestScript", + "weight": 7344, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "TestScript.id", + "weight": 7345, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.meta", + "weight": 7346, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "TestScript.implicitRules", + "weight": 7347, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "TestScript.language", + "weight": 7348, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestScript.text", + "weight": 7349, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "TestScript.contained", + "weight": 7350, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "TestScript.extension", + "weight": 7351, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.modifierExtension", + "weight": 7352, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestScript.url", + "weight": 7353, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "TestScript.identifier", + "weight": 7354, + "max": "1", + "type": "Identifier" + }, + { + "min": 0, + "path": "TestScript.version", + "weight": 7355, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "TestScript.name", + "weight": 7356, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.title", + "weight": 7357, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "TestScript.status", + "weight": 7358, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestScript.experimental", + "weight": 7359, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TestScript.date", + "weight": 7360, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "TestScript.publisher", + "weight": 7361, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.contact", + "weight": 7362, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "TestScript.description", + "weight": 7363, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "TestScript.useContext", + "weight": 7364, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "TestScript.jurisdiction", + "weight": 7365, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "TestScript.purpose", + "weight": 7366, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "TestScript.copyright", + "weight": 7367, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "TestScript.origin", + "weight": 7368, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.origin.id", + "weight": 7369, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.origin.extension", + "weight": 7370, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.origin.modifierExtension", + "weight": 7371, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestScript.origin.index", + "weight": 7372, + "max": "1", + "type": "integer" + }, + { + "min": 1, + "path": "TestScript.origin.profile", + "weight": 7373, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "TestScript.destination", + "weight": 7374, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.destination.id", + "weight": 7375, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.destination.extension", + "weight": 7376, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.destination.modifierExtension", + "weight": 7377, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestScript.destination.index", + "weight": 7378, + "max": "1", + "type": "integer" + }, + { + "min": 1, + "path": "TestScript.destination.profile", + "weight": 7379, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "TestScript.metadata", + "weight": 7380, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.metadata.id", + "weight": 7381, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.metadata.extension", + "weight": 7382, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.metadata.modifierExtension", + "weight": 7383, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.metadata.link", + "weight": 7384, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.metadata.link.id", + "weight": 7385, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.metadata.link.extension", + "weight": 7386, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.metadata.link.modifierExtension", + "weight": 7387, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestScript.metadata.link.url", + "weight": 7388, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "TestScript.metadata.link.description", + "weight": 7389, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "TestScript.metadata.capability", + "weight": 7390, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.metadata.capability.id", + "weight": 7391, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.metadata.capability.extension", + "weight": 7392, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.metadata.capability.modifierExtension", + "weight": 7393, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestScript.metadata.capability.required", + "weight": 7394, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "TestScript.metadata.capability.validated", + "weight": 7395, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TestScript.metadata.capability.description", + "weight": 7396, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.metadata.capability.origin", + "weight": 7397, + "max": "*", + "type": "integer" + }, + { + "min": 0, + "path": "TestScript.metadata.capability.destination", + "weight": 7398, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "TestScript.metadata.capability.link", + "weight": 7399, + "max": "*", + "type": "uri" + }, + { + "min": 1, + "path": "TestScript.metadata.capability.capabilities", + "weight": 7400, + "max": "1", + "type": "canonical" + }, + { + "min": 0, + "path": "TestScript.fixture", + "weight": 7401, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.fixture.id", + "weight": 7402, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.fixture.extension", + "weight": 7403, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.fixture.modifierExtension", + "weight": 7404, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestScript.fixture.autocreate", + "weight": 7405, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "TestScript.fixture.autodelete", + "weight": 7406, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TestScript.fixture.resource", + "weight": 7407, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "TestScript.profile", + "weight": 7408, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "TestScript.variable", + "weight": 7409, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.variable.id", + "weight": 7410, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.variable.extension", + "weight": 7411, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.variable.modifierExtension", + "weight": 7412, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestScript.variable.name", + "weight": 7413, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.variable.defaultValue", + "weight": 7414, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.variable.description", + "weight": 7415, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.variable.expression", + "weight": 7416, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.variable.headerField", + "weight": 7417, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.variable.hint", + "weight": 7418, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.variable.path", + "weight": 7419, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.variable.sourceId", + "weight": 7420, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "TestScript.setup", + "weight": 7421, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.setup.id", + "weight": 7422, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.setup.extension", + "weight": 7423, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.setup.modifierExtension", + "weight": 7424, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestScript.setup.action", + "weight": 7425, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.setup.action.id", + "weight": 7426, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.setup.action.extension", + "weight": 7427, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.setup.action.modifierExtension", + "weight": 7428, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation", + "weight": 7429, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.id", + "weight": 7430, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.extension", + "weight": 7431, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.modifierExtension", + "weight": 7432, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.type", + "weight": 7433, + "max": "1", + "type": "Coding" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.resource", + "weight": 7434, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.label", + "weight": 7435, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.description", + "weight": 7436, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.accept", + "weight": 7437, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.contentType", + "weight": 7438, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.destination", + "weight": 7439, + "max": "1", + "type": "integer" + }, + { + "min": 1, + "path": "TestScript.setup.action.operation.encodeRequestUrl", + "weight": 7440, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.method", + "weight": 7441, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.origin", + "weight": 7442, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.params", + "weight": 7443, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.requestHeader", + "weight": 7444, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.requestHeader.id", + "weight": 7445, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.requestHeader.extension", + "weight": 7446, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.requestHeader.modifierExtension", + "weight": 7447, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestScript.setup.action.operation.requestHeader.field", + "weight": 7448, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "TestScript.setup.action.operation.requestHeader.value", + "weight": 7449, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.requestId", + "weight": 7450, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.responseId", + "weight": 7451, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.sourceId", + "weight": 7452, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.targetId", + "weight": 7453, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "TestScript.setup.action.operation.url", + "weight": 7454, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert", + "weight": 7455, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.id", + "weight": 7456, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.extension", + "weight": 7457, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.modifierExtension", + "weight": 7458, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.label", + "weight": 7459, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.description", + "weight": 7460, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.direction", + "weight": 7461, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.compareToSourceId", + "weight": 7462, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.compareToSourceExpression", + "weight": 7463, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.compareToSourcePath", + "weight": 7464, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.contentType", + "weight": 7465, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.expression", + "weight": 7466, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.headerField", + "weight": 7467, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.minimumId", + "weight": 7468, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.navigationLinks", + "weight": 7469, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.operator", + "weight": 7470, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.path", + "weight": 7471, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.requestMethod", + "weight": 7472, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.requestURL", + "weight": 7473, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.resource", + "weight": 7474, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.response", + "weight": 7475, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.responseCode", + "weight": 7476, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.sourceId", + "weight": 7477, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.validateProfileId", + "weight": 7478, + "max": "1", + "type": "id" + }, + { + "min": 0, + "path": "TestScript.setup.action.assert.value", + "weight": 7479, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "TestScript.setup.action.assert.warningOnly", + "weight": 7480, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "TestScript.test", + "weight": 7481, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.test.id", + "weight": 7482, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.test.extension", + "weight": 7483, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.test.modifierExtension", + "weight": 7484, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.test.name", + "weight": 7485, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "TestScript.test.description", + "weight": 7486, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "TestScript.test.action", + "weight": 7487, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.test.action.id", + "weight": 7488, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.test.action.extension", + "weight": 7489, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.test.action.modifierExtension", + "weight": 7490, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.test.action.operation", + "weight": 7491, + "max": "1" + }, + { + "min": 0, + "path": "TestScript.test.action.assert", + "weight": 7492, + "max": "1" + }, + { + "min": 0, + "path": "TestScript.teardown", + "weight": 7493, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.teardown.id", + "weight": 7494, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.teardown.extension", + "weight": 7495, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.teardown.modifierExtension", + "weight": 7496, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestScript.teardown.action", + "weight": 7497, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "TestScript.teardown.action.id", + "weight": 7498, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "TestScript.teardown.action.extension", + "weight": 7499, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "TestScript.teardown.action.modifierExtension", + "weight": 7500, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "TestScript.teardown.action.operation", + "weight": 7501, + "max": "1" + }, + { + "min": 0, + "path": "ValueSet", + "weight": 7502, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "ValueSet.id", + "weight": 7503, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ValueSet.meta", + "weight": 7504, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "ValueSet.implicitRules", + "weight": 7505, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ValueSet.language", + "weight": 7506, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ValueSet.text", + "weight": 7507, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "ValueSet.contained", + "weight": 7508, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "ValueSet.extension", + "weight": 7509, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.modifierExtension", + "weight": 7510, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.url", + "weight": 7511, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ValueSet.identifier", + "weight": 7512, + "max": "*", + "type": "Identifier" + }, + { + "min": 0, + "path": "ValueSet.version", + "weight": 7513, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ValueSet.name", + "weight": 7514, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ValueSet.title", + "weight": 7515, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "ValueSet.status", + "weight": 7516, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ValueSet.experimental", + "weight": 7517, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ValueSet.date", + "weight": 7518, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ValueSet.publisher", + "weight": 7519, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ValueSet.contact", + "weight": 7520, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "ValueSet.description", + "weight": 7521, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ValueSet.useContext", + "weight": 7522, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "ValueSet.jurisdiction", + "weight": 7523, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "ValueSet.immutable", + "weight": 7524, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ValueSet.purpose", + "weight": 7525, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ValueSet.copyright", + "weight": 7526, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "ValueSet.compose", + "weight": 7527, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ValueSet.compose.id", + "weight": 7528, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ValueSet.compose.extension", + "weight": 7529, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.compose.modifierExtension", + "weight": 7530, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.compose.lockedDate", + "weight": 7531, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "ValueSet.compose.inactive", + "weight": 7532, + "max": "1", + "type": "boolean" + }, + { + "min": 1, + "path": "ValueSet.compose.include", + "weight": 7533, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ValueSet.compose.include.id", + "weight": 7534, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ValueSet.compose.include.extension", + "weight": 7535, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.compose.include.modifierExtension", + "weight": 7536, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.compose.include.system", + "weight": 7537, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ValueSet.compose.include.version", + "weight": 7538, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ValueSet.compose.include.concept", + "weight": 7539, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ValueSet.compose.include.concept.id", + "weight": 7540, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ValueSet.compose.include.concept.extension", + "weight": 7541, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.compose.include.concept.modifierExtension", + "weight": 7542, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ValueSet.compose.include.concept.code", + "weight": 7543, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ValueSet.compose.include.concept.display", + "weight": 7544, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ValueSet.compose.include.concept.designation", + "weight": 7545, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ValueSet.compose.include.concept.designation.id", + "weight": 7546, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ValueSet.compose.include.concept.designation.extension", + "weight": 7547, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.compose.include.concept.designation.modifierExtension", + "weight": 7548, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.compose.include.concept.designation.language", + "weight": 7549, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ValueSet.compose.include.concept.designation.use", + "weight": 7550, + "max": "1", + "type": "Coding" + }, + { + "min": 1, + "path": "ValueSet.compose.include.concept.designation.value", + "weight": 7551, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ValueSet.compose.include.filter", + "weight": 7552, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ValueSet.compose.include.filter.id", + "weight": 7553, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ValueSet.compose.include.filter.extension", + "weight": 7554, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.compose.include.filter.modifierExtension", + "weight": 7555, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ValueSet.compose.include.filter.property", + "weight": 7556, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ValueSet.compose.include.filter.op", + "weight": 7557, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "ValueSet.compose.include.filter.value", + "weight": 7558, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ValueSet.compose.include.valueSet", + "weight": 7559, + "max": "*", + "type": "canonical" + }, + { + "min": 0, + "path": "ValueSet.compose.exclude", + "weight": 7560, + "max": "*" + }, + { + "min": 0, + "path": "ValueSet.expansion", + "weight": 7561, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ValueSet.expansion.id", + "weight": 7562, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ValueSet.expansion.extension", + "weight": 7563, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.expansion.modifierExtension", + "weight": 7564, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.expansion.identifier", + "weight": 7565, + "max": "1", + "type": "uri" + }, + { + "min": 1, + "path": "ValueSet.expansion.timestamp", + "weight": 7566, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ValueSet.expansion.total", + "weight": 7567, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "ValueSet.expansion.offset", + "weight": 7568, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "ValueSet.expansion.parameter", + "weight": 7569, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ValueSet.expansion.parameter.id", + "weight": 7570, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ValueSet.expansion.parameter.extension", + "weight": 7571, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.expansion.parameter.modifierExtension", + "weight": 7572, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "ValueSet.expansion.parameter.name", + "weight": 7573, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ValueSet.expansion.parameter.valueString", + "weight": 7574, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ValueSet.expansion.parameter.valueBoolean", + "weight": 7574, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ValueSet.expansion.parameter.valueInteger", + "weight": 7574, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "ValueSet.expansion.parameter.valueDecimal", + "weight": 7574, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "ValueSet.expansion.parameter.valueUri", + "weight": 7574, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ValueSet.expansion.parameter.valueCode", + "weight": 7574, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ValueSet.expansion.parameter.valueDateTime", + "weight": 7574, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "ValueSet.expansion.contains", + "weight": 7575, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "ValueSet.expansion.contains.id", + "weight": 7576, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "ValueSet.expansion.contains.extension", + "weight": 7577, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.expansion.contains.modifierExtension", + "weight": 7578, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "ValueSet.expansion.contains.system", + "weight": 7579, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "ValueSet.expansion.contains.abstract", + "weight": 7580, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ValueSet.expansion.contains.inactive", + "weight": 7581, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "ValueSet.expansion.contains.version", + "weight": 7582, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ValueSet.expansion.contains.code", + "weight": 7583, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "ValueSet.expansion.contains.display", + "weight": 7584, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "ValueSet.expansion.contains.designation", + "weight": 7585, + "max": "*" + }, + { + "min": 0, + "path": "ValueSet.expansion.contains.contains", + "weight": 7586, + "max": "*" + }, + { + "min": 0, + "path": "VerificationResult", + "weight": 7587, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "VerificationResult.id", + "weight": 7588, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "VerificationResult.meta", + "weight": 7589, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "VerificationResult.implicitRules", + "weight": 7590, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "VerificationResult.language", + "weight": 7591, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "VerificationResult.text", + "weight": 7592, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "VerificationResult.contained", + "weight": 7593, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "VerificationResult.extension", + "weight": 7594, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "VerificationResult.modifierExtension", + "weight": 7595, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "VerificationResult.target", + "weight": 7596, + "max": "*", + "type": "Reference" + }, + { + "min": 0, + "path": "VerificationResult.targetLocation", + "weight": 7597, + "max": "*", + "type": "string" + }, + { + "min": 0, + "path": "VerificationResult.need", + "weight": 7598, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "VerificationResult.status", + "weight": 7599, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "VerificationResult.statusDate", + "weight": 7600, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "VerificationResult.validationType", + "weight": 7601, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "VerificationResult.validationProcess", + "weight": 7602, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "VerificationResult.frequency", + "weight": 7603, + "max": "1", + "type": "Timing" + }, + { + "min": 0, + "path": "VerificationResult.lastPerformed", + "weight": 7604, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "VerificationResult.nextScheduled", + "weight": 7605, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "VerificationResult.failureAction", + "weight": 7606, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "VerificationResult.primarySource", + "weight": 7607, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "VerificationResult.primarySource.id", + "weight": 7608, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "VerificationResult.primarySource.extension", + "weight": 7609, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "VerificationResult.primarySource.modifierExtension", + "weight": 7610, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "VerificationResult.primarySource.who", + "weight": 7611, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "VerificationResult.primarySource.type", + "weight": 7612, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "VerificationResult.primarySource.communicationMethod", + "weight": 7613, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "VerificationResult.primarySource.validationStatus", + "weight": 7614, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "VerificationResult.primarySource.validationDate", + "weight": 7615, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "VerificationResult.primarySource.canPushUpdates", + "weight": 7616, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "VerificationResult.primarySource.pushTypeAvailable", + "weight": 7617, + "max": "*", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "VerificationResult.attestation", + "weight": 7618, + "max": "1", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "VerificationResult.attestation.id", + "weight": 7619, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "VerificationResult.attestation.extension", + "weight": 7620, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "VerificationResult.attestation.modifierExtension", + "weight": 7621, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "VerificationResult.attestation.who", + "weight": 7622, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "VerificationResult.attestation.onBehalfOf", + "weight": 7623, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "VerificationResult.attestation.communicationMethod", + "weight": 7624, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 0, + "path": "VerificationResult.attestation.date", + "weight": 7625, + "max": "1", + "type": "date" + }, + { + "min": 0, + "path": "VerificationResult.attestation.sourceIdentityCertificate", + "weight": 7626, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "VerificationResult.attestation.proxyIdentityCertificate", + "weight": 7627, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "VerificationResult.attestation.proxySignature", + "weight": 7628, + "max": "1", + "type": "Signature" + }, + { + "min": 0, + "path": "VerificationResult.attestation.sourceSignature", + "weight": 7629, + "max": "1", + "type": "Signature" + }, + { + "min": 0, + "path": "VerificationResult.validator", + "weight": 7630, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "VerificationResult.validator.id", + "weight": 7631, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "VerificationResult.validator.extension", + "weight": 7632, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "VerificationResult.validator.modifierExtension", + "weight": 7633, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "VerificationResult.validator.organization", + "weight": 7634, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "VerificationResult.validator.identityCertificate", + "weight": 7635, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "VerificationResult.validator.attestationSignature", + "weight": 7636, + "max": "1", + "type": "Signature" + }, + { + "min": 0, + "path": "VisionPrescription", + "weight": 7637, + "max": "*", + "kind": "resource", + "type": "DomainResource" + }, + { + "min": 0, + "path": "VisionPrescription.id", + "weight": 7638, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "VisionPrescription.meta", + "weight": 7639, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "VisionPrescription.implicitRules", + "weight": 7640, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "VisionPrescription.language", + "weight": 7641, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "VisionPrescription.text", + "weight": 7642, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "VisionPrescription.contained", + "weight": 7643, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "VisionPrescription.extension", + "weight": 7644, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "VisionPrescription.modifierExtension", + "weight": 7645, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "VisionPrescription.identifier", + "weight": 7646, + "max": "*", + "type": "Identifier" + }, + { + "min": 1, + "path": "VisionPrescription.status", + "weight": 7647, + "max": "1", + "type": "code" + }, + { + "min": 1, + "path": "VisionPrescription.created", + "weight": 7648, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "VisionPrescription.patient", + "weight": 7649, + "max": "1", + "type": "Reference" + }, + { + "min": 0, + "path": "VisionPrescription.encounter", + "weight": 7650, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "VisionPrescription.dateWritten", + "weight": 7651, + "max": "1", + "type": "dateTime" + }, + { + "min": 1, + "path": "VisionPrescription.prescriber", + "weight": 7652, + "max": "1", + "type": "Reference" + }, + { + "min": 1, + "path": "VisionPrescription.lensSpecification", + "weight": 7653, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.id", + "weight": 7654, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.extension", + "weight": 7655, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.modifierExtension", + "weight": 7656, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "VisionPrescription.lensSpecification.product", + "weight": 7657, + "max": "1", + "type": "CodeableConcept" + }, + { + "min": 1, + "path": "VisionPrescription.lensSpecification.eye", + "weight": 7658, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.sphere", + "weight": 7659, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.cylinder", + "weight": 7660, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.axis", + "weight": 7661, + "max": "1", + "type": "integer" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.prism", + "weight": 7662, + "max": "*", + "type": "BackboneElement" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.prism.id", + "weight": 7663, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.prism.extension", + "weight": 7664, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.prism.modifierExtension", + "weight": 7665, + "max": "*", + "type": "Extension" + }, + { + "min": 1, + "path": "VisionPrescription.lensSpecification.prism.amount", + "weight": 7666, + "max": "1", + "type": "decimal" + }, + { + "min": 1, + "path": "VisionPrescription.lensSpecification.prism.base", + "weight": 7667, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.add", + "weight": 7668, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.power", + "weight": 7669, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.backCurve", + "weight": 7670, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.diameter", + "weight": 7671, + "max": "1", + "type": "decimal" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.duration", + "weight": 7672, + "max": "1", + "type": "Quantity" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.color", + "weight": 7673, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.brand", + "weight": 7674, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "VisionPrescription.lensSpecification.note", + "weight": 7675, + "max": "*", + "type": "Annotation" + }, + { + "min": 1, + "path": "MetadataResource", + "weight": 7676, + "max": "1", + "kind": "logical", + "type": "DomainResource" + }, + { + "min": 0, + "path": "MetadataResource.id", + "weight": 7677, + "max": "1", + "type": "http:\/\/hl7.org\/fhirpath\/System.String" + }, + { + "min": 0, + "path": "MetadataResource.meta", + "weight": 7678, + "max": "1", + "type": "Meta" + }, + { + "min": 0, + "path": "MetadataResource.implicitRules", + "weight": 7679, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MetadataResource.language", + "weight": 7680, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MetadataResource.text", + "weight": 7681, + "max": "1", + "type": "Narrative" + }, + { + "min": 0, + "path": "MetadataResource.contained", + "weight": 7682, + "max": "*", + "type": "Resource" + }, + { + "min": 0, + "path": "MetadataResource.extension", + "weight": 7683, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MetadataResource.modifierExtension", + "weight": 7684, + "max": "*", + "type": "Extension" + }, + { + "min": 0, + "path": "MetadataResource.url", + "weight": 7685, + "max": "1", + "type": "uri" + }, + { + "min": 0, + "path": "MetadataResource.version", + "weight": 7686, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MetadataResource.name", + "weight": 7687, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MetadataResource.title", + "weight": 7688, + "max": "1", + "type": "string" + }, + { + "min": 1, + "path": "MetadataResource.status", + "weight": 7689, + "max": "1", + "type": "code" + }, + { + "min": 0, + "path": "MetadataResource.experimental", + "weight": 7690, + "max": "1", + "type": "boolean" + }, + { + "min": 0, + "path": "MetadataResource.date", + "weight": 7691, + "max": "1", + "type": "dateTime" + }, + { + "min": 0, + "path": "MetadataResource.publisher", + "weight": 7692, + "max": "1", + "type": "string" + }, + { + "min": 0, + "path": "MetadataResource.contact", + "weight": 7693, + "max": "*", + "type": "ContactDetail" + }, + { + "min": 0, + "path": "MetadataResource.description", + "weight": 7694, + "max": "1", + "type": "markdown" + }, + { + "min": 0, + "path": "MetadataResource.useContext", + "weight": 7695, + "max": "*", + "type": "UsageContext" + }, + { + "min": 0, + "path": "MetadataResource.jurisdiction", + "weight": 7696, + "max": "*", + "type": "CodeableConcept" + } +] \ No newline at end of file diff --git a/src/fhir-data/fhir-elements.json b/src/fhir-data/STU3/fhir-elements.json similarity index 100% rename from src/fhir-data/fhir-elements.json rename to src/fhir-data/STU3/fhir-elements.json diff --git a/src/fhir-data/download-fhir.sh b/src/fhir-data/download-fhir.sh index 0ecbedd..1e915b5 100755 --- a/src/fhir-data/download-fhir.sh +++ b/src/fhir-data/download-fhir.sh @@ -1,3 +1,5 @@ +#!/usr/bin/env bash + # FHIR Formats # Copyright (C) 2016-2017, 2022 Vadim Peretokin @@ -14,12 +16,44 @@ # See the License for the specific language governing permissions and # limitations under the License. -rm *.json +# Set default FHIR version to STU3 +version="STU3" + +# Parse command line argument +while getopts ":r:" opt; do + case $opt in + r) + # Set FHIR version + version=$OPTARG + ;; + \?) + echo "Invalid option: -$OPTARG" >&2 + exit 1 + ;; + :) + echo "Option -$OPTARG requires an argument." >&2 + exit 1 + ;; + esac +done -# STU 3.0.1 snapshot -wget http://hl7.org/fhir/STU3/profiles-types.json -wget http://hl7.org/fhir/STU3/profiles-resources.json +# Create folder for data +mkdir $version + +# Change to folder +cd $version + +# Remove existing JSON files +rm *.json -# Latest Continuous Build -# wget http://hl7-fhir.github.io/profiles-resources.json -# wget http://hl7-fhir.github.io/profiles-types.json +# Download FHIR profiles and types +if [ "$version" = "STU3" ]; then + wget http://hl7.org/fhir/STU3/profiles-types.json + wget http://hl7.org/fhir/STU3/profiles-resources.json +elif [ "$version" = "R4" ]; then + wget http://hl7.org/fhir/R4/profiles-types.json + wget http://hl7.org/fhir/R4/profiles-resources.json +else + echo "Error: Invalid FHIR version specified" + exit 1 +fi diff --git a/src/fhir-data/generate-fhir-data.lua b/src/fhir-data/generate-fhir-data.lua index 890997b..2b4002e 100644 --- a/src/fhir-data/generate-fhir-data.lua +++ b/src/fhir-data/generate-fhir-data.lua @@ -18,8 +18,15 @@ local from_json = require("cjson").decode local pretty = require "resty.prettycjson" +local argparse = require "argparse" -local default_file = "fhir-elements.json" + +local parser = argparse("generate-fhir-data.lua", "Generate condensed FHIR data from the FHIR specification, just elements necessary for version conversion.") +-- see https://argparse.readthedocs.io/en/stable/index.html +parser:option("-r --fhir-release", 'FHIR version to work with', "STU3"):choices({"STU3", "R4"}):count("1") +local args = parser:parse() + +local output_file = args.fhir_release.."/fhir-elements.json" local function read_json(filename) io.input(filename) @@ -130,7 +137,7 @@ local function parse_data(data, output, resources_map, weight_counter) end local function save(output) - io.output(default_file) + io.output(output_file) io.write(pretty(output)) io.close() end @@ -153,8 +160,8 @@ end -- resources_map is used to compute derivations (who extends Resource and then DomainResource) -- weight_counter is for sorting elements for the XML format local output, resources_map, weight_counter = {}, {}, 1 -output, resources_map, weight_counter = parse_data(read_json("profiles-types.json"), output, resources_map, weight_counter) -output, resources_map, weight_counter = parse_data(read_json("profiles-resources.json"), output, resources_map, weight_counter) +output, resources_map, weight_counter = parse_data(read_json(args.fhir_release.."/profiles-types.json"), output, resources_map, weight_counter) +output, resources_map, weight_counter = parse_data(read_json(args.fhir_release.."/profiles-resources.json"), output, resources_map, weight_counter) update_backlinks(resources_map) diff --git a/src/fhirformats.lua b/src/fhirformats.lua index c173899..91056c3 100755 --- a/src/fhirformats.lua +++ b/src/fhirformats.lua @@ -46,7 +46,13 @@ local convert_to_json, file_exists, read_filecontent, read_file, make_json_datat local handle_json_recursively, print_simple_datatype, convert_to_lua_from_json local convert_to_xml, print_complex_datatype, list_to_map -local fhir_data +-- global pointers to the FHIR schema to operate on, and any errors that happened during conversion. +-- These are the only such global pointers in the whole program, and the reduced complexity of the code +-- is worth it. +local fhir_data, conversion_errors + +-- individual FHIR schemas per FHIR version supported +local fhir_data_stu3, fhir_data_r4 local null_value local json_decode, json_encode @@ -63,7 +69,7 @@ elseif lunajson then return lunajson.encode(data, null_value) end else - error("neither rapidjson nor luajson libraries found to do JSON encoding/decoding with") + error("neither rapidjson nor lunajson libraries found to do JSON encoding/decoding with") end -- credit: http://stackoverflow.com/a/4991602/72944 @@ -75,9 +81,27 @@ end -- find the location of the running instance of fhirformats.lua, so the error messages can be more informative local PATH = (... and (...):match("(.+)%.[^%.]+$") or (...)) or "(path of the script unknown)" -read_fhir_data = function(filename) +function table.size(t) + if not t then + return 0 + end + local i = 0 + for k, v in pairs(t) do + i = i + 1 + end + return i +end + +read_fhir_data = function(filename, fhirversion) + assert(fhirversion == "STU3" or fhirversion == "R4", + string.format("fhirversion must be STU3 or R4. '%s' is not supported at this level", tostring(fhirversion))) + -- prefer the filename, but substitute the nil if not given - local locations = {(filename or ""), "fhir-data/fhir-elements.json", "src/fhir-data/fhir-elements.json", "../src/fhir-data/fhir-elements.json", "fhir-data/fhir-elements.json"} + local locations = { + (filename or ""), "fhir-data/"..fhirversion.."/fhir-elements.json", + "src/fhir-data/"..fhirversion.."/fhir-elements.json", + "../src/fhir-data/"..fhirversion.."/fhir-elements.json" + } local data for _, file in ipairs(locations) do @@ -114,8 +138,8 @@ getindex = function(list, value) end end --- returns a list as a key-value map, value can be a value --- to assign or a function to evaluate before assignment. +-- returns a list as a key-value map, 'value' can be a static value +-- to assign to all entries or a function to evaluate before assignment. -- Function will have the processed list value as first argument list_to_map = function(list, value) if not list then return nil end @@ -199,7 +223,7 @@ map_fhir_data = function(raw_fhir_data) parse_element(element) end - -- and lastly, to ensure all derivations are in (as the order of resources could affect it + -- and lastly, to ensure all derivations are in (as the order of resources could affect it) for i = 1, #raw_fhir_data do local element = raw_fhir_data[i] parse_element(element) @@ -229,7 +253,7 @@ fhir_typed = function(output_stack, node) local fhir_definition = get_fhir_definition(output_stack, node.xml) if not fhir_definition then - print(string.format("Warning: %s is not a known FHIR element; couldn't check its FHIR type to decide the JSON type.", tconcat(output_stack, "."))) + conversion_errors[#conversion_errors+1] = string.format("Warning: %s is not a known FHIR element; couldn't check its FHIR type to decide the JSON type.", tconcat(output_stack, ".")) return value end @@ -280,9 +304,21 @@ is_fhir_resource = function (resourcename) end -- accepts the path as a set of strings instead of a table+string, and is exposed publicly +-- last argument can be "STU3" or "R4" to pick a FHIR version. +-- Defaults to STU3 and will continue to as future FHIR versions are released to keep API compatibility. -- returns a copy of the fhir element with underscores removed get_fhir_definition_public = function(...) local output_stack = {...} + if output_stack[#output_stack] == "STU3" then + fhir_data = fhir_data_stu3 + output_stack[#output_stack] = nil + elseif output_stack[#output_stack] == "R4" then + fhir_data = fhir_data_r4 + output_stack[#output_stack] = nil + else + fhir_data = fhir_data_stu3 + end + local element_to_check = output_stack[#output_stack] output_stack[#output_stack] = nil @@ -300,7 +336,7 @@ make_json_datatype = function(output_stack, element_to_check) local fhir_definition = get_fhir_definition(output_stack, element_to_check) if not fhir_definition then - print(string.format("Warning: %s.%s is not a known FHIR element; couldn't check max cardinality for it to decide on a JSON object or array.", tconcat(output_stack, "."), element_to_check)) + conversion_errors[#conversion_errors+1] = string.format("Warning: %s.%s is not a known FHIR element; couldn't check max cardinality for it to decide on a JSON object or array.", tconcat(output_stack, "."), element_to_check) end if fhir_definition and fhir_definition._max == "*" then @@ -319,7 +355,7 @@ get_json_datatype = function(output_stack, element_to_check) local fhir_data_pointer = get_fhir_definition(output_stack, element_to_check) if fhir_data_pointer == nil then - print(string.format("Warning: %s.%s is not a known FHIR element; couldn't check max cardinality for it to decide on a JSON object or array.", tconcat(output_stack, "."), element_to_check)) + conversion_errors[#conversion_errors+1] = string.format("Warning: %s.%s is not a known FHIR element; couldn't check max cardinality for it to decide on a JSON object or array.", tconcat(output_stack, "."), element_to_check) end if fhir_data_pointer and fhir_data_pointer._max == "*" then @@ -332,7 +368,7 @@ end get_xml_weight = function(output_stack, element_to_check) local fhir_definition = get_fhir_definition(output_stack, element_to_check) if not fhir_definition then - print(string.format("Warning: %s.%s is not a known FHIR element; won't be able to sort it properly in the XML output.", tconcat(output_stack, "."), element_to_check)) + conversion_errors[#conversion_errors+1] = string.format("Warning: %s.%s is not a known FHIR element; won't be able to sort it properly in the XML output.", tconcat(output_stack, "."), element_to_check) return 0 else return fhir_definition._weight @@ -343,7 +379,7 @@ end get_datatype_kind = function(output_stack, element_to_check) local fhir_definition = get_fhir_definition(output_stack, element_to_check) if not fhir_definition then - print(string.format("Warning: %s.%s is not a known FHIR element; might not convert it to a proper JSON 'element' or '_element' representation.", tconcat(output_stack, "."), element_to_check)) + conversion_errors[#conversion_errors+1] = string.format("Warning: %s.%s is not a known FHIR element; might not convert it to a proper JSON 'element' or '_element' representation.", tconcat(output_stack, "."), element_to_check) return 0 else local datatype_fhir_definition = get_fhir_definition({}, fhir_definition._type) @@ -559,11 +595,33 @@ function read_only( t ) end end +function load_fhir_data(fhirversion) + if fhirversion == "auto" then + fhir_data_stu3 = fhir_data_stu3 or map_fhir_data(read_fhir_data(nil, "STU3")) + fhir_data_r4 = fhir_data_r4 or map_fhir_data(read_fhir_data(nil, "R4")) + fhir_data = fhir_data_r4 + read_only(fhir_data_r4) + read_only(fhir_data_stu3) + elseif fhirversion == "STU3" then + fhir_data_stu3 = fhir_data_stu3 or map_fhir_data(read_fhir_data(nil, "STU3")) + fhir_data = fhir_data_stu3 + read_only(fhir_data_stu3) + elseif fhirversion == "R4" then + fhir_data_r4 = fhir_data_r4 or map_fhir_data(read_fhir_data(nil, "R4")) + fhir_data = fhir_data_r4 + read_only(fhir_data_r4) + end +end + +-- options.fhirversion is optional, and defaults to "auto" which is try all FHIR versions, starting from R4 +-- idea here is to make it as easy as possible to convert - it should just work convert_to_json = function(data, options) - fhir_data = fhir_data or map_fhir_data(read_fhir_data()) + local valid_versions = {["STU3"] = "STU3", ["R4"] = "R4"} + options.fhirversion = valid_versions[options.fhirversion] or "auto" + + load_fhir_data(options.fhirversion) assert(next(fhir_data), "convert_to_json: FHIR Schema could not be parsed in.") - read_only(fhir_data) local xml_data if options and options.file then @@ -576,7 +634,29 @@ convert_to_json = function(data, options) local output_levels = {[1] = {output}} local output_stack = {} + conversion_errors = {} local data_in_lua = convert_to_lua_from_xml(xml_data, nil, output, output_levels, output_stack) + -- if R4 on auto didn't work, try STU3 + if options.fhirversion == "auto" and #conversion_errors > 0 then + local amount_of_errors = #conversion_errors + + load_fhir_data("STU3") + output = {} + output_levels = {[1] = {output}} + output_stack = {} + + data_in_lua = convert_to_lua_from_xml(xml_data, nil, output, output_levels, output_stack) + if #conversion_errors > amount_of_errors then + print("Neither R4 nor STU3 conversion worked, have ".. #conversion_errors.. " errors.") + for _, error in ipairs(conversion_errors) do + print(error) + end + end + else + for _, error in ipairs(conversion_errors) do + print(error) + end + end return (options and options.pretty) and prettyjson(data_in_lua, nil, ' ', nil, json_encode) or json_encode(data_in_lua) @@ -748,11 +828,15 @@ convert_to_lua_from_json = function(json_data, output, xml_output_levels, output return handle_json_recursively(json_data, xml_output_levels, output_stack) end +-- options.fhirversion is optional, and defaults to "auto" which is try all FHIR versions, starting from R4 +-- idea here is to make it as easy as possible to convert - it should just work convert_to_xml = function(data, options) - fhir_data = fhir_data or map_fhir_data(read_fhir_data()) + local valid_versions = {["STU3"] = "STU3", ["R4"] = "R4"} + options.fhirversion = valid_versions[options.fhirversion] or "auto" + + load_fhir_data(options.fhirversion) assert(next(fhir_data), "convert_to_xml: FHIR Schema could not be parsed in.") - read_only(fhir_data) local json_data if options and options.file then @@ -761,16 +845,37 @@ convert_to_xml = function(data, options) json_data = read_filecontent(data, json_decode) end - local output, output_stack = {}, {} + local resourceType, output, output_stack = json_data.resourceType, {}, {} local xml_output_levels = {output} + conversion_errors = {} convert_to_lua_from_json(json_data, output, xml_output_levels, output_stack) + -- if R4 on auto didn't work, try STU3 + if options.fhirversion == "auto" and #conversion_errors > 0 then + local amount_of_errors = #conversion_errors + load_fhir_data("STU3") + + -- convert_to_lua_from_json strips the resourcetype, so add it back in + json_data.resourceType = resourceType + output, output_stack = {}, {} + xml_output_levels = {output} + convert_to_lua_from_json(json_data, output, xml_output_levels, output_stack) + if amount_of_errors ~= #conversion_errors then + print("Neither R4 nor STU3 conversion worked, have ".. #conversion_errors.. " errors.") + for _, error in ipairs(conversion_errors) do + print(error) + end + end + else + for _, error in ipairs(conversion_errors) do + print(error) + end + end return xml.dump(output) end -map_fhir_data(read_fhir_data()) -read_only(fhir_data) +load_fhir_data("auto") return { to_json = convert_to_json,