fhir_dstu2_models 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.codeclimate.yml +26 -0
- data/.gitignore +2 -0
- data/.rspec +2 -0
- data/.rubocop.yml +14 -0
- data/.rubocop_todo.yml +79 -0
- data/.simplecov +17 -0
- data/.travis.yml +21 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +131 -0
- data/Guardfile +50 -0
- data/README.md +57 -0
- data/Rakefile +26 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/fhir_dstu2_models.gemspec +39 -0
- data/lib/fhir_dstu2_models.rb +35 -0
- data/lib/fhir_dstu2_models/bootstrap/definitions.rb +350 -0
- data/lib/fhir_dstu2_models/bootstrap/field.rb +45 -0
- data/lib/fhir_dstu2_models/bootstrap/generator.rb +255 -0
- data/lib/fhir_dstu2_models/bootstrap/hashable.rb +137 -0
- data/lib/fhir_dstu2_models/bootstrap/json.rb +28 -0
- data/lib/fhir_dstu2_models/bootstrap/model.rb +308 -0
- data/lib/fhir_dstu2_models/bootstrap/preprocess.rb +124 -0
- data/lib/fhir_dstu2_models/bootstrap/template.rb +138 -0
- data/lib/fhir_dstu2_models/bootstrap/xml.rb +144 -0
- data/lib/fhir_dstu2_models/definitions/schema/account.xsd +72 -0
- data/lib/fhir_dstu2_models/definitions/schema/allergyintolerance.xsd +166 -0
- data/lib/fhir_dstu2_models/definitions/schema/appointment.xsd +119 -0
- data/lib/fhir_dstu2_models/definitions/schema/appointmentresponse.xsd +73 -0
- data/lib/fhir_dstu2_models/definitions/schema/auditevent.xsd +182 -0
- data/lib/fhir_dstu2_models/definitions/schema/basic.xsd +53 -0
- data/lib/fhir_dstu2_models/definitions/schema/binary.xsd +50 -0
- data/lib/fhir_dstu2_models/definitions/schema/bodysite.xsd +54 -0
- data/lib/fhir_dstu2_models/definitions/schema/bundle.xsd +162 -0
- data/lib/fhir_dstu2_models/definitions/schema/careplan.xsd +173 -0
- data/lib/fhir_dstu2_models/definitions/schema/claim.xsd +228 -0
- data/lib/fhir_dstu2_models/definitions/schema/claimresponse.xsd +226 -0
- data/lib/fhir_dstu2_models/definitions/schema/clinicalimpression.xsd +112 -0
- data/lib/fhir_dstu2_models/definitions/schema/communication.xsd +90 -0
- data/lib/fhir_dstu2_models/definitions/schema/communicationrequest.xsd +99 -0
- data/lib/fhir_dstu2_models/definitions/schema/composition.xsd +130 -0
- data/lib/fhir_dstu2_models/definitions/schema/conceptmap.xsd +116 -0
- data/lib/fhir_dstu2_models/definitions/schema/condition.xsd +114 -0
- data/lib/fhir_dstu2_models/definitions/schema/conformance.xsd +432 -0
- data/lib/fhir_dstu2_models/definitions/schema/contract.xsd +194 -0
- data/lib/fhir_dstu2_models/definitions/schema/coverage.xsd +62 -0
- data/lib/fhir_dstu2_models/definitions/schema/dataelement.xsd +101 -0
- data/lib/fhir_dstu2_models/definitions/schema/detectedissue.xsd +83 -0
- data/lib/fhir_dstu2_models/definitions/schema/device.xsd +78 -0
- data/lib/fhir_dstu2_models/definitions/schema/devicecomponent.xsd +91 -0
- data/lib/fhir_dstu2_models/definitions/schema/devicemetric.xsd +147 -0
- data/lib/fhir_dstu2_models/definitions/schema/deviceuserequest.xsd +104 -0
- data/lib/fhir_dstu2_models/definitions/schema/deviceusestatement.xsd +64 -0
- data/lib/fhir_dstu2_models/definitions/schema/diagnosticorder.xsd +124 -0
- data/lib/fhir_dstu2_models/definitions/schema/diagnosticreport.xsd +96 -0
- data/lib/fhir_dstu2_models/definitions/schema/documentmanifest.xsd +82 -0
- data/lib/fhir_dstu2_models/definitions/schema/documentreference.xsd +125 -0
- data/lib/fhir_dstu2_models/definitions/schema/eligibilityrequest.xsd +55 -0
- data/lib/fhir_dstu2_models/definitions/schema/eligibilityresponse.xsd +58 -0
- data/lib/fhir_dstu2_models/definitions/schema/encounter.xsd +170 -0
- data/lib/fhir_dstu2_models/definitions/schema/enrollmentrequest.xsd +58 -0
- data/lib/fhir_dstu2_models/definitions/schema/enrollmentresponse.xsd +58 -0
- data/lib/fhir_dstu2_models/definitions/schema/episodeofcare.xsd +97 -0
- data/lib/fhir_dstu2_models/definitions/schema/explanationofbenefit.xsd +58 -0
- data/lib/fhir_dstu2_models/definitions/schema/familymemberhistory.xsd +106 -0
- data/lib/fhir_dstu2_models/definitions/schema/fhir-all.xsd +126 -0
- data/lib/fhir_dstu2_models/definitions/schema/fhir-base.xsd +1446 -0
- data/lib/fhir_dstu2_models/definitions/schema/fhir-single.xsd +8239 -0
- data/lib/fhir_dstu2_models/definitions/schema/fhir-xhtml.xsd +1808 -0
- data/lib/fhir_dstu2_models/definitions/schema/flag.xsd +70 -0
- data/lib/fhir_dstu2_models/definitions/schema/goal.xsd +100 -0
- data/lib/fhir_dstu2_models/definitions/schema/group.xsd +101 -0
- data/lib/fhir_dstu2_models/definitions/schema/healthcareservice.xsd +120 -0
- data/lib/fhir_dstu2_models/definitions/schema/imagingobjectselection.xsd +100 -0
- data/lib/fhir_dstu2_models/definitions/schema/imagingstudy.xsd +112 -0
- data/lib/fhir_dstu2_models/definitions/schema/immunization.xsd +106 -0
- data/lib/fhir_dstu2_models/definitions/schema/immunizationrecommendation.xsd +89 -0
- data/lib/fhir_dstu2_models/definitions/schema/implementationguide.xsd +187 -0
- data/lib/fhir_dstu2_models/definitions/schema/list.xsd +101 -0
- data/lib/fhir_dstu2_models/definitions/schema/location.xsd +98 -0
- data/lib/fhir_dstu2_models/definitions/schema/media.xsd +74 -0
- data/lib/fhir_dstu2_models/definitions/schema/medication.xsd +104 -0
- data/lib/fhir_dstu2_models/definitions/schema/medicationadministration.xsd +104 -0
- data/lib/fhir_dstu2_models/definitions/schema/medicationdispense.xsd +124 -0
- data/lib/fhir_dstu2_models/definitions/schema/medicationorder.xsd +142 -0
- data/lib/fhir_dstu2_models/definitions/schema/medicationstatement.xsd +114 -0
- data/lib/fhir_dstu2_models/definitions/schema/messageheader.xsd +108 -0
- data/lib/fhir_dstu2_models/definitions/schema/namingsystem.xsd +112 -0
- data/lib/fhir_dstu2_models/definitions/schema/nutritionorder.xsd +157 -0
- data/lib/fhir_dstu2_models/definitions/schema/observation.xsd +163 -0
- data/lib/fhir_dstu2_models/definitions/schema/operationdefinition.xsd +133 -0
- data/lib/fhir_dstu2_models/definitions/schema/operationoutcome.xsd +117 -0
- data/lib/fhir_dstu2_models/definitions/schema/order.xsd +69 -0
- data/lib/fhir_dstu2_models/definitions/schema/orderresponse.xsd +75 -0
- data/lib/fhir_dstu2_models/definitions/schema/organization.xsd +68 -0
- data/lib/fhir_dstu2_models/definitions/schema/parameters.xsd +97 -0
- data/lib/fhir_dstu2_models/definitions/schema/patient.xsd +131 -0
- data/lib/fhir_dstu2_models/definitions/schema/paymentnotice.xsd +58 -0
- data/lib/fhir_dstu2_models/definitions/schema/paymentreconciliation.xsd +88 -0
- data/lib/fhir_dstu2_models/definitions/schema/person.xsd +83 -0
- data/lib/fhir_dstu2_models/definitions/schema/practitioner.xsd +85 -0
- data/lib/fhir_dstu2_models/definitions/schema/procedure.xsd +110 -0
- data/lib/fhir_dstu2_models/definitions/schema/procedurerequest.xsd +108 -0
- data/lib/fhir_dstu2_models/definitions/schema/processrequest.xsd +88 -0
- data/lib/fhir_dstu2_models/definitions/schema/processresponse.xsd +71 -0
- data/lib/fhir_dstu2_models/definitions/schema/provenance.xsd +108 -0
- data/lib/fhir_dstu2_models/definitions/schema/questionnaire.xsd +129 -0
- data/lib/fhir_dstu2_models/definitions/schema/questionnaireresponse.xsd +120 -0
- data/lib/fhir_dstu2_models/definitions/schema/referralrequest.xsd +82 -0
- data/lib/fhir_dstu2_models/definitions/schema/relatedperson.xsd +58 -0
- data/lib/fhir_dstu2_models/definitions/schema/riskassessment.xsd +78 -0
- data/lib/fhir_dstu2_models/definitions/schema/schedule.xsd +53 -0
- data/lib/fhir_dstu2_models/definitions/schema/searchparameter.xsd +89 -0
- data/lib/fhir_dstu2_models/definitions/schema/slot.xsd +71 -0
- data/lib/fhir_dstu2_models/definitions/schema/specimen.xsd +118 -0
- data/lib/fhir_dstu2_models/definitions/schema/structuredefinition.xsd +142 -0
- data/lib/fhir_dstu2_models/definitions/schema/subscription.xsd +99 -0
- data/lib/fhir_dstu2_models/definitions/schema/substance.xsd +75 -0
- data/lib/fhir_dstu2_models/definitions/schema/supplydelivery.xsd +73 -0
- data/lib/fhir_dstu2_models/definitions/schema/supplyrequest.xsd +86 -0
- data/lib/fhir_dstu2_models/definitions/schema/testscript.xsd +324 -0
- data/lib/fhir_dstu2_models/definitions/schema/valueset.xsd +221 -0
- data/lib/fhir_dstu2_models/definitions/schema/visionprescription.xsd +109 -0
- data/lib/fhir_dstu2_models/definitions/schema/xml.xsd +32 -0
- data/lib/fhir_dstu2_models/definitions/schema/xmldsig-core-schema.xsd +254 -0
- data/lib/fhir_dstu2_models/definitions/structures/extension-definitions.json +36931 -0
- data/lib/fhir_dstu2_models/definitions/structures/profiles-others.json +119617 -0
- data/lib/fhir_dstu2_models/definitions/structures/profiles-resources.json +50038 -0
- data/lib/fhir_dstu2_models/definitions/structures/profiles-types.json +6819 -0
- data/lib/fhir_dstu2_models/definitions/structures/search-parameters.json +12048 -0
- data/lib/fhir_dstu2_models/definitions/valuesets/v2-tables.json +75865 -0
- data/lib/fhir_dstu2_models/definitions/valuesets/v3-codesystems.json +42052 -0
- data/lib/fhir_dstu2_models/definitions/valuesets/valuesets.json +91793 -0
- data/lib/fhir_dstu2_models/deprecate.rb +24 -0
- data/lib/fhir_dstu2_models/examples/json/account-example.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/account-questionnaire.json +686 -0
- data/lib/fhir_dstu2_models/examples/json/address-type-map-v3.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/address-use-map-v2.json +81 -0
- data/lib/fhir_dstu2_models/examples/json/address-use-map-v3.json +93 -0
- data/lib/fhir_dstu2_models/examples/json/administrative-gender-map-v2.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/administrative-gender-map-v3.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/allergyintolerance-example.json +126 -0
- data/lib/fhir_dstu2_models/examples/json/allergyintolerance-fishallergy.json +54 -0
- data/lib/fhir_dstu2_models/examples/json/allergyintolerance-medication.json +54 -0
- data/lib/fhir_dstu2_models/examples/json/allergyintolerance-questionnaire.json +939 -0
- data/lib/fhir_dstu2_models/examples/json/appointment-example-request.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/appointment-example.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/appointment-example2doctors.json +55 -0
- data/lib/fhir_dstu2_models/examples/json/appointment-questionnaire.json +816 -0
- data/lib/fhir_dstu2_models/examples/json/appointmentresponse-example-req.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/appointmentresponse-example.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/appointmentresponse-questionnaire.json +570 -0
- data/lib/fhir_dstu2_models/examples/json/audit-event-example-login.json +52 -0
- data/lib/fhir_dstu2_models/examples/json/audit-event-example-logout.json +52 -0
- data/lib/fhir_dstu2_models/examples/json/audit-event-example-media.json +137 -0
- data/lib/fhir_dstu2_models/examples/json/audit-event-example-pixQuery.json +120 -0
- data/lib/fhir_dstu2_models/examples/json/audit-event-example-search.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/audit-event-example-vread.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/auditevent-example-disclosure.json +183 -0
- data/lib/fhir_dstu2_models/examples/json/auditevent-example.json +86 -0
- data/lib/fhir_dstu2_models/examples/json/auditevent-questionnaire.json +1537 -0
- data/lib/fhir_dstu2_models/examples/json/basic-example-narrative.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/basic-example.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/basic-example2.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/basic-questionnaire.json +411 -0
- data/lib/fhir_dstu2_models/examples/json/binary-f006.json +6 -0
- data/lib/fhir_dstu2_models/examples/json/binary-questionnaire.json +127 -0
- data/lib/fhir_dstu2_models/examples/json/bodysite-example.json +71 -0
- data/lib/fhir_dstu2_models/examples/json/bodysite-questionnaire.json +331 -0
- data/lib/fhir_dstu2_models/examples/json/bundle-example.json +98 -0
- data/lib/fhir_dstu2_models/examples/json/bundle-questionnaire.json +840 -0
- data/lib/fhir_dstu2_models/examples/json/bundle-response.json +181 -0
- data/lib/fhir_dstu2_models/examples/json/bundle-transaction.json +348 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-GPVisit.json +181 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-f001-heart.json +112 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-f002-lung.json +112 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-f003-pharynx.json +112 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-f201-renal.json +145 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-f202-malignancy.json +155 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-f203-sepsis.json +98 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-integrated.json +575 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example-pregnancy.json +299 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-example.json +150 -0
- data/lib/fhir_dstu2_models/examples/json/careplan-questionnaire.json +2537 -0
- data/lib/fhir_dstu2_models/examples/json/cholesterol-questionnaire.json +1993 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-institutional.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-oral-average.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-oral-contained.json +163 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-oral-orthoplan.json +318 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-pharmacy.json +83 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-professional.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-vision-glasses.json +149 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example-vision.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/claim-example.json +79 -0
- data/lib/fhir_dstu2_models/examples/json/claimresponse-example.json +101 -0
- data/lib/fhir_dstu2_models/examples/json/clinicaldocument-questionnaire.json +1414 -0
- data/lib/fhir_dstu2_models/examples/json/clinicalimpression-example.json +72 -0
- data/lib/fhir_dstu2_models/examples/json/clinicalimpression-questionnaire.json +1794 -0
- data/lib/fhir_dstu2_models/examples/json/communication-example.json +55 -0
- data/lib/fhir_dstu2_models/examples/json/communication-questionnaire.json +1022 -0
- data/lib/fhir_dstu2_models/examples/json/communicationrequest-example.json +14 -0
- data/lib/fhir_dstu2_models/examples/json/communicationrequest-questionnaire.json +1190 -0
- data/lib/fhir_dstu2_models/examples/json/composition-example.json +152 -0
- data/lib/fhir_dstu2_models/examples/json/composition-questionnaire.json +1260 -0
- data/lib/fhir_dstu2_models/examples/json/composition-status-map-v3.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/conceptmap-example.json +112 -0
- data/lib/fhir_dstu2_models/examples/json/conceptmap-questionnaire.json +1253 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f001-heart.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f002-lung.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f003-abscess.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f201-fever.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f202-malignancy.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f203-sepsis.json +84 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f204-renal.json +89 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-f205-infection.json +33 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example-stroke.json +33 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/condition-example2.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/condition-questionnaire.json +1360 -0
- data/lib/fhir_dstu2_models/examples/json/conformance-base2.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/conformance-example.json +267 -0
- data/lib/fhir_dstu2_models/examples/json/conformance-phr-example.json +152 -0
- data/lib/fhir_dstu2_models/examples/json/conformance-terminology-server.json +241 -0
- data/lib/fhir_dstu2_models/examples/json/contact-point-system-map-v2.json +93 -0
- data/lib/fhir_dstu2_models/examples/json/contact-point-use-map-v2.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/contact-point-use-map-v3.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/contract-example.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/coverage-example-2.json +32 -0
- data/lib/fhir_dstu2_models/examples/json/coverage-example.json +33 -0
- data/lib/fhir_dstu2_models/examples/json/coverage-questionnaire.json +580 -0
- data/lib/fhir_dstu2_models/examples/json/data-absent-reason-map-v3.json +124 -0
- data/lib/fhir_dstu2_models/examples/json/dataelement-example.json +251 -0
- data/lib/fhir_dstu2_models/examples/json/dataelement-labtestmaster-example.json +84 -0
- data/lib/fhir_dstu2_models/examples/json/dataelement-questionnaire.json +742 -0
- data/lib/fhir_dstu2_models/examples/json/detectedissue-example-allergy.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/detectedissue-example-dup.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/detectedissue-example-lab.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/detectedissue-example.json +52 -0
- data/lib/fhir_dstu2_models/examples/json/detectedissue-questionnaire.json +632 -0
- data/lib/fhir_dstu2_models/examples/json/detectedissue-severity-map-v3.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/device-example-f001-feedingtube.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/device-example-ihe-pcd.json +28 -0
- data/lib/fhir_dstu2_models/examples/json/device-example-pacemaker.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/device-example-software.json +26 -0
- data/lib/fhir_dstu2_models/examples/json/device-example.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/device-questionnaire.json +590 -0
- data/lib/fhir_dstu2_models/examples/json/devicecomponent-example-prodspec.json +135 -0
- data/lib/fhir_dstu2_models/examples/json/devicecomponent-example.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/devicecomponent-questionnaire.json +591 -0
- data/lib/fhir_dstu2_models/examples/json/devicemetric-example.json +31 -0
- data/lib/fhir_dstu2_models/examples/json/devicemetric-questionnaire.json +581 -0
- data/lib/fhir_dstu2_models/examples/json/devicemetricobservation-questionnaire.json +2007 -0
- data/lib/fhir_dstu2_models/examples/json/deviceuserequest-example.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/deviceuserequest-questionnaire.json +717 -0
- data/lib/fhir_dstu2_models/examples/json/deviceusestatement-example.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/deviceusestatement-questionnaire.json +606 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticorder-example-di.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticorder-example-ft4.json +81 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticorder-example.json +114 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticorder-questionnaire.json +1099 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-dxa.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-f001-bloodexam.json +138 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-f201-brainct.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-f202-bloodculture.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-ghp.json +2582 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-lipids.json +231 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example-ultrasound.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-example.json +870 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-micro1.json +1173 -0
- data/lib/fhir_dstu2_models/examples/json/diagnosticreport-questionnaire.json +1158 -0
- data/lib/fhir_dstu2_models/examples/json/document-example-dischargesummary.json +481 -0
- data/lib/fhir_dstu2_models/examples/json/document-reference-status-map-v3.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/documentmanifest-example.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/documentmanifest-questionnaire.json +1137 -0
- data/lib/fhir_dstu2_models/examples/json/documentreference-example.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/documentreference-questionnaire.json +1530 -0
- data/lib/fhir_dstu2_models/examples/json/elementdefinition-11179-DataElement-objectClass.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/elementdefinition-11179-DataElement-objectClassProperty.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/eligibilityrequest-example.json +18 -0
- data/lib/fhir_dstu2_models/examples/json/eligibilityrequest-questionnaire.json +359 -0
- data/lib/fhir_dstu2_models/examples/json/eligibilityresponse-example.json +26 -0
- data/lib/fhir_dstu2_models/examples/json/eligibilityresponse-questionnaire.json +437 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-f001-heart.json +98 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-f002-lung.json +98 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-f003-abscess.json +103 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-f201-20130404.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-f202-20130128.json +98 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-f203-20130311.json +110 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-home.json +50 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example-xcda.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-example.json +13 -0
- data/lib/fhir_dstu2_models/examples/json/encounter-questionnaire.json +1610 -0
- data/lib/fhir_dstu2_models/examples/json/enrollmentrequest-example.json +27 -0
- data/lib/fhir_dstu2_models/examples/json/enrollmentrequest-questionnaire.json +443 -0
- data/lib/fhir_dstu2_models/examples/json/enrollmentresponse-example.json +26 -0
- data/lib/fhir_dstu2_models/examples/json/enrollmentresponse-questionnaire.json +437 -0
- data/lib/fhir_dstu2_models/examples/json/episodeofcare-example.json +102 -0
- data/lib/fhir_dstu2_models/examples/json/episodeofcare-questionnaire.json +778 -0
- data/lib/fhir_dstu2_models/examples/json/explanationofbenefit-example.json +26 -0
- data/lib/fhir_dstu2_models/examples/json/explanationofbenefit-questionnaire.json +437 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-administrative-status.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-change-description.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-classification-or-context.json +243 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-contact-address.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-document-reference.json +209 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-effective-period.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-is-data-element-concept.json +230 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-registry-org.json +209 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-de-submitter-org.json +209 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-objectclass.json +246 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-objectclassproperty.json +246 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-permitted-value-conceptmap.json +241 -0
- data/lib/fhir_dstu2_models/examples/json/extension-11179-permitted-value-valueset.json +241 -0
- data/lib/fhir_dstu2_models/examples/json/extension-allergyintolerance-duration.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-allergyintolerance-reasonrefuted.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-allergyintolerance-resolutionage.json +213 -0
- data/lib/fhir_dstu2_models/examples/json/extension-birthplace.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-body-site-instance.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/extension-careplan-activity-title.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-communication-media.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-communication-reasonnotperformed.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-communicationrequest-orderedby.json +231 -0
- data/lib/fhir_dstu2_models/examples/json/extension-communicationrequest-reasonrejected.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-composition-clindoc-otherconfidentiality.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-condition-criticality.json +189 -0
- data/lib/fhir_dstu2_models/examples/json/extension-condition-dueto.json +700 -0
- data/lib/fhir_dstu2_models/examples/json/extension-condition-occurredfollowing.json +698 -0
- data/lib/fhir_dstu2_models/examples/json/extension-condition-outcome.json +199 -0
- data/lib/fhir_dstu2_models/examples/json/extension-condition-targetbodysite.json +188 -0
- data/lib/fhir_dstu2_models/examples/json/extension-conformance-expectation.json +238 -0
- data/lib/fhir_dstu2_models/examples/json/extension-conformance-prohibited.json +224 -0
- data/lib/fhir_dstu2_models/examples/json/extension-conformance-search-parameter-combination.json +669 -0
- data/lib/fhir_dstu2_models/examples/json/extension-conformance-supported-system.json +189 -0
- data/lib/fhir_dstu2_models/examples/json/extension-cqm-basedonmeasure.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/extension-data-absent-reason.json +218 -0
- data/lib/fhir_dstu2_models/examples/json/extension-datadictionary.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-deviceuserequest-reasonrejected.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-diagnosticorder-precondition.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-diagnosticorder-reason.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-diagnosticorder-reasonrejected.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-diagnosticreport-locationperformed.json +193 -0
- data/lib/fhir_dstu2_models/examples/json/extension-elementdefinition-allowedunits.json +244 -0
- data/lib/fhir_dstu2_models/examples/json/extension-elementdefinition-equivalence.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-elementdefinition-identifier.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-elementdefinition-maxvalueset.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-elementdefinition-minvalueset.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-elementdefinition-question.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-encounter-associatedencounter.json +188 -0
- data/lib/fhir_dstu2_models/examples/json/extension-encounter-primarydiagnosis.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-encounter-reasoncancelled.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-encounter-relatedcondition.json +506 -0
- data/lib/fhir_dstu2_models/examples/json/extension-entryformat.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-family-member-history-genetics-observation.json +213 -0
- data/lib/fhir_dstu2_models/examples/json/extension-family-member-history-genetics-parent.json +657 -0
- data/lib/fhir_dstu2_models/examples/json/extension-familymemberhistory-abatement.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-familymemberhistory-patient-record.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-familymemberhistory-severity.json +199 -0
- data/lib/fhir_dstu2_models/examples/json/extension-flag-detail.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-flag-priority.json +199 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsallelename.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsallelicfrequency.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsallelicstate.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsaminoacidchange.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsaminoacidchangetype.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsassessedcondition.json +222 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticschromosome.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticscigar.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticscopynumberevent.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsdnaregionname.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsdnasequencevariation.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsdnasequencevariationtype.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsgene.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsgenomebuild.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsgenomicsourceclass.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsgenomicstart.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsgenomicstop.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsobservedallele.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsproteinreferencesequenceid.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsreadcoverage.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsreferenceallele.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsresult.json +222 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsspecies.json +216 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticstranscriptreferencesequenceid.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-geneticsvariationid.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-goal-acceptance.json +794 -0
- data/lib/fhir_dstu2_models/examples/json/extension-goal-pertainstogoal.json +193 -0
- data/lib/fhir_dstu2_models/examples/json/extension-goal-reasonrejected.json +204 -0
- data/lib/fhir_dstu2_models/examples/json/extension-goal-relationship.json +607 -0
- data/lib/fhir_dstu2_models/examples/json/extension-goal-target.json +618 -0
- data/lib/fhir_dstu2_models/examples/json/extension-http-response-header.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/extension-imagingstudy-radiationdose.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-imagingstudy-radiationduration.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-ad-use.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-additionallocator.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-buildingnumbersuffix.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-careof.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-censustract.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-county.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-delimiter.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-deliveryaddressline.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-deliveryinstallationarea.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-deliveryinstallationqualifier.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-deliveryinstallationtype.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-deliverymode.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-deliverymodeidentifier.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-direction.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-housenumber.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-housenumbernumeric.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-postbox.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-precinct.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-streetaddressline.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-streetname.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-streetnamebase.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-streetnametype.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-unitid.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-adxp-unittype.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-co-value.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-en-qualifier.json +224 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-nullflavor.json +232 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-preferred.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-sc-coding.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-st-language.json +213 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-st-translation.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-tel-address.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-uncertainty.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-uncertaintytype.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/extension-iso21090-verification.json +192 -0
- data/lib/fhir_dstu2_models/examples/json/extension-lipid-report-ldl-chol-calculated.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-location-alias.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-mapsourcepublisher.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-markup.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-maxdecimalplaces.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-maxsize.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/extension-maxvalue.json +248 -0
- data/lib/fhir_dstu2_models/examples/json/extension-medication-isactiveingredient.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-medication-usualroute.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-medicationdispense-validityperiod.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-mimetype.json +229 -0
- data/lib/fhir_dstu2_models/examples/json/extension-minlength.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/extension-minvalue.json +248 -0
- data/lib/fhir_dstu2_models/examples/json/extension-observation-bodyposition.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-observation-delta.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-observation-focal-subject.json +201 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-administration.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-careplan.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-exposuredate.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-exposuredescription.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-exposureduration.json +210 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-location.json +198 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-management.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-openehr-test.json +202 -0
- data/lib/fhir_dstu2_models/examples/json/extension-operationoutcome-authority.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-operationoutcome-detectedissue.json +193 -0
- data/lib/fhir_dstu2_models/examples/json/extension-operationoutcome-issue-source.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-organization-alias.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-organization-period.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-organization-preferredcontact.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-adoptioninfo.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-birthtime.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-cadavericdonor.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-citizenship.json +577 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-clinicaltrial.json +726 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-congregation.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-disability.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-importance.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-interpreterrequired.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-mothersmaidenname.json +207 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-mpi-match.json +189 -0
- data/lib/fhir_dstu2_models/examples/json/extension-patient-nationality.json +577 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-dosetype.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-infuseover.json +212 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-maxdeliveryrate.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-maxdeliveryvolume.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-mindoseperperiod.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-rategoal.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-rateincrement.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-rateincrementinterval.json +212 -0
- data/lib/fhir_dstu2_models/examples/json/extension-pharmacy-core-refillsremaining.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-practitioner-animalspecies.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/extension-practitioner-classification.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/extension-practitioner-primaryind.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedure-approachbodysite.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedure-causedby.json +330 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedure-incisiondatetime.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedure-method.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedure-progressstatus.json +199 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedure-targetbodysite.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedurerequest-approachbodysite.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedurerequest-authorizedby.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedurerequest-reasonrefused.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-procedurerequest-targetbodysite.json +191 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-allowedresource.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-category.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-choiceorientation.json +200 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-defaultvalue.json +395 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-demap.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-dereference.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-enablewhen.json +935 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-help.json +204 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-hidden.json +188 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-highrangelabel.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-instruction.json +204 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-label.json +207 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-lowrangelabel.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-maxlength.json +218 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-maxoccurs.json +223 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-minoccurs.json +223 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-questioncontrol.json +200 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-readonly.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-security.json +204 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-tooltip.json +204 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-trailing.json +204 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaire-units.json +203 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaireresponse-author.json +250 -0
- data/lib/fhir_dstu2_models/examples/json/extension-questionnaireresponse-reviewer.json +210 -0
- data/lib/fhir_dstu2_models/examples/json/extension-referralrequest-reasonrefused.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-regex.json +217 -0
- data/lib/fhir_dstu2_models/examples/json/extension-specimen-collectionpriority.json +199 -0
- data/lib/fhir_dstu2_models/examples/json/extension-specimen-isdryweight.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-specimen-sequencenumber.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-specimen-specialhandling.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-specimen-treatmenttime.json +197 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-display-hint.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-explicit-type-name.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-fmm-no-warnings.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-fmm.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-json-type.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-regex.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-template-status.json +200 -0
- data/lib/fhir_dstu2_models/examples/json/extension-structuredefinition-xml-type.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-style.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/extension-stylesensitive.json +186 -0
- data/lib/fhir_dstu2_models/examples/json/extension-us-core-concernstatus.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/extension-us-core-county.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-us-core-direct.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/extension-us-core-ethnicity.json +198 -0
- data/lib/fhir_dstu2_models/examples/json/extension-us-core-race.json +198 -0
- data/lib/fhir_dstu2_models/examples/json/extension-us-core-religion.json +198 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-author.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-casesensitive.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-comment.json +582 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-comments.json +180 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-conceptorder.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-definition.json +180 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-deprecated.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-effectivedate.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-expansionsource.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-expirationdate.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-history.json +1292 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-keyword.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-label.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-map.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-oid.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-ordinalvalue.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-othername.json +586 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-reference.json +208 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-replacedby.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-sourcereference.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-subsumes.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-systemname.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-systemref.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-trusted-expansion.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-unclosed.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-usage.json +584 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-warning.json +176 -0
- data/lib/fhir_dstu2_models/examples/json/extension-valueset-workflowstatus.json +178 -0
- data/lib/fhir_dstu2_models/examples/json/familymemberhistory-example-mother.json +40 -0
- data/lib/fhir_dstu2_models/examples/json/familymemberhistory-example.json +44 -0
- data/lib/fhir_dstu2_models/examples/json/familymemberhistory-genetic-questionnaire.json +1165 -0
- data/lib/fhir_dstu2_models/examples/json/familymemberhistory-questionnaire.json +1165 -0
- data/lib/fhir_dstu2_models/examples/json/flag-example-encounter.json +34 -0
- data/lib/fhir_dstu2_models/examples/json/flag-example.json +37 -0
- data/lib/fhir_dstu2_models/examples/json/flag-questionnaire.json +688 -0
- data/lib/fhir_dstu2_models/examples/json/genetics-questionnaire.json +2268 -0
- data/lib/fhir_dstu2_models/examples/json/goal-example.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/goal-questionnaire.json +1218 -0
- data/lib/fhir_dstu2_models/examples/json/group-example-member.json +45 -0
- data/lib/fhir_dstu2_models/examples/json/group-example.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/group-questionnaire.json +963 -0
- data/lib/fhir_dstu2_models/examples/json/hdlcholesterol-questionnaire.json +1993 -0
- data/lib/fhir_dstu2_models/examples/json/healthcareservice-example.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/healthcareservice-questionnaire.json +1097 -0
- data/lib/fhir_dstu2_models/examples/json/imagingobjectselection-example.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/imagingobjectselection-questionnaire.json +976 -0
- data/lib/fhir_dstu2_models/examples/json/imagingstudy-example.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/imagingstudy-questionnaire.json +1078 -0
- data/lib/fhir_dstu2_models/examples/json/immunization-example-refused.json +37 -0
- data/lib/fhir_dstu2_models/examples/json/immunization-example.json +135 -0
- data/lib/fhir_dstu2_models/examples/json/immunization-questionnaire.json +1237 -0
- data/lib/fhir_dstu2_models/examples/json/immunizationrecommendation-example.json +97 -0
- data/lib/fhir_dstu2_models/examples/json/immunizationrecommendation-questionnaire.json +812 -0
- data/lib/fhir_dstu2_models/examples/json/implementationguide-example.json +117 -0
- data/lib/fhir_dstu2_models/examples/json/implementationguide-questionnaire.json +1418 -0
- data/lib/fhir_dstu2_models/examples/json/ldlcholesterol-questionnaire.json +1993 -0
- data/lib/fhir_dstu2_models/examples/json/lipidprofile-questionnaire.json +1278 -0
- data/lib/fhir_dstu2_models/examples/json/list-example-allergies.json +45 -0
- data/lib/fhir_dstu2_models/examples/json/list-example-empty.json +34 -0
- data/lib/fhir_dstu2_models/examples/json/list-example-familyhistory-f201-roel.json +120 -0
- data/lib/fhir_dstu2_models/examples/json/list-example-familyhistory-genetics-profile.json +380 -0
- data/lib/fhir_dstu2_models/examples/json/list-example-medlist.json +64 -0
- data/lib/fhir_dstu2_models/examples/json/list-example.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/list-questionnaire.json +899 -0
- data/lib/fhir_dstu2_models/examples/json/location-example-ambulance.json +40 -0
- data/lib/fhir_dstu2_models/examples/json/location-example-hl7hq.json +62 -0
- data/lib/fhir_dstu2_models/examples/json/location-example-patients-home.json +33 -0
- data/lib/fhir_dstu2_models/examples/json/location-example-room.json +47 -0
- data/lib/fhir_dstu2_models/examples/json/location-example-ukpharmacy.json +30 -0
- data/lib/fhir_dstu2_models/examples/json/location-example.json +74 -0
- data/lib/fhir_dstu2_models/examples/json/location-extensions-Location-alias.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/location-questionnaire.json +657 -0
- data/lib/fhir_dstu2_models/examples/json/measurereport-questionnaire.json +1414 -0
- data/lib/fhir_dstu2_models/examples/json/media-example-dicom.json +92 -0
- data/lib/fhir_dstu2_models/examples/json/media-example-sound.json +26 -0
- data/lib/fhir_dstu2_models/examples/json/media-example.json +43 -0
- data/lib/fhir_dstu2_models/examples/json/media-questionnaire.json +637 -0
- data/lib/fhir_dstu2_models/examples/json/medication-admin-status-map-v3.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/medication-dispense-status-map-v3.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f001-combivent.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f002-crestor.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f003-tolbutamide.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f004-metoprolol.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f005-enalapril.json +38 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f201-salmeterol.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f202-flucloxacilline.json +29 -0
- data/lib/fhir_dstu2_models/examples/json/medication-example-f203-paracetamol.json +29 -0
- data/lib/fhir_dstu2_models/examples/json/medication-order-status-map-v3.json +102 -0
- data/lib/fhir_dstu2_models/examples/json/medication-questionnaire.json +885 -0
- data/lib/fhir_dstu2_models/examples/json/medication-statement-status-map-v3.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/medicationadministration-questionnaire.json +1190 -0
- data/lib/fhir_dstu2_models/examples/json/medicationadministrationexample1.json +41 -0
- data/lib/fhir_dstu2_models/examples/json/medicationadministrationexample2.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/medicationadministrationexample3.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispense-questionnaire.json +1616 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispenseexample1.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispenseexample2.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispenseexample3.json +130 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispenseexample4.json +192 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispenseexample6.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/medicationdispenseexample8.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample1.json +14 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample11.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample12.json +24 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample13.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample14.json +32 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample15.json +29 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample16.json +29 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample17.json +29 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample2.json +37 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample3.json +32 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample4.json +83 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample5.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample6.json +32 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample7.json +32 -0
- data/lib/fhir_dstu2_models/examples/json/medicationexample8.json +79 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f001-combivent.json +114 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f002-crestor.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f003-tolbutamide.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f004-metoprolol.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f005-enalapril.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f201-salmeterol.json +111 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f202-flucloxacilline.json +86 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-example-f203-paracetamol.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorder-questionnaire.json +1805 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample1.json +129 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample2.json +47 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample3.json +190 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample4.json +71 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample5.json +138 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample6.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample7.json +43 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample8.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/medicationorderexample9.json +51 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatement-questionnaire.json +1480 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatementexample1.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatementexample2.json +33 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatementexample4.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatementexample5.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatementexample6.json +50 -0
- data/lib/fhir_dstu2_models/examples/json/medicationstatementexample7.json +21 -0
- data/lib/fhir_dstu2_models/examples/json/message-request-link.json +166 -0
- data/lib/fhir_dstu2_models/examples/json/message-response-link.json +209 -0
- data/lib/fhir_dstu2_models/examples/json/messageheader-example.json +64 -0
- data/lib/fhir_dstu2_models/examples/json/messageheader-questionnaire.json +1002 -0
- data/lib/fhir_dstu2_models/examples/json/name-use-map-v2.json +124 -0
- data/lib/fhir_dstu2_models/examples/json/name-use-map-v3.json +113 -0
- data/lib/fhir_dstu2_models/examples/json/namingsystem-example-id.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/namingsystem-example-replaced.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/namingsystem-example.json +37 -0
- data/lib/fhir_dstu2_models/examples/json/namingsystem-questionnaire.json +737 -0
- data/lib/fhir_dstu2_models/examples/json/namingsystem-registry.json +2362 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-cardiacdiet.json +145 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-diabeticdiet.json +122 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-diabeticsupplement.json +109 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-energysupplement.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-enteralbolus.json +136 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-enteralcontinuous.json +118 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-fiberrestricteddiet.json +139 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-infantenteral.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-proteinsupplement.json +77 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-pureeddiet-simple.json +119 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-pureeddiet.json +131 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-renaldiet.json +152 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-example-texture-modified.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/nutritionorder-questionnaire.json +1790 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example1-somatic.json +185 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example2-germline.json +142 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example3-mutationlist-1.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example3-mutationlist-2.json +76 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example3-mutationlist-3.json +72 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example3-mutationlist-4.json +72 -0
- data/lib/fhir_dstu2_models/examples/json/obs-genetics-example3-mutationlist.json +86 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-bloodpressure-cancel.json +136 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-bloodpressure.json +122 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f001-glucose.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f002-excess.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f003-co2.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f004-erythrocyte.json +89 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f005-hemoglobin.json +74 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f202-temperature.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f203-bicarbonate.json +111 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f204-creatinine.json +103 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f205-egfr.json +163 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-f206-staphylococcus.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-glasgow-qa.json +99 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-glasgow.json +274 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-sample-data.json +187 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-satO2.json +67 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example-unsat.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/observation-example.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-amino-acid-change.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-assessed-condition.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-chromosome-genomicstart.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-condition-gene-dnavariant.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-condition-gene.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-dna-variant.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-gene-amino-acid-change.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-gene-dnavariant.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-genetics-cg-prf-1a-Observation-gene-identifier.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/observation-questionnaire.json +2268 -0
- data/lib/fhir_dstu2_models/examples/json/observation-relationshiptypes-map-v3.json +102 -0
- data/lib/fhir_dstu2_models/examples/json/operation-composition-document.json +46 -0
- data/lib/fhir_dstu2_models/examples/json/operation-conceptmap-closure.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/operation-conceptmap-translate.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/operation-encounter-everything.json +43 -0
- data/lib/fhir_dstu2_models/examples/json/operation-list-find.json +54 -0
- data/lib/fhir_dstu2_models/examples/json/operation-messageheader-process-message.json +67 -0
- data/lib/fhir_dstu2_models/examples/json/operation-patient-everything.json +62 -0
- data/lib/fhir_dstu2_models/examples/json/operation-questionnaire-populate.json +97 -0
- data/lib/fhir_dstu2_models/examples/json/operation-resource-meta-add.json +51 -0
- data/lib/fhir_dstu2_models/examples/json/operation-resource-meta-delete.json +51 -0
- data/lib/fhir_dstu2_models/examples/json/operation-resource-meta.json +46 -0
- data/lib/fhir_dstu2_models/examples/json/operation-resource-validate.json +76 -0
- data/lib/fhir_dstu2_models/examples/json/operation-structuredefinition-questionnaire.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/operation-valueset-expand.json +110 -0
- data/lib/fhir_dstu2_models/examples/json/operation-valueset-lookup.json +143 -0
- data/lib/fhir_dstu2_models/examples/json/operation-valueset-validate-code.json +149 -0
- data/lib/fhir_dstu2_models/examples/json/operationdefinition-example.json +55 -0
- data/lib/fhir_dstu2_models/examples/json/operationdefinition-questionnaire.json +1127 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-example-allok.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-example-break-the-glass.json +32 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-example-exception.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-example-searchfail.json +20 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-example-validationfail.json +20 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-example.json +21 -0
- data/lib/fhir_dstu2_models/examples/json/operationoutcome-questionnaire.json +349 -0
- data/lib/fhir_dstu2_models/examples/json/order-example-f201-physiotherapy.json +42 -0
- data/lib/fhir_dstu2_models/examples/json/order-example.json +36 -0
- data/lib/fhir_dstu2_models/examples/json/order-questionnaire.json +877 -0
- data/lib/fhir_dstu2_models/examples/json/orderresponse-example.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/orderresponse-questionnaire.json +458 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-f001-burgers.json +106 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-f002-burgers-card.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-f003-burgers-ENT.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-f201-aumc.json +123 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-f203-bumc.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-gastro.json +34 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-good-health-care.json +15 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-insurer.json +15 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example-lab.json +30 -0
- data/lib/fhir_dstu2_models/examples/json/organization-example.json +43 -0
- data/lib/fhir_dstu2_models/examples/json/organization-extensions-Organization-alias.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/organization-questionnaire.json +653 -0
- data/lib/fhir_dstu2_models/examples/json/parameters-example.json +18 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-a.json +72 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-animal.json +106 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-b.json +71 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-c.json +42 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-d.json +42 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-dicom.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-f001-pieter.json +136 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-f201-roel.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-ihe-pcd.json +33 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-proband.json +44 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-us-extensions.json +83 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-xcda.json +40 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example-xds.json +50 -0
- data/lib/fhir_dstu2_models/examples/json/patient-example.json +154 -0
- data/lib/fhir_dstu2_models/examples/json/patient-examples-general.json +736 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-age.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-birthOrderBoolean.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-city.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-country.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-mothersMaidenName.json +11 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-postalCode.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/patient-extensions-Patient-state.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/patient-glossy-example.json +54 -0
- data/lib/fhir_dstu2_models/examples/json/patient-mpi-search.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/patient-questionnaire.json +1482 -0
- data/lib/fhir_dstu2_models/examples/json/paymentnotice-example.json +25 -0
- data/lib/fhir_dstu2_models/examples/json/paymentnotice-questionnaire.json +443 -0
- data/lib/fhir_dstu2_models/examples/json/paymentreconciliation-example.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/paymentreconciliation-questionnaire.json +939 -0
- data/lib/fhir_dstu2_models/examples/json/person-example-f002-ariadne.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/person-example.json +99 -0
- data/lib/fhir_dstu2_models/examples/json/person-grahame.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/person-patient-portal.json +84 -0
- data/lib/fhir_dstu2_models/examples/json/person-provider-directory.json +74 -0
- data/lib/fhir_dstu2_models/examples/json/person-questionnaire.json +704 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f001-evdb.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f002-pv.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f003-mv.json +131 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f004-rb.json +132 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f005-al.json +147 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f006-rvdb.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f007-sh.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f201-ab.json +127 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f202-lm.json +125 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f203-jvg.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-f204-ce.json +81 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-xcda-author.json +19 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example-xcda1.json +44 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-example.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-examples-general.json +3490 -0
- data/lib/fhir_dstu2_models/examples/json/practitioner-questionnaire.json +906 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-biopsy.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-f001-heart.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-f002-lung.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-f003-abscess.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-f004-tracheotomy.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-f201-tpf.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example-implant.json +59 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-example.json +44 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-questionnaire.json +1520 -0
- data/lib/fhir_dstu2_models/examples/json/procedure-status-map-v3.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/procedurerequest-example.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/procedurerequest-questionnaire.json +1125 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-poll-eob.json +19 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-poll-exclusive.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-poll-inclusive.json +22 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-poll-payrec.json +26 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-poll-specific.json +22 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-reprocess.json +28 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-reverse.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example-status.json +25 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-example.json +19 -0
- data/lib/fhir_dstu2_models/examples/json/processrequest-questionnaire.json +657 -0
- data/lib/fhir_dstu2_models/examples/json/processresponse-example.json +29 -0
- data/lib/fhir_dstu2_models/examples/json/processresponse-questionnaire.json +595 -0
- data/lib/fhir_dstu2_models/examples/json/provenance-example-sig.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/provenance-example.json +103 -0
- data/lib/fhir_dstu2_models/examples/json/provenance-questionnaire.json +976 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-example-bluebook.json +109 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-example-f201-lifelines.json +86 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-example-gcs.json +200 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-example.json +205 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-extensions-Questionnaire-category.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-extensions-Questionnaire-deReference.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaire-questionnaire.json +847 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaireresponse-example-bluebook.json +164 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaireresponse-example-f201-lifelines.json +123 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaireresponse-example-gcs.json +122 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaireresponse-example.json +153 -0
- data/lib/fhir_dstu2_models/examples/json/questionnaireresponse-questionnaire.json +1345 -0
- data/lib/fhir_dstu2_models/examples/json/referralrequest-example.json +82 -0
- data/lib/fhir_dstu2_models/examples/json/referralrequest-questionnaire.json +800 -0
- data/lib/fhir_dstu2_models/examples/json/relatedperson-example-f001-sarah.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/relatedperson-example-f002-ariadne.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/relatedperson-example-peter.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/relatedperson-example.json +79 -0
- data/lib/fhir_dstu2_models/examples/json/relatedperson-questionnaire.json +500 -0
- data/lib/fhir_dstu2_models/examples/json/riskassessment-example-cardiac.json +45 -0
- data/lib/fhir_dstu2_models/examples/json/riskassessment-example-population.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/riskassessment-example-prognosis.json +35 -0
- data/lib/fhir_dstu2_models/examples/json/riskassessment-example.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/riskassessment-questionnaire.json +945 -0
- data/lib/fhir_dstu2_models/examples/json/schedule-example.json +34 -0
- data/lib/fhir_dstu2_models/examples/json/schedule-questionnaire.json +500 -0
- data/lib/fhir_dstu2_models/examples/json/searchparameter-example-extension.json +30 -0
- data/lib/fhir_dstu2_models/examples/json/searchparameter-example.json +40 -0
- data/lib/fhir_dstu2_models/examples/json/searchparameter-questionnaire.json +621 -0
- data/lib/fhir_dstu2_models/examples/json/shareablevalueset-questionnaire.json +2194 -0
- data/lib/fhir_dstu2_models/examples/json/slot-example-busy.json +30 -0
- data/lib/fhir_dstu2_models/examples/json/slot-example-tentative.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/slot-example-unavailable.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/slot-example.json +23 -0
- data/lib/fhir_dstu2_models/examples/json/slot-questionnaire.json +379 -0
- data/lib/fhir_dstu2_models/examples/json/specimen-example-isolate.json +121 -0
- data/lib/fhir_dstu2_models/examples/json/specimen-example-urine.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/specimen-example.json +136 -0
- data/lib/fhir_dstu2_models/examples/json/specimen-questionnaire.json +1339 -0
- data/lib/fhir_dstu2_models/examples/json/structuredefinition-example.json +522 -0
- data/lib/fhir_dstu2_models/examples/json/structuredefinition-questionnaire.json +1117 -0
- data/lib/fhir_dstu2_models/examples/json/subscription-example-error.json +36 -0
- data/lib/fhir_dstu2_models/examples/json/subscription-example.json +30 -0
- data/lib/fhir_dstu2_models/examples/json/subscription-questionnaire.json +499 -0
- data/lib/fhir_dstu2_models/examples/json/substance-example-amoxicillin-clavulanate.json +97 -0
- data/lib/fhir_dstu2_models/examples/json/substance-example-f201-dust.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/substance-example-f202-staphylococcus.json +17 -0
- data/lib/fhir_dstu2_models/examples/json/substance-example-f203-potassium.json +34 -0
- data/lib/fhir_dstu2_models/examples/json/substance-example-silver-nitrate-product.json +50 -0
- data/lib/fhir_dstu2_models/examples/json/substance-example.json +31 -0
- data/lib/fhir_dstu2_models/examples/json/substance-questionnaire.json +594 -0
- data/lib/fhir_dstu2_models/examples/json/supplydelivery-example.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/supplydelivery-questionnaire.json +610 -0
- data/lib/fhir_dstu2_models/examples/json/supplyrequest-example.json +8 -0
- data/lib/fhir_dstu2_models/examples/json/supplyrequest-questionnaire.json +837 -0
- data/lib/fhir_dstu2_models/examples/json/testscript-example-multiserver.json +340 -0
- data/lib/fhir_dstu2_models/examples/json/testscript-example.json +184 -0
- data/lib/fhir_dstu2_models/examples/json/testscript-history.json +124 -0
- data/lib/fhir_dstu2_models/examples/json/testscript-readtest.json +165 -0
- data/lib/fhir_dstu2_models/examples/json/testscript-search.json +294 -0
- data/lib/fhir_dstu2_models/examples/json/testscript-update.json +118 -0
- data/lib/fhir_dstu2_models/examples/json/triglyceride-questionnaire.json +1993 -0
- data/lib/fhir_dstu2_models/examples/json/us-core-Patient-ethnicity.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/us-core-Patient-race.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-account-status.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-actionlist.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-activity-reason.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-additionalmaterials.json +82 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-address-type.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-address-use.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-adjudication-error.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-adjudication.json +72 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-adjustment-reason.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-administrative-gender.json +99 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-age-units.json +111 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-allergy-intolerance-category.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-allergy-intolerance-criticality.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-allergy-intolerance-status.json +94 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-allergy-intolerance-type.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-allergyintolerance-substance-code.json +67 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-animal-breeds.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-animal-genderstatus.json +83 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-animal-species.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-answer-format.json +130 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-appointmentstatus.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-approach-site-codes.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-assert-direction-codes.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-assert-operator-codes.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-assert-response-code-types.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-audit-event-action.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-audit-event-outcome.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-audit-event-sub-type.json +127 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-audit-event-type.json +114 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-audit-source-type.json +99 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-basic-resource-type.json +130 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-binding-strength.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-body-site.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-bodysite-laterality.json +63 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-bodysite-relative-location.json +99 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-bundle-type.json +100 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-c80-doc-classcodes.json +236 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-c80-facilitycodes.json +372 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-c80-practice-codes.json +524 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-care-plan-activity-category.json +94 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-care-plan-activity-status.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-care-plan-activity.json +62 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-care-plan-category.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-care-plan-relationship.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-care-plan-status.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-choice-list-orientation.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-claim-exception.json +71 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-claim-modifiers.json +101 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-claim-type-link.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-claim-use-link.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-classification-or-context.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-clinical-findings.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-clinical-impression-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-communication-request-status.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-communication-status.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-composition-attestation-mode.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-composition-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-concept-map-equivalence.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-category.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-cause.json +46 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-clinical.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-code.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-outcome.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-predecessor.json +46 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-severity.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-stage.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-state.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-condition-ver-status.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-conditional-delete-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-conformance-expectation.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-conformance-resource-status.json +100 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-conformance-statement-kind.json +76 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-consistency-type.json +67 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-constraint-severity.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contact-point-system.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contact-point-use.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contactentity-type.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-content-type.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-action.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-actorrole.json +59 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-signer-type.json +136 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-subtype.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-term-subtype.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-term-type.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-contract-type.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-cpt-all.json +22 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-data-absent-reason.json +120 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-data-types.json +285 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-dataelement-sdcobjectclass.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-dataelement-sdcobjectclassproperty.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-dataelement-stringency.json +89 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-days-of-week.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-defined-types.json +52 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-designation-use.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-detectedissue-category.json +62 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-detectedissue-mitigation-action.json +52 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-detectedissue-severity.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-device-action.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-device-use-request-priority.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-device-use-request-status.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-devicestatus.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diagnostic-order-event.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diagnostic-order-priority.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diagnostic-order-status.json +120 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diagnostic-report-status.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diagnostic-requests.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diagnostic-service-sections.json +50 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-dicm-402-roleid.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-dicm-405-mediatype.json +82 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-dicom-cid29.json +198 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-diet-type.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-digital-media-subtype.json +116 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-digital-media-type.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-doc-classcodes.json +180 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-doc-section-codes.json +219 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-doc-typecodes.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-document-mode.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-document-reference-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-document-relationship-type.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-admit-source.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-class.json +100 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-diet.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-discharge-disposition.json +86 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-location-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-participant-type.json +98 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-priority.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-reason.json +63 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-special-arrangements.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-special-courtesy.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-state.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-encounter-type.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-enteral-route.json +74 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-entformula-additive.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-entformula-type.json +193 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-episode-of-care-status.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-event-timing.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-example-expansion.json +177 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-example-inline.json +124 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-example-intensional.json +89 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-example-yesnodontknow.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-example.json +102 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-extension-context.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-extensions-ValueSet-author.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-extensions-ValueSet-effective.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-extensions-ValueSet-end.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-extensions-ValueSet-keyword.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-extensions-ValueSet-workflow.json +12 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-filter-operator.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-flag-category.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-flag-code.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-flag-priority.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-flag-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-fm-conditions.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-focal-subject.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-food-type.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-formatcodes.json +368 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-forms.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-fundsreserve.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-acceptance-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-category.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-priority.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-relationship-type.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-start-event.json +64 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-status-reason.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-goal-status.json +100 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-group-type.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-guide-dependency-type.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-guide-page-kind.json +97 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-guide-resource-purpose.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-history-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-http-verb.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-icd-10.json +76 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-identifier-type.json +126 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-identifier-use.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-identity-assuranceLevel.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-immunization-reason.json +54 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-immunization-recommendation-date-criterion.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-immunization-recommendation-status.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-immunization-route.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-immunization-site.json +55 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-instance-availability.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-intervention.json +71 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-investigation-sets.json +59 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-issue-severity.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-issue-type.json +208 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-kos-title.json +277 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-ldlcholesterol-codes.json +84 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-link-type.json +88 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-list-empty-reason.json +92 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-list-example-codes.json +95 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-list-item-flag.json +81 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-list-mode.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-list-order.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-list-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-location-mode.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-location-physical-type.json +110 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-location-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-manifestation-codes.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-manifestation-or-symptom.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-marital-status.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-measurement-principle.json +110 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-media-view.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-admin-status.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-codes.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-dispense-status.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-form-codes.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-order-status.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-package-form-codes.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-medication-statement-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-message-conformance-event-mode.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-message-events.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-message-reason-encounter.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-message-significance-category.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-message-transport.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-metric-calibration-state.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-metric-calibration-type.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-metric-category.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-metric-color.json +95 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-metric-operational-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-missing-tooth-reason.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-modified-foodtype.json +104 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-name-part-qualifier.json +161 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-name-use.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-namingsystem-identifier-type.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-namingsystem-type.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-narrative-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-network-type.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-nhin-purposeofuse.json +419 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-no-immunization-reason.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-note-type.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-nutrient-code.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-nutrition-order-status.json +95 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-object-lifecycle.json +130 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-object-role.json +175 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-object-type.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-category.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-codes.json +51 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-interpretation.json +45 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-methods.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-relationshiptypes.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-status.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-observation-valueabsentreason.json +50 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-operation-kind.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-operation-outcome.json +1464 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-operation-parameter-type.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-operation-parameter-use.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-oral-prosthodontic-material.json +91 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-order-status.json +102 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-organization-type.json +108 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-parent-relationship-codes.json +62 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-participant-role.json +92 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-participantrequired.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-participantstatus.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-participationstatus.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-patient-contact-relationship.json +101 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-patient-mpi-match.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-payeetype.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-payment-status.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-payment-type.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-performer-role.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-postal-address-use.json +131 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-practitioner-role.json +74 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-practitioner-specialty.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-probability-distribution-type.json +141 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-category.json +81 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-code.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-followup.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-not-performed-reason.json +123 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-outcome.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-progress-status-codes.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-reason.json +63 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-relationship-type.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-request-priority.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-request-status.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-procedure-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-process-outcome.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-process-priority.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-profile-code.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-property-representation.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-provenance-agent-role.json +147 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-provenance-agent-type.json +93 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-provenance-entity-role.json +77 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-quantity-comparator.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-question-max-occurs.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire-answers-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire-answers.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire-category.json +68 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire-question-control.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire-questions.json +49 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-questionnaire.json +2194 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-reaction-event-certainty.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-reaction-event-severity.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-reason-medication-given-codes.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-reason-medication-not-given-codes.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-referencerange-meaning.json +151 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-referralstatus.json +90 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-relatedperson-relationshiptype.json +55 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-relationship.json +66 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-remittance-outcome.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-report-codes.json +46 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-resource-aggregation-mode.json +72 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-resource-slicing-rules.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-resource-types.json +535 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-resource-validation-mode.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-response-code.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-restful-conformance-mode.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-restful-interaction.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-restful-security-service.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-risk-probability.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-route-codes.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-ruleset.json +69 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-search-entry-mode.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-search-modifier-code.json +105 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-search-param-type.json +95 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-search-xpath-usage.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-security-labels.json +48 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-service-pharmacy.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-service-product.json +61 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-service-provision-conditions.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-service-referral-method.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-service-uscls.json +146 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-signature-type.json +136 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-slotstatus.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-special-values.json +97 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-specimen-collection-method.json +103 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-specimen-collection-priority.json +76 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-specimen-container-type.json +53 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-specimen-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-specimen-treatment-procedure.json +45 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-structure-definition-kind.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-subscription-channel-type.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-subscription-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-subscription-tag.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-substance-category.json +85 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-substance-code.json +63 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplement-type.json +229 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplydelivery-status.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplydelivery-type.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplyrequest-kind.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplyrequest-reason.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplyrequest-status.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-supplyrequest-when.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-surface.json +106 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-system-restful-interaction.json +60 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-teeth.json +211 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-template-status-code.json +131 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-testscript-operation-codes.json +170 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-texture-code.json +110 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-timing-abbreviation.json +134 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-tooth.json +254 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-transaction-mode.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-type-restful-interaction.json +78 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-udi.json +56 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-units-of-time.json +115 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-unknown-content-code.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-use-context.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-usps-state.json +293 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vaccination-protocol-dose-status-reason.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vaccination-protocol-dose-status.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vaccination-protocol-dose-target.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vaccine-code.json +58 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-versioning-policy.json +70 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vision-base-codes.json +75 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vision-eye-codes.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-vision-product.json +57 -0
- data/lib/fhir_dstu2_models/examples/json/valueset-xds-relationship-type.json +80 -0
- data/lib/fhir_dstu2_models/examples/json/visionprescription-example-1.json +65 -0
- data/lib/fhir_dstu2_models/examples/json/visionprescription-example.json +47 -0
- data/lib/fhir_dstu2_models/examples/json/visionprescription-questionnaire.json +863 -0
- data/lib/fhir_dstu2_models/examples/json/xds-example.json +252 -0
- data/lib/fhir_dstu2_models/examples/json/xdsdocumentmanifest-questionnaire.json +896 -0
- data/lib/fhir_dstu2_models/examples/json/xdsdocumentreference-questionnaire.json +1251 -0
- data/lib/fhir_dstu2_models/examples/xml/account-example(example).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/allergyintolerance-example(allergyintolerance-example).xml +97 -0
- data/lib/fhir_dstu2_models/examples/xml/allergyintolerance-example(example).xml +96 -0
- data/lib/fhir_dstu2_models/examples/xml/allergyintolerance-example-refuted(allergyintolerance-example-refuted).xml +53 -0
- data/lib/fhir_dstu2_models/examples/xml/allergyintolerance-fishallergy(fishallergy).xml +48 -0
- data/lib/fhir_dstu2_models/examples/xml/allergyintolerance-medication(medication).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/appointment-example(example).xml +48 -0
- data/lib/fhir_dstu2_models/examples/xml/appointment-example-request(examplereq).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/appointment-example2doctors(2docs).xml +50 -0
- data/lib/fhir_dstu2_models/examples/xml/appointmentresponse-example(example).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/appointmentresponse-example-req(exampleresp).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/audit-event-example-login(example-login).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/audit-event-example-logout(example-logout).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/audit-event-example-media(example-media).xml +114 -0
- data/lib/fhir_dstu2_models/examples/xml/audit-event-example-pixQuery(example-pixQuery).xml +93 -0
- data/lib/fhir_dstu2_models/examples/xml/audit-event-example-search(example-search).xml +53 -0
- data/lib/fhir_dstu2_models/examples/xml/audit-event-example-vread(example-rest).xml +52 -0
- data/lib/fhir_dstu2_models/examples/xml/auditevent-example(example).xml +73 -0
- data/lib/fhir_dstu2_models/examples/xml/auditevent-example-disclosure(example-disclosure).xml +146 -0
- data/lib/fhir_dstu2_models/examples/xml/basic-adverseevent-example(basic-adverseevent-example).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/basic-example(referral).xml +60 -0
- data/lib/fhir_dstu2_models/examples/xml/basic-example-narrative(basic-example-narrative).xml +237 -0
- data/lib/fhir_dstu2_models/examples/xml/basic-example2(classModel).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/binary-f006(f006).xml +5 -0
- data/lib/fhir_dstu2_models/examples/xml/bodysite-example(example).xml +52 -0
- data/lib/fhir_dstu2_models/examples/xml/bundle-example(bundle-example).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/bundle-response(bundle-response).xml +136 -0
- data/lib/fhir_dstu2_models/examples/xml/bundle-transaction(bundle-transaction).xml +241 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example(example).xml +123 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-GPVisit(gpvisit).xml +138 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-f001-heart(f001).xml +69 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-f002-lung(f002).xml +69 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-f003-pharynx(f003).xml +69 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-f201-renal(f201).xml +102 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-f202-malignancy(f202).xml +123 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-f203-sepsis(f203).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-integrated(integrate).xml +516 -0
- data/lib/fhir_dstu2_models/examples/xml/careplan-example-pregnancy(preg).xml +228 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example(100150).xml +85 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-institutional(960150).xml +85 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-oral-average(100151).xml +187 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-oral-contained(100152).xml +139 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-oral-orthoplan(100153).xml +291 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-pharmacy(760150).xml +85 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-professional(860150).xml +85 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-vision(660150).xml +85 -0
- data/lib/fhir_dstu2_models/examples/xml/claim-example-vision-glasses(660151).xml +153 -0
- data/lib/fhir_dstu2_models/examples/xml/claimresponse-example(R3500).xml +113 -0
- data/lib/fhir_dstu2_models/examples/xml/clinicalimpression-example(example).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/communication-example(communication-example).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/communication-example(example).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/communicationrequest-example(communicationrequest-example).xml +30 -0
- data/lib/fhir_dstu2_models/examples/xml/communicationrequest-example(example).xml +13 -0
- data/lib/fhir_dstu2_models/examples/xml/composition-example(example).xml +167 -0
- data/lib/fhir_dstu2_models/examples/xml/conceptmap-example(101).xml +146 -0
- data/lib/fhir_dstu2_models/examples/xml/cond-uslab-example1(cond-uslab-example1).xml +26 -0
- data/lib/fhir_dstu2_models/examples/xml/cond-uslab-example2(cond-uslab-example2).xml +24 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example(condition-example).xml +57 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example(example).xml +48 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f001-heart(f001).xml +56 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f002-lung(f002).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f003-abscess(f003).xml +55 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f201-fever(f201).xml +63 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f202-malignancy(f202).xml +56 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f203-sepsis(f203).xml +56 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f204-renal(f204).xml +60 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-f205-infection(f205).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example-stroke(stroke).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/condition-example2(example2).xml +30 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-base2.xml +124 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-daf-query-requestor(conformance-daf-query-requestor).xml +2506 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-ehrs-rle(conformance-ehrs-rle).xml +312 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-example(example).xml +201 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-phr-example(phr).xml +120 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-de-curator(conformance-sdc-de-curator).xml +746 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-de-registry(conformance-sdc-de-registry).xml +1245 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-form-archiver(conformance-sdc-form-archiver).xml +749 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-form-designer(conformance-sdc-form-designer).xml +1064 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-form-filler(conformance-sdc-form-filler).xml +959 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-form-manager(conformance-sdc-form-manager).xml +1182 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-sdc-form-receiver(conformance-sdc-form-receiver).xml +519 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-terminology-server(conformance-terminology-server).xml +335 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-uslaborder-orderer(conformance-uslaborder-orderer).xml +179 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-uslaborder-receiver(conformance-uslaborder-receiver).xml +179 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-uslabreport-receiver(conformance-uslabreport-receiver).xml +179 -0
- data/lib/fhir_dstu2_models/examples/xml/conformance-uslabreport-sender(conformance-uslabreport-sender).xml +179 -0
- data/lib/fhir_dstu2_models/examples/xml/contract-example(C-123).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/coverage-example(9876B1).xml +40 -0
- data/lib/fhir_dstu2_models/examples/xml/coverage-example-2(7546D).xml +38 -0
- data/lib/fhir_dstu2_models/examples/xml/dataelement-example(gender).xml +386 -0
- data/lib/fhir_dstu2_models/examples/xml/dataelement-labtestmaster-example(prothrombin).xml +56 -0
- data/lib/fhir_dstu2_models/examples/xml/dataelement-sdc-profile-example(dataelement-sdc-profile-example).xml +44 -0
- data/lib/fhir_dstu2_models/examples/xml/dataelement-sdc-profile-example-de(dataelement-sdc-profile-example-de).xml +256 -0
- data/lib/fhir_dstu2_models/examples/xml/detectedissue-example(ddi).xml +52 -0
- data/lib/fhir_dstu2_models/examples/xml/detectedissue-example-allergy(allergy).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/detectedissue-example-dup(duplicate).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/detectedissue-example-lab(lab).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/device-example(example).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/device-example-f001-feedingtube(f001).xml +18 -0
- data/lib/fhir_dstu2_models/examples/xml/device-example-ihe-pcd(ihe-pcd).xml +25 -0
- data/lib/fhir_dstu2_models/examples/xml/device-example-pacemaker(example-pacemaker).xml +24 -0
- data/lib/fhir_dstu2_models/examples/xml/device-example-software(software).xml +17 -0
- data/lib/fhir_dstu2_models/examples/xml/devicecomponent-example(example).xml +124 -0
- data/lib/fhir_dstu2_models/examples/xml/devicecomponent-example-prodspec(example-prodspec).xml +167 -0
- data/lib/fhir_dstu2_models/examples/xml/devicemetric-example(example).xml +22 -0
- data/lib/fhir_dstu2_models/examples/xml/deviceuserequest-example(deviceuserequest-example).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/deviceuserequest-example(example).xml +17 -0
- data/lib/fhir_dstu2_models/examples/xml/deviceusestatement-example(example).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticorder-example(diagnosticorder-example).xml +56 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticorder-example(example).xml +88 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticorder-example-di(di).xml +40 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticorder-example-ft4(ft4).xml +61 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example(101).xml +790 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example(diagnosticreport-example).xml +690 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-dxa(102).xml +405 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-f001-bloodexam(f001).xml +100 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-f201-brainct(f201).xml +45 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-f202-bloodculture(f202).xml +66 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-ghp(ghp).xml +2312 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-lipids(lipids).xml +214 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-example-ultrasound(ultrasound).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/diagnosticreport-micro1(micro).xml +993 -0
- data/lib/fhir_dstu2_models/examples/xml/do-uslab-example1(do-uslab-example1).xml +90 -0
- data/lib/fhir_dstu2_models/examples/xml/document-example-dischargesummary(father).xml +503 -0
- data/lib/fhir_dstu2_models/examples/xml/documentmanifest-example(example).xml +71 -0
- data/lib/fhir_dstu2_models/examples/xml/documentreference-example(example).xml +142 -0
- data/lib/fhir_dstu2_models/examples/xml/eligibilityrequest-example(52345).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/eligibilityresponse-example(E2500).xml +33 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example(encounter-example).xml +44 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example(example).xml +12 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-f001-heart(f001).xml +84 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-f002-lung(f002).xml +84 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-f003-abscess(f003).xml +86 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-f201-20130404(f201).xml +40 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-f202-20130128(f202).xml +55 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-f203-20130311(f203).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-home(home).xml +45 -0
- data/lib/fhir_dstu2_models/examples/xml/encounter-example-xcda(xcda).xml +25 -0
- data/lib/fhir_dstu2_models/examples/xml/enrollmentrequest-example(22345).xml +30 -0
- data/lib/fhir_dstu2_models/examples/xml/enrollmentresponse-example(ER2500).xml +32 -0
- data/lib/fhir_dstu2_models/examples/xml/episodeofcare-example(example).xml +86 -0
- data/lib/fhir_dstu2_models/examples/xml/explanationofbenefit-example(R3500).xml +33 -0
- data/lib/fhir_dstu2_models/examples/xml/familymemberhistory-example(familymemberhistory-example).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/familymemberhistory-example(father).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/familymemberhistory-example-mother(mother).xml +36 -0
- data/lib/fhir_dstu2_models/examples/xml/flag-example(example).xml +35 -0
- data/lib/fhir_dstu2_models/examples/xml/flag-example(flag-example).xml +40 -0
- data/lib/fhir_dstu2_models/examples/xml/flag-example-encounter(example-encounter).xml +32 -0
- data/lib/fhir_dstu2_models/examples/xml/goal-example(example).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/goal-example(goal-example).xml +62 -0
- data/lib/fhir_dstu2_models/examples/xml/group-example(101).xml +36 -0
- data/lib/fhir_dstu2_models/examples/xml/group-example-member(102).xml +50 -0
- data/lib/fhir_dstu2_models/examples/xml/healthcareservice-example(example).xml +135 -0
- data/lib/fhir_dstu2_models/examples/xml/imagingobjectselection-example(example).xml +45 -0
- data/lib/fhir_dstu2_models/examples/xml/imagingstudy-example(example).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/imagingstudy-example(imagingstudy-example).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/immunization-example(example).xml +104 -0
- data/lib/fhir_dstu2_models/examples/xml/immunization-example-refused(notGiven).xml +26 -0
- data/lib/fhir_dstu2_models/examples/xml/immunizationrecommendation-example(example).xml +76 -0
- data/lib/fhir_dstu2_models/examples/xml/implementationguide-example(example).xml +77 -0
- data/lib/fhir_dstu2_models/examples/xml/list-example(example).xml +74 -0
- data/lib/fhir_dstu2_models/examples/xml/list-example-allergies(current-allergies).xml +44 -0
- data/lib/fhir_dstu2_models/examples/xml/list-example-empty(example-empty).xml +32 -0
- data/lib/fhir_dstu2_models/examples/xml/list-example-familyhistory-f201-roel(f201).xml +91 -0
- data/lib/fhir_dstu2_models/examples/xml/list-example-familyhistory-genetics-profile(genetic).xml +299 -0
- data/lib/fhir_dstu2_models/examples/xml/list-example-medlist(med-list).xml +63 -0
- data/lib/fhir_dstu2_models/examples/xml/location-example(1).xml +61 -0
- data/lib/fhir_dstu2_models/examples/xml/location-example-ambulance(amb).xml +33 -0
- data/lib/fhir_dstu2_models/examples/xml/location-example-hl7hq(hl7).xml +59 -0
- data/lib/fhir_dstu2_models/examples/xml/location-example-patients-home(ph).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/location-example-room(2).xml +38 -0
- data/lib/fhir_dstu2_models/examples/xml/location-example-ukpharmacy(ukp).xml +25 -0
- data/lib/fhir_dstu2_models/examples/xml/media-example(example).xml +37 -0
- data/lib/fhir_dstu2_models/examples/xml/media-example-dicom(1.2.840.11361907579238403408700.3.0.14.19970327150033).xml +88 -0
- data/lib/fhir_dstu2_models/examples/xml/media-example-sound(sound).xml +25 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f001-combivent(f001).xml +43 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f002-crestor(f002).xml +34 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f003-tolbutamide(f003).xml +34 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f004-metoprolol(f004).xml +34 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f005-enalapril(f005).xml +34 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f201-salmeterol(f201).xml +55 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f202-flucloxacilline(f202).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/medication-example-f203-paracetamol(f203).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationadministrationexample1(medadminexample01).xml +34 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationadministrationexample2(medadminexample02).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationadministrationexample3(medadminexample03).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispense-example(medicationdispense-example).xml +117 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispenseexample1(meddisp001).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispenseexample2(meddisp002).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispenseexample3(meddisp003).xml +108 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispenseexample4(meddisp004).xml +154 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispenseexample6(meddisp006).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationdispenseexample8(meddisp008).xml +54 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample1(medexample001).xml +14 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample11(medexample011).xml +52 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample12(medexample012).xml +22 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample13(medexample013).xml +52 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample14(medexample014).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample15(medexample015).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample16(medexample016).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample17(medexample017).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample2(medexample002).xml +33 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample3(medexample003).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample4(medexample004).xml +71 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample5(medexample005).xml +31 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample6(medexample006).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample7(medexample007).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationexample8(medexample008).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example(medicationorder-example).xml +99 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f001-combivent(f001).xml +90 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f002-crestor(f002).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f003-tolbutamide(f003).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f004-metoprolol(f004).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f005-enalapril(f005).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f201-salmeterol(f201).xml +83 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f202-flucloxacilline(f202).xml +65 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorder-example-f203-paracetamol(f203).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample1(medrx001).xml +108 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample2(medrx002).xml +40 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample3(medrx003).xml +151 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample4(medrx004).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample5(medrx005).xml +111 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample6(medrx006).xml +59 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample7(medrx007).xml +44 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample8(medrx008).xml +51 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationorderexample9(medrx009).xml +47 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatement-example(medicationstatement-example).xml +34 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatementexample1(example001).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatementexample2(example002).xml +30 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatementexample4(example004).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatementexample5(example005).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatementexample6(example006).xml +47 -0
- data/lib/fhir_dstu2_models/examples/xml/medicationstatementexample7(example007).xml +22 -0
- data/lib/fhir_dstu2_models/examples/xml/message-request-link(10bb101f-a121-4264-a920-67be9cb82c74).xml +142 -0
- data/lib/fhir_dstu2_models/examples/xml/message-response-link(3a0707d3-549e-4467-b8b8-5a2ab3800efe).xml +182 -0
- data/lib/fhir_dstu2_models/examples/xml/messageheader-example(1cbdfb97-5859-48a4-8301-d54eab818d68).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/namingsystem-example(example).xml +40 -0
- data/lib/fhir_dstu2_models/examples/xml/namingsystem-example-id(example-id).xml +57 -0
- data/lib/fhir_dstu2_models/examples/xml/namingsystem-example-replaced(example-replaced).xml +27 -0
- data/lib/fhir_dstu2_models/examples/xml/namingsystem-registry(registry).xml +1768 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-cardiacdiet(cardiacdiet).xml +141 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-diabeticdiet(diabeticdiet).xml +116 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-diabeticsupplement(diabeticsupplement).xml +107 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-energysupplement(energysupplement).xml +98 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-enteralbolus(enteralbolus).xml +130 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-enteralcontinuous(enteralcontinuous).xml +126 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-fiberrestricteddiet(fiberrestricteddiet).xml +134 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-infantenteral(infantenteral).xml +108 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-proteinsupplement(proteinsupplement).xml +77 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-pureeddiet(pureeddiet).xml +117 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-pureeddiet-simple(pureeddiet-simple).xml +105 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-renaldiet(renaldiet).xml +147 -0
- data/lib/fhir_dstu2_models/examples/xml/nutritionorder-example-texture-modified(texturemodified).xml +63 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example1-somatic(genetics-example1-somatic).xml +145 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example2-germline(genetics-example2-germline).xml +105 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example3-mutationlist(genetics-example3-mutationlist).xml +67 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example3-mutationlist-1(genetics-example3-mutationlist-1).xml +53 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example3-mutationlist-2(genetics-example3-mutationlist-2).xml +59 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example3-mutationlist-3(genetics-example3-mutationlist-3).xml +57 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-genetics-example3-mutationlist-4(genetics-example3-mutationlist-4).xml +57 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example1(obs-uslab-example1).xml +102 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example2(obs-uslab-example2).xml +93 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example3(obs-uslab-example3).xml +81 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example4(obs-uslab-example4).xml +99 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example5(obs-uslab-example5).xml +102 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example6(obs-uslab-example6).xml +86 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example7(obs-uslab-example7).xml +93 -0
- data/lib/fhir_dstu2_models/examples/xml/obs-uslab-example8(obs-uslab-example8).xml +112 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example(example).xml +60 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example(observation-example).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-bloodpressure(blood-pressure).xml +98 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-bloodpressure-cancel(blood-pressure-cancel).xml +117 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f001-glucose(f001).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f002-excess(f002).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f003-co2(f003).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f004-erythrocyte(f004).xml +60 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f005-hemoglobin(f005).xml +57 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f202-temperature(f202).xml +71 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f203-bicarbonate(f203).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f204-creatinine(f204).xml +64 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f205-egfr(f205).xml +110 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-f206-staphylococcus(f206).xml +49 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-glasgow(glasgow).xml +235 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-glasgow-qa(gcs-qa).xml +81 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-sample-data(ekg).xml +108 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-satO2(satO2).xml +50 -0
- data/lib/fhir_dstu2_models/examples/xml/observation-example-unsat(unsat).xml +53 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-composition-document.xml +87 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-conceptmap-closure.xml +146 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-conceptmap-translate.xml +437 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-encounter-everything.xml +87 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-list-find.xml +110 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-messageheader-process-message.xml +151 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-patient-everything.xml +149 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-questionnaire-populate.xml +246 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-resource-meta-add.xml +106 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-resource-meta-delete.xml +106 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-resource-meta.xml +105 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-resource-validate.xml +186 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-structuredefinition-questionnaire.xml +188 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-valueset-expand.xml +258 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-valueset-lookup.xml +338 -0
- data/lib/fhir_dstu2_models/examples/xml/operation-valueset-validate-code.xml +356 -0
- data/lib/fhir_dstu2_models/examples/xml/operationdefinition-example(example).xml +43 -0
- data/lib/fhir_dstu2_models/examples/xml/operationoutcome-example(101).xml +18 -0
- data/lib/fhir_dstu2_models/examples/xml/operationoutcome-example-allok(allok).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/operationoutcome-example-break-the-glass(break-the-glass).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/operationoutcome-example-exception(exception).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/operationoutcome-example-searchfail(searchfail).xml +17 -0
- data/lib/fhir_dstu2_models/examples/xml/operationoutcome-example-validationfail(validationfail).xml +17 -0
- data/lib/fhir_dstu2_models/examples/xml/order-example(example).xml +31 -0
- data/lib/fhir_dstu2_models/examples/xml/order-example-f201-physiotherapy(f201).xml +31 -0
- data/lib/fhir_dstu2_models/examples/xml/orderresponse-example(example).xml +52 -0
- data/lib/fhir_dstu2_models/examples/xml/org-uslab-example1(org-uslab-example1).xml +31 -0
- data/lib/fhir_dstu2_models/examples/xml/org-uslab-example2(org-uslab-example2).xml +36 -0
- data/lib/fhir_dstu2_models/examples/xml/org-uslab-example3(org-uslab-example3).xml +32 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example(hl7).xml +47 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example(organization-example).xml +68 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-f001-burgers(f001).xml +71 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-f002-burgers-card(f002).xml +48 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-f003-burgers-ENT(f003).xml +48 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-f201-aumc(f201).xml +88 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-f203-bumc(f203).xml +54 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-gastro(1).xml +33 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-good-health-care(2.16.840.1.113883.19.5).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-insurer(2).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/organization-example-lab(1832473e-2fe0-452d-abe9-3cdb9879522f).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/parameters-example(example).xml +16 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example(example).xml +140 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example(patient-example).xml +112 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-a(pat1).xml +55 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-animal(animal).xml +119 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-b(pat2).xml +54 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-c(pat3).xml +35 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-d(pat4).xml +35 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-dicom(dicom).xml +45 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-f001-pieter(f001).xml +85 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-f201-roel(f201).xml +116 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-ihe-pcd(ihe-pcd).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-proband(proband).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-us-extensions(us01).xml +98 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-xcda(xcda).xml +33 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-example-xds(xds).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-examples-general(b248b1b2-1686-4b94-9936-37d7a5f94b51).xml +559 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-glossy-example(glossy).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-mpi-search(patient-mpi).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-uslab-example1(patient-uslab-example1).xml +44 -0
- data/lib/fhir_dstu2_models/examples/xml/patient-uslab-example2(patient-uslab-example2).xml +103 -0
- data/lib/fhir_dstu2_models/examples/xml/paymentnotice-example(77654).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/paymentreconciliation-example(ER2500).xml +83 -0
- data/lib/fhir_dstu2_models/examples/xml/person-example(example).xml +96 -0
- data/lib/fhir_dstu2_models/examples/xml/person-example-f002-ariadne(f002).xml +39 -0
- data/lib/fhir_dstu2_models/examples/xml/person-grahame(grahame).xml +88 -0
- data/lib/fhir_dstu2_models/examples/xml/person-patient-portal(pp).xml +78 -0
- data/lib/fhir_dstu2_models/examples/xml/person-provider-directory(pd).xml +70 -0
- data/lib/fhir_dstu2_models/examples/xml/pract-uslab-example1(pract-uslab-example1).xml +18 -0
- data/lib/fhir_dstu2_models/examples/xml/pract-uslab-example2(pract-uslab-example2).xml +50 -0
- data/lib/fhir_dstu2_models/examples/xml/pract-uslab-example3(pract-uslab-example3).xml +18 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example(example).xml +62 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example(practitioner-example).xml +47 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f001-evdb(f001).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f002-pv(f002).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f003-mv(f003).xml +80 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f004-rb(f004).xml +81 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f005-al(f005).xml +87 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f006-rvdb(f006).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f007-sh(f007).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f201-ab(f201).xml +73 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f202-lm(f202).xml +63 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f203-jvg(f203).xml +59 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-f204-ce(f204).xml +54 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-xcda-author(xcda-author).xml +14 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-example-xcda1(xcda1).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/practitioner-examples-general(3ad0687e-f477-468c-afd5-fcc2bf897809).xml +2674 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example(example).xml +35 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example(procedure-example).xml +50 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-biopsy(biopsy).xml +43 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-f001-heart(f001).xml +56 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-f002-lung(f002).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-f003-abscess(f003).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-f004-tracheotomy(f004).xml +58 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-f201-tpf(f201).xml +55 -0
- data/lib/fhir_dstu2_models/examples/xml/procedure-example-implant(example-implant).xml +41 -0
- data/lib/fhir_dstu2_models/examples/xml/procedurerequest-example(example).xml +21 -0
- data/lib/fhir_dstu2_models/examples/xml/procedurerequest-example(procedurerequest-example).xml +44 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example(1110).xml +22 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-poll-eob(1115).xml +20 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-poll-exclusive(1113).xml +25 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-poll-inclusive(1112).xml +24 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-poll-payrec(1114).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-poll-specific(1111).xml +26 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-reprocess(44654).xml +32 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-reverse(87654).xml +28 -0
- data/lib/fhir_dstu2_models/examples/xml/processrequest-example-status(87655).xml +30 -0
- data/lib/fhir_dstu2_models/examples/xml/processresponse-example(SR2500).xml +35 -0
- data/lib/fhir_dstu2_models/examples/xml/provenance-example(example).xml +86 -0
- data/lib/fhir_dstu2_models/examples/xml/provenance-example-sig(signature).xml +61 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaire-example(3141).xml +158 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaire-example-bluebook(bb).xml +95 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaire-example-f201-lifelines(f201).xml +72 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaire-example-gcs(gcs).xml +164 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaire-sdc-profile-example-cap(questionnaire-sdc-profile-example-cap).xml +537 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaire-sdc-profile-example-loinc(questionnaire-sdc-profile-example-loinc).xml +1416 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaireresponse-example(3141).xml +147 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaireresponse-example-bluebook(bb).xml +121 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaireresponse-example-f201-lifelines(f201).xml +82 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaireresponse-example-gcs(gcs).xml +70 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaireresponse-sdc-example-ussg-fht-answers.xml +1779 -0
- data/lib/fhir_dstu2_models/examples/xml/questionnaireresponse-sdc-profile-example(questionnaireresponse-sdc-profile-example).xml +116 -0
- data/lib/fhir_dstu2_models/examples/xml/referralrequest-example(example).xml +62 -0
- data/lib/fhir_dstu2_models/examples/xml/referralrequest-example(referralrequest-example).xml +65 -0
- data/lib/fhir_dstu2_models/examples/xml/relatedperson-example(benedicte).xml +77 -0
- data/lib/fhir_dstu2_models/examples/xml/relatedperson-example-f001-sarah(f001).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/relatedperson-example-f002-ariadne(f002).xml +46 -0
- data/lib/fhir_dstu2_models/examples/xml/relatedperson-example-peter(peter).xml +66 -0
- data/lib/fhir_dstu2_models/examples/xml/riskassessment-example(genetic).xml +214 -0
- data/lib/fhir_dstu2_models/examples/xml/riskassessment-example-cardiac(cardiac).xml +107 -0
- data/lib/fhir_dstu2_models/examples/xml/riskassessment-example-population(population).xml +9 -0
- data/lib/fhir_dstu2_models/examples/xml/riskassessment-example-prognosis(prognosis).xml +30 -0
- data/lib/fhir_dstu2_models/examples/xml/schedule-example(example).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/searchparameter-example(example).xml +25 -0
- data/lib/fhir_dstu2_models/examples/xml/searchparameter-example-extension(example-extension).xml +19 -0
- data/lib/fhir_dstu2_models/examples/xml/slot-example(example).xml +22 -0
- data/lib/fhir_dstu2_models/examples/xml/slot-example-busy(1).xml +27 -0
- data/lib/fhir_dstu2_models/examples/xml/slot-example-tentative(2).xml +22 -0
- data/lib/fhir_dstu2_models/examples/xml/slot-example-unavailable(3).xml +23 -0
- data/lib/fhir_dstu2_models/examples/xml/spec-uslab-example1(spec-uslab-example1).xml +78 -0
- data/lib/fhir_dstu2_models/examples/xml/spec-uslab-example2(spec-uslab-example2).xml +62 -0
- data/lib/fhir_dstu2_models/examples/xml/specimen-example(101).xml +107 -0
- data/lib/fhir_dstu2_models/examples/xml/specimen-example(specimen-example).xml +75 -0
- data/lib/fhir_dstu2_models/examples/xml/specimen-example-isolate(isolate).xml +91 -0
- data/lib/fhir_dstu2_models/examples/xml/specimen-example-urine(vma-urine).xml +67 -0
- data/lib/fhir_dstu2_models/examples/xml/structuredefinition-example(example).xml +417 -0
- data/lib/fhir_dstu2_models/examples/xml/subscription-example(example).xml +26 -0
- data/lib/fhir_dstu2_models/examples/xml/subscription-example-error(example-error).xml +29 -0
- data/lib/fhir_dstu2_models/examples/xml/substance-example(example).xml +23 -0
- data/lib/fhir_dstu2_models/examples/xml/substance-example-amoxicillin-clavulanate(f205).xml +80 -0
- data/lib/fhir_dstu2_models/examples/xml/substance-example-f201-dust(f201).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/substance-example-f202-staphylococcus(f202).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/substance-example-f203-potassium(f203).xml +19 -0
- data/lib/fhir_dstu2_models/examples/xml/substance-example-silver-nitrate-product(f204).xml +35 -0
- data/lib/fhir_dstu2_models/examples/xml/supplydelivery-example(example).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/supplyrequest-example(example).xml +10 -0
- data/lib/fhir_dstu2_models/examples/xml/testscript-example(example).xml +153 -0
- data/lib/fhir_dstu2_models/examples/xml/testscript-example-multiserver(multiserver).xml +276 -0
- data/lib/fhir_dstu2_models/examples/xml/testscript-history(history).xml +99 -0
- data/lib/fhir_dstu2_models/examples/xml/testscript-readtest(ReadTestScript).xml +133 -0
- data/lib/fhir_dstu2_models/examples/xml/testscript-search(search).xml +246 -0
- data/lib/fhir_dstu2_models/examples/xml/testscript-update(update).xml +95 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-cpt-all(cpt-all).xml +31 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-example(example-extensional).xml +111 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-example-expansion(example-expansion).xml +199 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-example-inline(example-inline).xml +197 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-example-intensional(example-intensional).xml +82 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-example-yesnodontknow(yesnodontknow).xml +108 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-nhin-purposeofuse(nhin-purposeofuse).xml +664 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-restful-interaction(restful-interaction).xml +248 -0
- data/lib/fhir_dstu2_models/examples/xml/valueset-sdc-profile-example(valueset-sdc-profile-example).xml +149 -0
- data/lib/fhir_dstu2_models/examples/xml/visionprescription-example(33123).xml +53 -0
- data/lib/fhir_dstu2_models/examples/xml/visionprescription-example-1(33124).xml +68 -0
- data/lib/fhir_dstu2_models/examples/xml/xds-example(xds).xml +215 -0
- data/lib/fhir_dstu2_models/fhir.rb +84 -0
- data/lib/fhir_dstu2_models/fhir/metadata.rb +28 -0
- data/lib/fhir_dstu2_models/fhir/resources/Account.rb +56 -0
- data/lib/fhir_dstu2_models/fhir/resources/AllergyIntolerance.rb +94 -0
- data/lib/fhir_dstu2_models/fhir/resources/Appointment.rb +82 -0
- data/lib/fhir_dstu2_models/fhir/resources/AppointmentResponse.rb +50 -0
- data/lib/fhir_dstu2_models/fhir/resources/AuditEvent.rb +208 -0
- data/lib/fhir_dstu2_models/fhir/resources/Basic.rb +44 -0
- data/lib/fhir_dstu2_models/fhir/resources/Binary.rb +30 -0
- data/lib/fhir_dstu2_models/fhir/resources/BodySite.rb +46 -0
- data/lib/fhir_dstu2_models/fhir/resources/Bundle.rb +156 -0
- data/lib/fhir_dstu2_models/fhir/resources/CarePlan.rb +186 -0
- data/lib/fhir_dstu2_models/fhir/resources/Claim.rb +332 -0
- data/lib/fhir_dstu2_models/fhir/resources/ClaimResponse.rb +398 -0
- data/lib/fhir_dstu2_models/fhir/resources/ClinicalImpression.rb +133 -0
- data/lib/fhir_dstu2_models/fhir/resources/Communication.rb +85 -0
- data/lib/fhir_dstu2_models/fhir/resources/CommunicationRequest.rb +92 -0
- data/lib/fhir_dstu2_models/fhir/resources/Composition.rb +138 -0
- data/lib/fhir_dstu2_models/fhir/resources/ConceptMap.rb +166 -0
- data/lib/fhir_dstu2_models/fhir/resources/Condition.rb +128 -0
- data/lib/fhir_dstu2_models/fhir/resources/Conformance.rb +442 -0
- data/lib/fhir_dstu2_models/fhir/resources/Contract.rb +320 -0
- data/lib/fhir_dstu2_models/fhir/resources/Coverage.rb +62 -0
- data/lib/fhir_dstu2_models/fhir/resources/DataElement.rb +106 -0
- data/lib/fhir_dstu2_models/fhir/resources/DetectedIssue.rb +76 -0
- data/lib/fhir_dstu2_models/fhir/resources/Device.rb +66 -0
- data/lib/fhir_dstu2_models/fhir/resources/DeviceComponent.rb +76 -0
- data/lib/fhir_dstu2_models/fhir/resources/DeviceMetric.rb +76 -0
- data/lib/fhir_dstu2_models/fhir/resources/DeviceUseRequest.rb +70 -0
- data/lib/fhir_dstu2_models/fhir/resources/DeviceUseStatement.rb +62 -0
- data/lib/fhir_dstu2_models/fhir/resources/DiagnosticOrder.rb +108 -0
- data/lib/fhir_dstu2_models/fhir/resources/DiagnosticReport.rb +93 -0
- data/lib/fhir_dstu2_models/fhir/resources/DocumentManifest.rb +101 -0
- data/lib/fhir_dstu2_models/fhir/resources/DocumentReference.rb +158 -0
- data/lib/fhir_dstu2_models/fhir/resources/DomainResource.rb +34 -0
- data/lib/fhir_dstu2_models/fhir/resources/EligibilityRequest.rb +48 -0
- data/lib/fhir_dstu2_models/fhir/resources/EligibilityResponse.rb +54 -0
- data/lib/fhir_dstu2_models/fhir/resources/Encounter.rb +174 -0
- data/lib/fhir_dstu2_models/fhir/resources/EnrollmentRequest.rb +54 -0
- data/lib/fhir_dstu2_models/fhir/resources/EnrollmentResponse.rb +54 -0
- data/lib/fhir_dstu2_models/fhir/resources/EpisodeOfCare.rb +98 -0
- data/lib/fhir_dstu2_models/fhir/resources/ExplanationOfBenefit.rb +54 -0
- data/lib/fhir_dstu2_models/fhir/resources/FamilyMemberHistory.rb +112 -0
- data/lib/fhir_dstu2_models/fhir/resources/Flag.rb +50 -0
- data/lib/fhir_dstu2_models/fhir/resources/Goal.rb +93 -0
- data/lib/fhir_dstu2_models/fhir/resources/Group.rb +105 -0
- data/lib/fhir_dstu2_models/fhir/resources/HealthcareService.rb +142 -0
- data/lib/fhir_dstu2_models/fhir/resources/ImagingObjectSelection.rb +138 -0
- data/lib/fhir_dstu2_models/fhir/resources/ImagingStudy.rb +132 -0
- data/lib/fhir_dstu2_models/fhir/resources/Immunization.rb +150 -0
- data/lib/fhir_dstu2_models/fhir/resources/ImmunizationRecommendation.rb +116 -0
- data/lib/fhir_dstu2_models/fhir/resources/ImplementationGuide.rb +213 -0
- data/lib/fhir_dstu2_models/fhir/resources/List.rb +84 -0
- data/lib/fhir_dstu2_models/fhir/resources/Location.rb +80 -0
- data/lib/fhir_dstu2_models/fhir/resources/Media.rb +58 -0
- data/lib/fhir_dstu2_models/fhir/resources/Medication.rb +146 -0
- data/lib/fhir_dstu2_models/fhir/resources/MedicationAdministration.rb +106 -0
- data/lib/fhir_dstu2_models/fhir/resources/MedicationDispense.rb +143 -0
- data/lib/fhir_dstu2_models/fhir/resources/MedicationOrder.rb +173 -0
- data/lib/fhir_dstu2_models/fhir/resources/MedicationStatement.rb +119 -0
- data/lib/fhir_dstu2_models/fhir/resources/MessageHeader.rb +126 -0
- data/lib/fhir_dstu2_models/fhir/resources/NamingSystem.rb +104 -0
- data/lib/fhir_dstu2_models/fhir/resources/NutritionOrder.rb +213 -0
- data/lib/fhir_dstu2_models/fhir/resources/Observation.rb +189 -0
- data/lib/fhir_dstu2_models/fhir/resources/OperationDefinition.rb +151 -0
- data/lib/fhir_dstu2_models/fhir/resources/OperationOutcome.rb +62 -0
- data/lib/fhir_dstu2_models/fhir/resources/Order.rb +75 -0
- data/lib/fhir_dstu2_models/fhir/resources/OrderResponse.rb +48 -0
- data/lib/fhir_dstu2_models/fhir/resources/Organization.rb +74 -0
- data/lib/fhir_dstu2_models/fhir/resources/Parameters.rb +119 -0
- data/lib/fhir_dstu2_models/fhir/resources/Patient.rb +168 -0
- data/lib/fhir_dstu2_models/fhir/resources/PaymentNotice.rb +54 -0
- data/lib/fhir_dstu2_models/fhir/resources/PaymentReconciliation.rb +114 -0
- data/lib/fhir_dstu2_models/fhir/resources/Person.rb +74 -0
- data/lib/fhir_dstu2_models/fhir/resources/Practitioner.rb +108 -0
- data/lib/fhir_dstu2_models/fhir/resources/Procedure.rb +124 -0
- data/lib/fhir_dstu2_models/fhir/resources/ProcedureRequest.rb +75 -0
- data/lib/fhir_dstu2_models/fhir/resources/ProcessRequest.rb +84 -0
- data/lib/fhir_dstu2_models/fhir/resources/ProcessResponse.rb +80 -0
- data/lib/fhir_dstu2_models/fhir/resources/Provenance.rb +124 -0
- data/lib/fhir_dstu2_models/fhir/resources/Questionnaire.rb +116 -0
- data/lib/fhir_dstu2_models/fhir/resources/QuestionnaireResponse.rb +149 -0
- data/lib/fhir_dstu2_models/fhir/resources/ReferralRequest.rb +66 -0
- data/lib/fhir_dstu2_models/fhir/resources/RelatedPerson.rb +54 -0
- data/lib/fhir_dstu2_models/fhir/resources/Resource.rb +26 -0
- data/lib/fhir_dstu2_models/fhir/resources/RiskAssessment.rb +90 -0
- data/lib/fhir_dstu2_models/fhir/resources/Schedule.rb +44 -0
- data/lib/fhir_dstu2_models/fhir/resources/SearchParameter.rb +84 -0
- data/lib/fhir_dstu2_models/fhir/resources/Slot.rb +50 -0
- data/lib/fhir_dstu2_models/fhir/resources/Specimen.rb +142 -0
- data/lib/fhir_dstu2_models/fhir/resources/StructureDefinition.rb +164 -0
- data/lib/fhir_dstu2_models/fhir/resources/Subscription.rb +74 -0
- data/lib/fhir_dstu2_models/fhir/resources/Substance.rb +88 -0
- data/lib/fhir_dstu2_models/fhir/resources/SupplyDelivery.rb +56 -0
- data/lib/fhir_dstu2_models/fhir/resources/SupplyRequest.rb +79 -0
- data/lib/fhir_dstu2_models/fhir/resources/TestScript.rb +446 -0
- data/lib/fhir_dstu2_models/fhir/resources/ValueSet.rb +345 -0
- data/lib/fhir_dstu2_models/fhir/resources/VisionPrescription.rb +99 -0
- data/lib/fhir_dstu2_models/fhir/types/Address.rb +38 -0
- data/lib/fhir_dstu2_models/fhir/types/Annotation.rb +29 -0
- data/lib/fhir_dstu2_models/fhir/types/Attachment.rb +34 -0
- data/lib/fhir_dstu2_models/fhir/types/BackboneElement.rb +20 -0
- data/lib/fhir_dstu2_models/fhir/types/CodeableConcept.rb +22 -0
- data/lib/fhir_dstu2_models/fhir/types/Coding.rb +28 -0
- data/lib/fhir_dstu2_models/fhir/types/ContactPoint.rb +28 -0
- data/lib/fhir_dstu2_models/fhir/types/Element.rb +18 -0
- data/lib/fhir_dstu2_models/fhir/types/ElementDefinition.rb +603 -0
- data/lib/fhir_dstu2_models/fhir/types/Extension.rb +89 -0
- data/lib/fhir_dstu2_models/fhir/types/HumanName.rb +32 -0
- data/lib/fhir_dstu2_models/fhir/types/Identifier.rb +30 -0
- data/lib/fhir_dstu2_models/fhir/types/Meta.rb +28 -0
- data/lib/fhir_dstu2_models/fhir/types/Narrative.rb +22 -0
- data/lib/fhir_dstu2_models/fhir/types/Period.rb +22 -0
- data/lib/fhir_dstu2_models/fhir/types/Quantity.rb +28 -0
- data/lib/fhir_dstu2_models/fhir/types/Range.rb +22 -0
- data/lib/fhir_dstu2_models/fhir/types/Ratio.rb +22 -0
- data/lib/fhir_dstu2_models/fhir/types/Reference.rb +22 -0
- data/lib/fhir_dstu2_models/fhir/types/SampledData.rb +32 -0
- data/lib/fhir_dstu2_models/fhir/types/Signature.rb +33 -0
- data/lib/fhir_dstu2_models/fhir/types/Timing.rb +67 -0
- data/lib/fhir_dstu2_models/fhir_ext/element_definition.rb +51 -0
- data/lib/fhir_dstu2_models/fhir_ext/structure_definition.rb +365 -0
- data/lib/fhir_dstu2_models/fhir_ext/structure_definition_compare.rb +377 -0
- data/lib/fhir_dstu2_models/fhir_ext/structure_definition_finding.rb +69 -0
- data/lib/fhir_dstu2_models/fluentpath/evaluate.rb +590 -0
- data/lib/fhir_dstu2_models/fluentpath/expression.rb +30 -0
- data/lib/fhir_dstu2_models/fluentpath/parse.rb +104 -0
- data/lib/fhir_dstu2_models/tasks/tasks.rake +141 -0
- data/lib/fhir_dstu2_models/version.rb +7 -0
- metadata +2149 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"resourceType": "ValueSet",
|
|
3
|
+
"id": "observation-valueabsentreason",
|
|
4
|
+
"meta": {
|
|
5
|
+
"lastUpdated": "2015-10-24T07:41:03.495+11:00",
|
|
6
|
+
"profile": [
|
|
7
|
+
"http://hl7.org/fhir/StructureDefinition/valueset-shareable-definition"
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
"text": {
|
|
11
|
+
"status": "generated",
|
|
12
|
+
"div": "<div><h2>Observation Value Absent Reason</h2><p>This value set defines the set of codes for identifying the reason why the expected result in Observation.value[x] is missing.</p><p>This value set includes codes from the following code systems:</p><ul><li>Include all codes defined in <a href=\"valueset-data-absent-reason.html\">http://hl7.org/fhir/data-absent-reason</a></li></ul></div>"
|
|
13
|
+
},
|
|
14
|
+
"extension": [
|
|
15
|
+
{
|
|
16
|
+
"url": "http://hl7.org/fhir/StructureDefinition/valueset-oid",
|
|
17
|
+
"valueUri": "urn:oid:2.16.840.1.113883.4.642.2.221"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"url": "http://hl7.org/fhir/ValueSet/observation-valueabsentreason",
|
|
21
|
+
"version": "1.0.2",
|
|
22
|
+
"name": "Observation Value Absent Reason",
|
|
23
|
+
"status": "draft",
|
|
24
|
+
"experimental": true,
|
|
25
|
+
"publisher": "HL7 International - Orders and Observations WG",
|
|
26
|
+
"_publisher": {
|
|
27
|
+
"fhir_comments": [
|
|
28
|
+
" Eric Haas Health eData Inc - editor "
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
"contact": [
|
|
32
|
+
{
|
|
33
|
+
"telecom": [
|
|
34
|
+
{
|
|
35
|
+
"system": "other",
|
|
36
|
+
"value": "http://hl7.org/fhir"
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"date": "2015-10-24T07:41:03+11:00",
|
|
42
|
+
"description": "This value set defines the set of codes for identifying the reason why the expected result in Observation.value[x] is missing.",
|
|
43
|
+
"compose": {
|
|
44
|
+
"include": [
|
|
45
|
+
{
|
|
46
|
+
"system": "http://hl7.org/fhir/data-absent-reason"
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"resourceType": "ValueSet",
|
|
3
|
+
"id": "operation-kind",
|
|
4
|
+
"meta": {
|
|
5
|
+
"lastUpdated": "2015-10-24T07:41:03.495+11:00",
|
|
6
|
+
"profile": [
|
|
7
|
+
"http://hl7.org/fhir/StructureDefinition/valueset-shareable-definition"
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
"text": {
|
|
11
|
+
"status": "generated",
|
|
12
|
+
"div": "<div><h2>OperationKind</h2><p>Whether an operation is a normal operation or a query.</p><p>This value set has an inline code system http://hl7.org/fhir/operation-kind, which defines the following codes:</p><table class=\"codes\"><tr><td><b>Code</b></td><td><b>Display</b></td><td><b>Definition</b></td></tr><tr><td>operation<a name=\"operation\"> </a></td><td>Operation</td><td>This operation is invoked as an operation.</td></tr><tr><td>query<a name=\"query\"> </a></td><td>Query</td><td>This operation is a named query, invoked using the search mechanism.</td></tr></table></div>"
|
|
13
|
+
},
|
|
14
|
+
"extension": [
|
|
15
|
+
{
|
|
16
|
+
"url": "http://hl7.org/fhir/StructureDefinition/valueset-oid",
|
|
17
|
+
"valueUri": "urn:oid:2.16.840.1.113883.4.642.2.297"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"url": "http://hl7.org/fhir/ValueSet/operation-kind",
|
|
21
|
+
"version": "1.0.2",
|
|
22
|
+
"name": "OperationKind",
|
|
23
|
+
"status": "draft",
|
|
24
|
+
"experimental": false,
|
|
25
|
+
"publisher": "HL7 (FHIR Project)",
|
|
26
|
+
"contact": [
|
|
27
|
+
{
|
|
28
|
+
"telecom": [
|
|
29
|
+
{
|
|
30
|
+
"system": "other",
|
|
31
|
+
"value": "http://hl7.org/fhir"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"system": "email",
|
|
35
|
+
"value": "fhir@lists.hl7.org"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"date": "2015-10-24T07:41:03+11:00",
|
|
41
|
+
"description": "Whether an operation is a normal operation or a query.",
|
|
42
|
+
"codeSystem": {
|
|
43
|
+
"extension": [
|
|
44
|
+
{
|
|
45
|
+
"url": "http://hl7.org/fhir/StructureDefinition/valueset-oid",
|
|
46
|
+
"valueUri": "urn:oid:2.16.840.1.113883.4.642.1.297"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"system": "http://hl7.org/fhir/operation-kind",
|
|
50
|
+
"version": "1.0.2",
|
|
51
|
+
"caseSensitive": true,
|
|
52
|
+
"concept": [
|
|
53
|
+
{
|
|
54
|
+
"code": "operation",
|
|
55
|
+
"display": "Operation",
|
|
56
|
+
"definition": "This operation is invoked as an operation."
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"code": "query",
|
|
60
|
+
"display": "Query",
|
|
61
|
+
"definition": "This operation is a named query, invoked using the search mechanism."
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,1464 @@
|
|
|
1
|
+
{
|
|
2
|
+
"resourceType": "ValueSet",
|
|
3
|
+
"id": "operation-outcome",
|
|
4
|
+
"meta": {
|
|
5
|
+
"lastUpdated": "2015-10-24T07:41:03.495+11:00",
|
|
6
|
+
"profile": [
|
|
7
|
+
"http://hl7.org/fhir/StructureDefinition/valueset-shareable-definition"
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
"text": {
|
|
11
|
+
"status": "generated",
|
|
12
|
+
"div": "<div><h2>Operation Outcome Codes</h2><p>Operation Outcome codes used by FHIR test servers (see Implementation file translations.xml)</p><p>This value set has an inline code system http://hl7.org/fhir/operation-outcome, which defines the following codes:</p><table class=\"codes\"><tr><td><b>Code</b></td><td><b>Display</b></td><td><b>Definition</b></td></tr><tr><td>MSG_AUTH_REQUIRED<a name=\"MSG_AUTH_REQUIRED\"> </a></td><td>You must authenticate before you can use this service</td><td/></tr><tr><td>MSG_BAD_FORMAT<a name=\"MSG_BAD_FORMAT\"> </a></td><td>Bad Syntax: "%s" must be a %s'</td><td/></tr><tr><td>MSG_BAD_SYNTAX<a name=\"MSG_BAD_SYNTAX\"> </a></td><td>Bad Syntax in %s</td><td/></tr><tr><td>MSG_CANT_PARSE_CONTENT<a name=\"MSG_CANT_PARSE_CONTENT\"> </a></td><td>Unable to parse feed (entry content type = "%s")</td><td/></tr><tr><td>MSG_CANT_PARSE_ROOT<a name=\"MSG_CANT_PARSE_ROOT\"> </a></td><td>Unable to parse feed (root element name = "%s")</td><td/></tr><tr><td>MSG_CREATED<a name=\"MSG_CREATED\"> </a></td><td>New resource created</td><td/></tr><tr><td>MSG_DATE_FORMAT<a name=\"MSG_DATE_FORMAT\"> </a></td><td>The Date value %s is not in the correct format (Xml Date Format required)</td><td/></tr><tr><td>MSG_DELETED<a name=\"MSG_DELETED\"> </a></td><td>This resource has been deleted</td><td/></tr><tr><td>MSG_DELETED_DONE<a name=\"MSG_DELETED_DONE\"> </a></td><td>Resource deleted</td><td/></tr><tr><td>MSG_DELETED_ID<a name=\"MSG_DELETED_ID\"> </a></td><td>The resource "%s" has been deleted</td><td/></tr><tr><td>MSG_DUPLICATE_ID<a name=\"MSG_DUPLICATE_ID\"> </a></td><td>Duplicate Id %s for resource type %s</td><td/></tr><tr><td>MSG_ERROR_PARSING<a name=\"MSG_ERROR_PARSING\"> </a></td><td>Error parsing resource Xml (%s)</td><td/></tr><tr><td>MSG_ID_INVALID<a name=\"MSG_ID_INVALID\"> </a></td><td>Id "%s" has an invalid character "%s"</td><td/></tr><tr><td>MSG_ID_TOO_LONG<a name=\"MSG_ID_TOO_LONG\"> </a></td><td>Id "%s" too long (length limit 36)</td><td/></tr><tr><td>MSG_INVALID_ID<a name=\"MSG_INVALID_ID\"> </a></td><td>Id not accepted</td><td/></tr><tr><td>MSG_JSON_OBJECT<a name=\"MSG_JSON_OBJECT\"> </a></td><td>Json Source for a resource should start with an object</td><td/></tr><tr><td>MSG_LOCAL_FAIL<a name=\"MSG_LOCAL_FAIL\"> </a></td><td>Unable to resolve local reference to resource %s</td><td/></tr><tr><td>MSG_NO_MATCH<a name=\"MSG_NO_MATCH\"> </a></td><td>No Resource found matching the query "%s"</td><td/></tr><tr><td>MSG_NO_EXIST<a name=\"MSG_NO_EXIST\"> </a></td><td>Resource Id "%s" does not exist</td><td/></tr><tr><td>MSG_NO_MODULE<a name=\"MSG_NO_MODULE\"> </a></td><td>No module could be found to handle the request "%s"</td><td/></tr><tr><td>MSG_NO_SUMMARY<a name=\"MSG_NO_SUMMARY\"> </a></td><td>No Summary for this resource</td><td/></tr><tr><td>MSG_OP_NOT_ALLOWED<a name=\"MSG_OP_NOT_ALLOWED\"> </a></td><td>Operation %s not allowed for resource %s (due to local configuration)</td><td/></tr><tr><td>MSG_PARAM_CHAINED<a name=\"MSG_PARAM_CHAINED\"> </a></td><td>Unknown chained parameter name "%s"</td><td/></tr><tr><td>MSG_PARAM_NO_REPEAT<a name=\"MSG_PARAM_NO_REPEAT\"> </a></td><td>Parameter "%s" is not allowed to repeat</td><td/></tr><tr><td>MSG_PARAM_UNKNOWN<a name=\"MSG_PARAM_UNKNOWN\"> </a></td><td>Parameter "%s" not understood</td><td/></tr><tr><td>MSG_PARAM_INVALID<a name=\"MSG_PARAM_INVALID\"> </a></td><td>Parameter "%s" content is invalid</td><td/></tr><tr><td>MSG_PARAM_MODIFIER_INVALID<a name=\"MSG_PARAM_MODIFIER_INVALID\"> </a></td><td>Parameter "%s" modifier is invalid</td><td/></tr><tr><td>MSG_RESOURCE_EXAMPLE_PROTECTED<a name=\"MSG_RESOURCE_EXAMPLE_PROTECTED\"> </a></td><td>Resources with identity "example" cannot be deleted (for testing/training purposes)</td><td/></tr><tr><td>MSG_RESOURCE_ID_FAIL<a name=\"MSG_RESOURCE_ID_FAIL\"> </a></td><td>unable to allocate resource id</td><td/></tr><tr><td>MSG_RESOURCE_NOT_ALLOWED<a name=\"MSG_RESOURCE_NOT_ALLOWED\"> </a></td><td>Not allowed to submit a resource for this operation</td><td/></tr><tr><td>MSG_RESOURCE_REQUIRED<a name=\"MSG_RESOURCE_REQUIRED\"> </a></td><td>A resource is required</td><td/></tr><tr><td>MSG_RESOURCE_ID_MISMATCH<a name=\"MSG_RESOURCE_ID_MISMATCH\"> </a></td><td>Resource Id Mismatch</td><td/></tr><tr><td>MSG_RESOURCE_ID_MISSING<a name=\"MSG_RESOURCE_ID_MISSING\"> </a></td><td>Resource Id Missing</td><td/></tr><tr><td>MSG_RESOURCE_TYPE_MISMATCH<a name=\"MSG_RESOURCE_TYPE_MISMATCH\"> </a></td><td>Resource Type Mismatch</td><td/></tr><tr><td>MSG_SORT_UNKNOWN<a name=\"MSG_SORT_UNKNOWN\"> </a></td><td>Unknown sort parameter name "%s"</td><td/></tr><tr><td>MSG_TRANSACTION_DUPLICATE_ID<a name=\"MSG_TRANSACTION_DUPLICATE_ID\"> </a></td><td>Duplicate Identifier in transaction: %s</td><td/></tr><tr><td>MSG_TRANSACTION_MISSING_ID<a name=\"MSG_TRANSACTION_MISSING_ID\"> </a></td><td>Missing Identifier in transaction - an entry.id must be provided</td><td/></tr><tr><td>MSG_UNHANDLED_NODE_TYPE<a name=\"MSG_UNHANDLED_NODE_TYPE\"> </a></td><td>Unhandled xml node type "%s"</td><td/></tr><tr><td>MSG_UNKNOWN_CONTENT<a name=\"MSG_UNKNOWN_CONTENT\"> </a></td><td>Unknown Content (%s) at %s</td><td/></tr><tr><td>MSG_UNKNOWN_OPERATION<a name=\"MSG_UNKNOWN_OPERATION\"> </a></td><td>unknown FHIR http operation</td><td/></tr><tr><td>MSG_UNKNOWN_TYPE<a name=\"MSG_UNKNOWN_TYPE\"> </a></td><td>Resource Type "%s" not recognised</td><td/></tr><tr><td>MSG_UPDATED<a name=\"MSG_UPDATED\"> </a></td><td>existing resource updated</td><td/></tr><tr><td>MSG_VERSION_AWARE<a name=\"MSG_VERSION_AWARE\"> </a></td><td>Version aware updates are required for this resource</td><td/></tr><tr><td>MSG_VERSION_AWARE_CONFLICT<a name=\"MSG_VERSION_AWARE_CONFLICT\"> </a></td><td>Update Conflict (server current version = "%s", client version referenced = "%s")</td><td/></tr><tr><td>MSG_VERSION_AWARE_URL<a name=\"MSG_VERSION_AWARE_URL\"> </a></td><td>Version specific URL not recognised</td><td/></tr><tr><td>MSG_WRONG_NS<a name=\"MSG_WRONG_NS\"> </a></td><td>This does not appear to be a FHIR element or resource (wrong namespace "%s")</td><td/></tr><tr><td>SEARCH_MULTIPLE<a name=\"SEARCH_MULTIPLE\"> </a></td><td>Error: Multiple matches exist for %s search parameters "%s"</td><td/></tr><tr><td>UPDATE_MULTIPLE_MATCHES<a name=\"UPDATE_MULTIPLE_MATCHES\"> </a></td><td>Error: Multiple matches exist for the conditional update</td><td/></tr><tr><td>SEARCH_NONE<a name=\"SEARCH_NONE\"> </a></td><td>Error: no processable search found for %s search parameters "%s"</td><td/></tr></table><p><b>Additional Language Displays</b></p><table class=\"codes\"><tr><td><b>Code</b></td><td><b>ee</b></td><td><b>es</b></td><td><b>fr</b></td><td><b>it</b></td><td><b>nl</b></td><td><b>pl</b></td><td><b>ru</b></td><td><b>zh</b></td></tr><tr><td>MSG_AUTH_REQUIRED</td><td></td><td>Debe autenticarse antes de poder usar este servicio</td><td>Vous devez être authentifié avant de pouvoir utiliser ce service</td><td></td><td>U moet zich authenticeren voor gebruik van deze service</td><td>Wymagana autentykacja przed użyciem tego serwisu</td><td></td><td>使用此服务前需认证</td></tr><tr><td>MSG_BAD_FORMAT</td><td></td><td>Sintaxis Incorrecta: "%s" debe de ser un %s'</td><td>Erreur de Syntaxe : "%s" doit être un %s</td><td>Sintassi Errata: "%s" deve essere un %s'</td><td>Verkeerde syntax: "%s" moet een %s zijn</td><td>Błąd składni: "%s" powinno być %s'</td><td>Неверный синтакс: "%s" должен быть %s</td><td>句法错误: "%s" 必须是一个 %s'</td></tr><tr><td>MSG_BAD_SYNTAX</td><td></td><td>Sintaxis Incorrecta en %s</td><td>Erreur de Syntaxe dans %s</td><td>Sintassi errata in %s</td><td>Verkeerde syntax in %s</td><td>Błąd składni w %s</td><td>Неверный синтакс: %s</td><td>%s 中句法错误</td></tr><tr><td>MSG_CANT_PARSE_CONTENT</td><td></td><td>No se pudo parsear el feed (el tipo de contenido de la entry = "%s")</td><td>Impossible d'analyser le flux (type de contenu de l'entrée = "%s")</td><td>Impossibile effettuare il parsing del feed (tipo del contenuto della entry = "%s")</td><td>Kan feed niet verwerken (contenttype inhoud = "%s")</td><td>Błąd parsowania (typ zawartości wejściowej = "%s")</td><td></td><td>无法解析feed (条目的内容类型 = "%s")</td></tr><tr><td>MSG_CANT_PARSE_ROOT</td><td>No se pudo parsear el feed (nombre del elemento raiz = "%s")</td><td></td><td>Impossible d'analyser le flux (nom de l'élément racine = "%s")</td><td>Impossibile effettuare il parsing del feed (nome elemento root = "%s")</td><td>Kan feed niet verwerken (rootelementnaam = "%s")</td><td>Błąd parsowania (nazwa elementu root = "%s")</td><td>Не удалось разобрать данные (корневой элемент = "%s")</td><td>无法解析feed (根元素名 = "%s")</td></tr><tr><td>MSG_CREATED</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr><tr><td>MSG_DATE_FORMAT</td><td></td><td>El valor de la fecha %s no está en el formato correcto (se requiere un formato de fecha Xml)</td><td>Le format de la date %s est incorrect (format Date Xml attendu)</td><td>Il valore %s per la data non � nel formato corretto (richiesto il Formato Data Xml)</td><td>De Datum-waarde %s heeft niet de juiste structuur (Xml Date vereist)</td><td>Niepoprawny format wartości daty %s (wymagany format XML)</td><td>Значение Date %s в неверном формате (требуется Xml Date формат)</td><td>日期的值 %s 格式不正确 (要求是Xml Date格式)</td></tr><tr><td>MSG_DELETED</td><td></td><td>Este recurso ha sido borrado</td><td>La ressource a été supprimée</td><td></td><td>Deze resource is verwijderd</td><td>Ten zasób został usunięty</td><td>Данный ресурс был удалён</td><td>该资源已删除</td></tr><tr><td>MSG_DELETED_DONE</td><td></td><td>Recurso borrado</td><td>Ressource supprimée</td><td>Risorsa cancellata</td><td>Resource verwijderd</td><td>Zasób usunięto</td><td>Ресурс удалён</td><td>资源已删除</td></tr><tr><td>MSG_DELETED_ID</td><td></td><td>El recurso "%s" ha sido borrado</td><td>La ressource "%s" a été supprimée</td><td>La risorsa "%s" � stata eliminata</td><td>De resource "%s" is verwijderd</td><td>Zasób "%s" został usunięty</td><td>Ресурс "%s" был удалён</td><td>资源 "%s" 已被删除</td></tr><tr><td>MSG_DUPLICATE_ID</td><td></td><td>Id %s duplicada para el recurso de tipo %s</td><td>Id %s en double pour le type de ressource %s</td><td>Id %s duplicato per il tipo di risorsa %s</td><td>Duplicaat-id %s voor resourcetype %s</td><td>Zdublowany identyfikator %s dla zasobu typu %s</td><td>Дублирующий Id %s для типа ресурса %s</td><td>ID %s 重复(资源类型 %s)</td></tr><tr><td>MSG_ERROR_PARSING</td><td></td><td>Error parseando el recurso Xml (%s)</td><td>Erreur d'analyse de la ressource Xml (%s)</td><td>Errore nel parsing della risorsa Xml (%s)</td><td>Fout in verwerking resource Xml (%s)</td><td>Błąd w trakcie parsowania zasobu XML (%s)</td><td>Ошибка синтаксического разбора ресурса Xml (%s)</td><td>解析资源Xml时出错 (%s)</td></tr><tr><td>MSG_ID_INVALID</td><td></td><td>El Id "%s" contiene el caracter inválido "%s"</td><td>Id "%s" possède un caractère invalide "%s"</td><td>L''Id "%s" ha un carattere non valido: "%s"</td><td>Id "%s" heeft een ongeldig teken "%s"</td><td>Identyfikator "%s" zawiera niepoprawny znak "%s"</td><td>Id "%s" содержит недопустимые символы "%s"</td><td>ID "%s" 带有非法字符: "%s"</td></tr><tr><td>MSG_ID_TOO_LONG</td><td></td><td>El Id "%s" es demasiado largo (limite de longitud: 36)</td><td>Id "%s" trop long (la longueur limite est 36)</td><td>Id "%s" troppo lunga (limite di lunghezza: 36)</td><td>Id "%s" te lang (max lengte 36)</td><td>Identyfikator "%s" jest zbyt długi (limit długości 36)</td><td>Недопустимая длина Id "%s" (ограничение 36)</td><td>Id "%s" 过长 (长度限制: 36)</td></tr><tr><td>MSG_INVALID_ID</td><td></td><td>Id no aceptada</td><td>Id non accepté</td><td>Id non accettato</td><td>Id niet geaccepteerd</td><td>Identyfikator nie zaakceptowany</td><td>Id не принято</td><td>Id不被接受</td></tr><tr><td>MSG_JSON_OBJECT</td><td></td><td>La fuente Json para un recurso debería empezar con un objeto</td><td>La source Json pour une ressource doit commencer par un objet</td><td>Il sorgente Json di una risorsa dovrebbe iniziare con un oggetto</td><td>Json Source van een resource moeten beginnen met een object</td><td>Źródło json dla zasobu powinno rozpoczynać się od obiektu</td><td>Json Source для ресурса должен начинаться с объекта</td><td>资源的Json源应以一个object开始</td></tr><tr><td>MSG_LOCAL_FAIL</td><td></td><td>Imposible resolver la referencia al recurso %s</td><td>Impossible de résourdre la référence locale à la ressource %s</td><td>Impossibile risolvere il riferimento locale alla risorsa %s</td><td>De resource met lokale referentie %s is niet gevonden</td><td>Zasób wskazywany przez loklaną referencję %s nie został odnaleziony</td><td>Невозможно определить локальную ссылку на ресурс %s</td><td>无法解析对资源 %s 的本地引用</td></tr><tr><td>MSG_NO_MATCH</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr><tr><td>MSG_NO_EXIST</td><td></td><td>El recurso con Id "%s" no existe</td><td>La ressource avec l'Id "%s" n'existe pas</td><td>La risorsa con Id "%s" non esiste</td><td>Resource-id "%s" bestaat niet</td><td>Zasób o identyfikatorze "%s" nie istnieje</td><td>Ресурс Id "%s" не существует</td><td>资源Id "%s"不存在</td></tr><tr><td>MSG_NO_MODULE</td><td></td><td>No se encontró un modulo que gestione la petición "%s"</td><td>Aucun module disponible pour traiter la requête "%s"</td><td>Impossibile trovare un modulo per gestire la richiesta "%s"</td><td>Er kon geen module worden gevonden om verzoek "%s" te verwerken</td><td>Nie można odnaleźć modułu, aby obsłużyć żądanie "%s"</td><td>Модуль для обработки запроса "%s" не найден</td><td>无法找到处理请求"%s"的模块</td></tr><tr><td>MSG_NO_SUMMARY</td><td></td><td>No existe un resumen para este recurso</td><td>Aucun résumé disponible pour cette ressource</td><td>Nessun riepilogo per questa risorsa</td><td>Geen samenvatting voor deze resource</td><td>Brak podsumowania (Summary) dla tego zasobu</td><td>Отсутствует Summary для данного ресурса</td><td>该资源无summary</td></tr><tr><td>MSG_OP_NOT_ALLOWED</td><td></td><td>Operación %s no permitida para el recurso %s (debido a la configuración local)</td><td>L'opération %s n'est pas permise pour la ressource %s (à cause de la configuration locale)</td><td>Operazione %s non consentita per la risorsa %s (a causa di configurazioni locali)</td><td>Bewerking %s niet toegestaan voor resource %s (vanwege lokale configuratie)</td><td>Niedozwolona operacja %s dla zasobu %s (ze względu na lokalną konfigurację)</td><td>Операция %s недопустима для ресурса %s (по причине локальной конфигурации)</td><td>操作 %s 不允许,对于资源 %s (由于本地配置)</td></tr><tr><td>MSG_PARAM_CHAINED</td><td></td><td>Nombre de parametro encadenado desconocido: "%s"</td><td>Nom du paramètre chainé inconnu : "%s"</td><td>Nome di parametro concatenato sconosciuto: "%s"</td><td>Onbekende geschakelde parameternaam "%s"</td><td>Nieznana nazwa parametru powiązanego "%s"</td><td>Неизвестое вложенное наименование параметра "%s"</td><td>未知的链式参数名: "%s"</td></tr><tr><td>MSG_PARAM_NO_REPEAT</td><td></td><td>No se permite la repetición del parámetro "%s"</td><td>Le paramètre "%s" ne peut pas être répété</td><td>Non � consentito ripetere il parametro "%s"</td><td>Parameter "%s" mag niet herhalen</td><td>Parametr "%s" nie może zostać powtórzony</td><td>Параметр "%s" не может быть повторён</td><td>参数"%s"不可重复</td></tr><tr><td>MSG_PARAM_UNKNOWN</td><td></td><td>Parámetro "%s" no reconocido</td><td>Paramètre "%s" non reconnu</td><td>Parametro "%s" non riconosciuto</td><td>Parameter "%s" onbekend</td><td>Niezrozumiały parametr "%s"</td><td>Параметр "%s" не понят</td><td>无法理解参数"%s"</td></tr><tr><td>MSG_PARAM_INVALID</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr><tr><td>MSG_PARAM_MODIFIER_INVALID</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr><tr><td>MSG_RESOURCE_EXAMPLE_PROTECTED</td><td></td><td>Recursos con la identidad "example" no pueden ser borrados (son usados para pruebas/entrenamiento)</td><td>Les ressources ayant l'identité "example" ne peuvent pas être supprimées (utilisées pour les tests/formations)</td><td></td><td>Resources met identiteit "voorbeeld" kunnen niet worden verwijderd (ten behoeve van testen/training)</td><td>Zasoby oznaczone jako "example" nie mogą zostać usunięte (dla celów testów/szkoleń)</td><td>Ресурс с идентификатором "example" не может быть удалён (для случаев тестирования/обучения)</td><td>以"example" 为ID的资源不能被删除 (用于测试/培训)</td></tr><tr><td>MSG_RESOURCE_ID_FAIL</td><td></td><td>imposible encontrar el id del recurso</td><td>impossible d'allouer l'id de la ressource</td><td>impossibile allocare l''id della risorsa</td><td>kan geen resource-id reserveren</td><td>nie można nadać identyfikatora zasobu</td><td>невозможно выделить идентификатор ресурса</td><td>无法分配资源ID</td></tr><tr><td>MSG_RESOURCE_NOT_ALLOWED</td><td></td><td>No se permite el envío de un recurso para esta operación</td><td>Non autorisé à soumettre une ressource pour cette opération</td><td>Non � consentito sottomettere una risorsa per questa operazione</td><td>Niet toegestaan om een resource in te dienen voor deze bewerking</td><td>Nie można zgłosić zasobu dla tej operacji</td><td>Для данной операции отправка ресурса недопустима</td><td>该操作不允许提交资源</td></tr><tr><td>MSG_RESOURCE_REQUIRED</td><td></td><td>Se requiere un recurso</td><td>Une ressource est requise</td><td>E'' richiesta una risorsa</td><td>Een resource is verplicht</td><td>Zasób jest wymagany</td><td>Требуется ресурс</td><td>必须提供一个资源</td></tr><tr><td>MSG_RESOURCE_ID_MISMATCH</td><td></td><td></td><td>Problème de correspondance d'Id de la Ressource</td><td></td><td></td><td></td><td></td><td></td></tr><tr><td>MSG_RESOURCE_ID_MISSING</td><td></td><td></td><td>Id de la Ressource manquante</td><td></td><td></td><td></td><td></td><td></td></tr><tr><td>MSG_RESOURCE_TYPE_MISMATCH</td><td></td><td>Los Tipos de los recursos no coinciden</td><td>Type de ressource incorrect</td><td>Tipo Risorsa non corrispondente</td><td>Verkeerd resourcetype</td><td>Niepoprawny typ zasobu</td><td>Несоответствие типа ресурса</td><td>资源类型不匹配</td></tr><tr><td>MSG_SORT_UNKNOWN</td><td></td><td>Nombre del parámetro de ordenación "%s" desconocido</td><td>Nom du paramètre de tri inconnu "%s"</td><td>Nome del parametro di ordinamento "%s" non riconosciuto</td><td>Onbekende parameternaam "%s" voor sortering</td><td>Nieznany parametr sortowania "%s"</td><td>Неизвестное имя параметра сортировки "%s"</td><td>未知的排序参数名称"%s"</td></tr><tr><td>MSG_TRANSACTION_DUPLICATE_ID</td><td></td><td>Identificador duplicado en la transacción: %s</td><td>Identifiant en double dans la transaction : %s</td><td></td><td>Dubbele identificatie in transactie: %s</td><td>Zdublowany identyfikator w transakcji: %s</td><td>Дублирующий идентификатор в транзакции: %s</td><td>事务中存在重复Id: %s</td></tr><tr><td>MSG_TRANSACTION_MISSING_ID</td><td></td><td>Identificador de la transacción no encontrado - se debe proporcionar un entry.id</td><td>Identifiant manquant dans la transaction - un élément entry.id doit être fourni</td><td></td><td>Ontbrekende identificatie in transactie - entry.id is verplicht</td><td>Brak identyfikatora w transakcji - należy podać entry.id</td><td>Отсутствует идентификатор в транзакции - требуется entry.id</td><td>事务中缺少Id - 必须提供一个entry.id</td></tr><tr><td>MSG_UNHANDLED_NODE_TYPE</td><td></td><td>Tipo de nodo Xml no soportado "%s"</td><td>Type de noeud xml "%s" non traité</td><td>Tipo di nodo Xml non gestito "%s"</td><td>Kan xml nodetype "%s" niet verwerken</td><td>Nieobsługiwany typ węzła XML "%s"</td><td>Не обработанный xml узел "%s"</td><td>未处理的XML节点类型"%s"</td></tr><tr><td>MSG_UNKNOWN_CONTENT</td><td></td><td>Contenido desconocido (%s) en %s</td><td>Contenu inconnu (%s) à %s</td><td>Contenuto Sconosciuto (%s) at %s</td><td>Onbekende content (%s) at %s</td><td>Nieznana zawartość (%s) dla %s</td><td>Неизвестный контент (%s) в %s</td><td>未知内容 (%s) 位于 %s</td></tr><tr><td>MSG_UNKNOWN_OPERATION</td><td></td><td>Operación http FHIR desconocida</td><td>operation http FHIR inconnue</td><td>operazione http FHIR sconosciuta</td><td>onbekende FHIR http operation</td><td>nieznana operacja FHIR http</td><td>неизвестная операция FHIR http</td><td>未知的FHIR HTTP操作</td></tr><tr><td>MSG_UNKNOWN_TYPE</td><td></td><td>Tipo de Recurso "%s" no reconocido</td><td>Type de ressource "%s" non reconnu</td><td>Tipo di Risorsa "%s" non riconosciuto</td><td>Resourcetype "%s" niet herkend</td><td>Nie rozpoznany typ zasobu: "%s"</td><td>Тип ресурса "%s" не распознан</td><td>资源类型"%s"未识别</td></tr><tr><td>MSG_UPDATED</td><td></td><td>Recurso existente actualizado</td><td>ressource existante mise à jour</td><td>risorsa esistente aggiornata</td><td>bestaande resource updated</td><td>uaktualniono istniejący zasób</td><td>существующий ресурс обновлён</td><td>已有资源被更新</td></tr><tr><td>MSG_VERSION_AWARE</td><td></td><td>Este recurso requiere actualizaciones en base a versiones</td><td>Des mises à jour en relation avec la version sont requises pour cette ressource</td><td>Questa risorsa richiede aggiornamenti per versione</td><td>Versie-bewuste updates zijn vereist voor deze resource</td><td>Uaktualnienia zakładające wersjonowanie są wymagane dla tego zasobu</td><td>Для данного ресурса необходимы обновления с учётом версии</td><td>该资源的更新必须针对版本</td></tr><tr><td>MSG_VERSION_AWARE_CONFLICT</td><td></td><td>Conflicto de actualizaciones (versión actual del servidor = "%s", versión del cliente referenciada = "%s")</td><td>Conflit de mise à jour (version courante du serveur = "%s", version référencée du client = "%s")</td><td>Conflitto nell''aggiornamento (attuale = "%s", quotato = "%s")</td><td>Updateconflict (huidige serverversie = "%s", opgegeven clientversie = "%s")</td><td>Konflikt podczas uaktualnienia (obecna wersja na serwerze = "%s", wersja wskazana przez klienta = "%s")</td><td>Конфликт обновления (текущая версия сервера = "%s", указанная версия клиента = "%s")</td><td>更新冲突 (服务器当前版本 = "%s", 客户端引用的版本 = "%s")</td></tr><tr><td>MSG_VERSION_AWARE_URL</td><td></td><td>URL especifica de la versión no reconocida</td><td>URL spécifique à une version non reconnue</td><td>URL specifico alla versione non riconosciuto</td><td>Versie-specifieke URL niet herkend</td><td>Nie rozpoznany URL specyficzny dla wersji</td><td>URL для указанной версии не распознан</td><td>未识别特定版本的URL</td></tr><tr><td>MSG_WRONG_NS</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr><tr><td>SEARCH_MULTIPLE</td><td></td><td>Error: Multiples ocurrencias existen para %s parametros de búsqueda "%s"</td><td>Erreur : Plusieurs correspondances existent pour ce paramètre de recherche %s</td><td>Errore: Trovate corrispondenze multiple per %s parametri di ricerca "%s"</td><td>Fout: er is meer dan één resultaat voor %s zoekparameters "%s"</td><td>Błąd: Istnieją wielokrotne dopasowania dla %s parametrów wyszukiwania "%s"</td><td>Ошибка: множественные совпадения для %s с параметрами поиска "%s"</td><td>错误: 对于 %s 搜索的参数 "%s"存在多个匹配</td></tr><tr><td>UPDATE_MULTIPLE_MATCHES</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr><tr><td>SEARCH_NONE</td><td></td><td>Error: no se encontro una búsqueda apropiada para %s parametros de búsqueda "%s"</td><td>Erreur : aucune recherche trouvée pour les paramètres %s "%s"</td><td>Errore: non � stato trovato alcun parametro di ricerca processabile per %s parametri di ricerca "%s"</td><td>Fout: geen verwerkbare zoekactie gevonden voor %s zoekparameters "%s"</td><td>Błąd: Niewykonalne wyszukiwanie dla %s parametrów wyszukiwania "%s"</td><td>Ошибка: обрабатываемых результатов поиска для %s с параметрами поиска "%s" не найдено</td><td>错误: 对%s搜索参数"%s"未找到可处理的搜索</td></tr></table></div>"
|
|
13
|
+
},
|
|
14
|
+
"extension": [
|
|
15
|
+
{
|
|
16
|
+
"url": "http://hl7.org/fhir/StructureDefinition/valueset-oid",
|
|
17
|
+
"valueUri": "urn:oid:2.16.840.1.113883.4.642.2.225"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"url": "http://hl7.org/fhir/ValueSet/operation-outcome",
|
|
21
|
+
"version": "1.0.2",
|
|
22
|
+
"name": "Operation Outcome Codes",
|
|
23
|
+
"status": "draft",
|
|
24
|
+
"experimental": false,
|
|
25
|
+
"publisher": "HL7 (FHIR Project)",
|
|
26
|
+
"contact": [
|
|
27
|
+
{
|
|
28
|
+
"telecom": [
|
|
29
|
+
{
|
|
30
|
+
"system": "other",
|
|
31
|
+
"value": "http://hl7.org/fhir"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"system": "email",
|
|
35
|
+
"value": "fhir@lists.hl7.org"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"date": "2015-10-24T07:41:03+11:00",
|
|
41
|
+
"description": "Operation Outcome codes used by FHIR test servers (see Implementation file translations.xml)",
|
|
42
|
+
"codeSystem": {
|
|
43
|
+
"extension": [
|
|
44
|
+
{
|
|
45
|
+
"url": "http://hl7.org/fhir/StructureDefinition/valueset-oid",
|
|
46
|
+
"valueUri": "urn:oid:2.16.840.1.113883.4.642.1.225"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"system": "http://hl7.org/fhir/operation-outcome",
|
|
50
|
+
"caseSensitive": true,
|
|
51
|
+
"concept": [
|
|
52
|
+
{
|
|
53
|
+
"code": "MSG_AUTH_REQUIRED",
|
|
54
|
+
"display": "You must authenticate before you can use this service",
|
|
55
|
+
"designation": [
|
|
56
|
+
{
|
|
57
|
+
"language": "zh",
|
|
58
|
+
"value": "使用此服务前需认证"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"language": "pl",
|
|
62
|
+
"value": "Wymagana autentykacja przed użyciem tego serwisu"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"language": "fr",
|
|
66
|
+
"value": "Vous devez être authentifié avant de pouvoir utiliser ce service"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"language": "es",
|
|
70
|
+
"value": "Debe autenticarse antes de poder usar este servicio"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"language": "nl",
|
|
74
|
+
"value": "U moet zich authenticeren voor gebruik van deze service"
|
|
75
|
+
}
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"code": "MSG_BAD_FORMAT",
|
|
80
|
+
"display": "Bad Syntax: \"%s\" must be a %s'",
|
|
81
|
+
"designation": [
|
|
82
|
+
{
|
|
83
|
+
"language": "zh",
|
|
84
|
+
"value": "句法错误: \"%s\" 必须是一个 %s'"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"language": "it",
|
|
88
|
+
"value": "Sintassi Errata: \"%s\" deve essere un %s'"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"language": "pl",
|
|
92
|
+
"value": "Błąd składni: \"%s\" powinno być %s'"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"language": "fr",
|
|
96
|
+
"value": "Erreur de Syntaxe : \"%s\" doit être un %s"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"language": "ru",
|
|
100
|
+
"value": "Неверный синтакс: \"%s\" должен быть %s"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"language": "es",
|
|
104
|
+
"value": "Sintaxis Incorrecta: \"%s\" debe de ser un %s'"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"language": "nl",
|
|
108
|
+
"value": "Verkeerde syntax: \"%s\" moet een %s zijn"
|
|
109
|
+
}
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"code": "MSG_BAD_SYNTAX",
|
|
114
|
+
"display": "Bad Syntax in %s",
|
|
115
|
+
"designation": [
|
|
116
|
+
{
|
|
117
|
+
"language": "zh",
|
|
118
|
+
"value": "%s 中句法错误"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"language": "it",
|
|
122
|
+
"value": "Sintassi errata in %s"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"language": "pl",
|
|
126
|
+
"value": "Błąd składni w %s"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"language": "fr",
|
|
130
|
+
"value": "Erreur de Syntaxe dans %s"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"language": "ru",
|
|
134
|
+
"value": "Неверный синтакс: %s"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"language": "es",
|
|
138
|
+
"value": "Sintaxis Incorrecta en %s"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"language": "nl",
|
|
142
|
+
"value": "Verkeerde syntax in %s"
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"code": "MSG_CANT_PARSE_CONTENT",
|
|
148
|
+
"display": "Unable to parse feed (entry content type = \"%s\")",
|
|
149
|
+
"designation": [
|
|
150
|
+
{
|
|
151
|
+
"language": "zh",
|
|
152
|
+
"value": "无法解析feed (条目的内容类型 = \"%s\")"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"language": "it",
|
|
156
|
+
"value": "Impossibile effettuare il parsing del feed (tipo del contenuto della entry = \"%s\")"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"language": "pl",
|
|
160
|
+
"value": "Błąd parsowania (typ zawartości wejściowej = \"%s\")"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"language": "fr",
|
|
164
|
+
"value": "Impossible d'analyser le flux (type de contenu de l'entrée = \"%s\")"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"language": "es",
|
|
168
|
+
"value": "No se pudo parsear el feed (el tipo de contenido de la entry = \"%s\")"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"language": "nl",
|
|
172
|
+
"value": "Kan feed niet verwerken (contenttype inhoud = \"%s\")"
|
|
173
|
+
}
|
|
174
|
+
]
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"code": "MSG_CANT_PARSE_ROOT",
|
|
178
|
+
"display": "Unable to parse feed (root element name = \"%s\")",
|
|
179
|
+
"designation": [
|
|
180
|
+
{
|
|
181
|
+
"language": "zh",
|
|
182
|
+
"value": "无法解析feed (根元素名 = \"%s\")"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"language": "ee",
|
|
186
|
+
"value": "No se pudo parsear el feed (nombre del elemento raiz = \"%s\")"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"language": "it",
|
|
190
|
+
"value": "Impossibile effettuare il parsing del feed (nome elemento root = \"%s\")"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"language": "pl",
|
|
194
|
+
"value": "Błąd parsowania (nazwa elementu root = \"%s\")"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"language": "fr",
|
|
198
|
+
"value": "Impossible d'analyser le flux (nom de l'élément racine = \"%s\")"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"language": "ru",
|
|
202
|
+
"value": "Не удалось разобрать данные (корневой элемент = \"%s\")"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"language": "nl",
|
|
206
|
+
"value": "Kan feed niet verwerken (rootelementnaam = \"%s\")"
|
|
207
|
+
}
|
|
208
|
+
]
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"code": "MSG_CREATED",
|
|
212
|
+
"display": "New resource created"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"code": "MSG_DATE_FORMAT",
|
|
216
|
+
"display": "The Date value %s is not in the correct format (Xml Date Format required)",
|
|
217
|
+
"designation": [
|
|
218
|
+
{
|
|
219
|
+
"language": "zh",
|
|
220
|
+
"value": "日期的值 %s 格式不正确 (要求是Xml Date格式)"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"language": "it",
|
|
224
|
+
"value": "Il valore %s per la data non � nel formato corretto (richiesto il Formato Data Xml)"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"language": "pl",
|
|
228
|
+
"value": "Niepoprawny format wartości daty %s (wymagany format XML)"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"language": "fr",
|
|
232
|
+
"value": "Le format de la date %s est incorrect (format Date Xml attendu)"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"language": "ru",
|
|
236
|
+
"value": "Значение Date %s в неверном формате (требуется Xml Date формат)"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"language": "es",
|
|
240
|
+
"value": "El valor de la fecha %s no está en el formato correcto (se requiere un formato de fecha Xml)"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"language": "nl",
|
|
244
|
+
"value": "De Datum-waarde %s heeft niet de juiste structuur (Xml Date vereist)"
|
|
245
|
+
}
|
|
246
|
+
]
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"code": "MSG_DELETED",
|
|
250
|
+
"display": "This resource has been deleted",
|
|
251
|
+
"designation": [
|
|
252
|
+
{
|
|
253
|
+
"language": "zh",
|
|
254
|
+
"value": "该资源已删除"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"language": "pl",
|
|
258
|
+
"value": "Ten zasób został usunięty"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"language": "fr",
|
|
262
|
+
"value": "La ressource a été supprimée"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"language": "ru",
|
|
266
|
+
"value": "Данный ресурс был удалён"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"language": "es",
|
|
270
|
+
"value": "Este recurso ha sido borrado"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"language": "nl",
|
|
274
|
+
"value": "Deze resource is verwijderd"
|
|
275
|
+
}
|
|
276
|
+
]
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"code": "MSG_DELETED_DONE",
|
|
280
|
+
"display": "Resource deleted",
|
|
281
|
+
"designation": [
|
|
282
|
+
{
|
|
283
|
+
"language": "zh",
|
|
284
|
+
"value": "资源已删除"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"language": "it",
|
|
288
|
+
"value": "Risorsa cancellata"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"language": "pl",
|
|
292
|
+
"value": "Zasób usunięto"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"language": "fr",
|
|
296
|
+
"value": "Ressource supprimée"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"language": "ru",
|
|
300
|
+
"value": "Ресурс удалён"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"language": "es",
|
|
304
|
+
"value": "Recurso borrado"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"language": "nl",
|
|
308
|
+
"value": "Resource verwijderd"
|
|
309
|
+
}
|
|
310
|
+
]
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"code": "MSG_DELETED_ID",
|
|
314
|
+
"display": "The resource \"%s\" has been deleted",
|
|
315
|
+
"designation": [
|
|
316
|
+
{
|
|
317
|
+
"language": "zh",
|
|
318
|
+
"value": "资源 \"%s\" 已被删除"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"language": "it",
|
|
322
|
+
"value": "La risorsa \"%s\" � stata eliminata"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"language": "pl",
|
|
326
|
+
"value": "Zasób \"%s\" został usunięty"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"language": "fr",
|
|
330
|
+
"value": "La ressource \"%s\" a été supprimée"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"language": "ru",
|
|
334
|
+
"value": "Ресурс \"%s\" был удалён"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"language": "es",
|
|
338
|
+
"value": "El recurso \"%s\" ha sido borrado"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"language": "nl",
|
|
342
|
+
"value": "De resource \"%s\" is verwijderd"
|
|
343
|
+
}
|
|
344
|
+
]
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"code": "MSG_DUPLICATE_ID",
|
|
348
|
+
"display": "Duplicate Id %s for resource type %s",
|
|
349
|
+
"designation": [
|
|
350
|
+
{
|
|
351
|
+
"language": "zh",
|
|
352
|
+
"value": "ID %s 重复(资源类型 %s)"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"language": "it",
|
|
356
|
+
"value": "Id %s duplicato per il tipo di risorsa %s"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"language": "pl",
|
|
360
|
+
"value": "Zdublowany identyfikator %s dla zasobu typu %s"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"language": "fr",
|
|
364
|
+
"value": "Id %s en double pour le type de ressource %s"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"language": "ru",
|
|
368
|
+
"value": "Дублирующий Id %s для типа ресурса %s"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"language": "es",
|
|
372
|
+
"value": "Id %s duplicada para el recurso de tipo %s"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"language": "nl",
|
|
376
|
+
"value": "Duplicaat-id %s voor resourcetype %s"
|
|
377
|
+
}
|
|
378
|
+
]
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"code": "MSG_ERROR_PARSING",
|
|
382
|
+
"display": "Error parsing resource Xml (%s)",
|
|
383
|
+
"designation": [
|
|
384
|
+
{
|
|
385
|
+
"language": "zh",
|
|
386
|
+
"value": "解析资源Xml时出错 (%s)"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"language": "it",
|
|
390
|
+
"value": "Errore nel parsing della risorsa Xml (%s)"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"language": "pl",
|
|
394
|
+
"value": "Błąd w trakcie parsowania zasobu XML (%s)"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"language": "fr",
|
|
398
|
+
"value": "Erreur d'analyse de la ressource Xml (%s)"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"language": "ru",
|
|
402
|
+
"value": "Ошибка синтаксического разбора ресурса Xml (%s)"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"language": "es",
|
|
406
|
+
"value": "Error parseando el recurso Xml (%s)"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"language": "nl",
|
|
410
|
+
"value": "Fout in verwerking resource Xml (%s)"
|
|
411
|
+
}
|
|
412
|
+
]
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"code": "MSG_ID_INVALID",
|
|
416
|
+
"display": "Id \"%s\" has an invalid character \"%s\"",
|
|
417
|
+
"designation": [
|
|
418
|
+
{
|
|
419
|
+
"language": "zh",
|
|
420
|
+
"value": "ID \"%s\" 带有非法字符: \"%s\""
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"language": "it",
|
|
424
|
+
"value": "L''Id \"%s\" ha un carattere non valido: \"%s\""
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"language": "pl",
|
|
428
|
+
"value": "Identyfikator \"%s\" zawiera niepoprawny znak \"%s\""
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"language": "fr",
|
|
432
|
+
"value": "Id \"%s\" possède un caractère invalide \"%s\""
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"language": "ru",
|
|
436
|
+
"value": "Id \"%s\" содержит недопустимые символы \"%s\""
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"language": "es",
|
|
440
|
+
"value": "El Id \"%s\" contiene el caracter inválido \"%s\""
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"language": "nl",
|
|
444
|
+
"value": "Id \"%s\" heeft een ongeldig teken \"%s\""
|
|
445
|
+
}
|
|
446
|
+
]
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"code": "MSG_ID_TOO_LONG",
|
|
450
|
+
"display": "Id \"%s\" too long (length limit 36)",
|
|
451
|
+
"designation": [
|
|
452
|
+
{
|
|
453
|
+
"language": "zh",
|
|
454
|
+
"value": "Id \"%s\" 过长 (长度限制: 36)"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"language": "it",
|
|
458
|
+
"value": "Id \"%s\" troppo lunga (limite di lunghezza: 36)"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"language": "pl",
|
|
462
|
+
"value": "Identyfikator \"%s\" jest zbyt długi (limit długości 36)"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"language": "fr",
|
|
466
|
+
"value": "Id \"%s\" trop long (la longueur limite est 36)"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"language": "ru",
|
|
470
|
+
"value": "Недопустимая длина Id \"%s\" (ограничение 36)"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"language": "es",
|
|
474
|
+
"value": "El Id \"%s\" es demasiado largo (limite de longitud: 36)"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"language": "nl",
|
|
478
|
+
"value": "Id \"%s\" te lang (max lengte 36)"
|
|
479
|
+
}
|
|
480
|
+
]
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"code": "MSG_INVALID_ID",
|
|
484
|
+
"display": "Id not accepted",
|
|
485
|
+
"designation": [
|
|
486
|
+
{
|
|
487
|
+
"language": "zh",
|
|
488
|
+
"value": "Id不被接受"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"language": "it",
|
|
492
|
+
"value": "Id non accettato"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"language": "pl",
|
|
496
|
+
"value": "Identyfikator nie zaakceptowany"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"language": "fr",
|
|
500
|
+
"value": "Id non accepté"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"language": "ru",
|
|
504
|
+
"value": "Id не принято"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"language": "es",
|
|
508
|
+
"value": "Id no aceptada"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"language": "nl",
|
|
512
|
+
"value": "Id niet geaccepteerd"
|
|
513
|
+
}
|
|
514
|
+
]
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"code": "MSG_JSON_OBJECT",
|
|
518
|
+
"display": "Json Source for a resource should start with an object",
|
|
519
|
+
"designation": [
|
|
520
|
+
{
|
|
521
|
+
"language": "zh",
|
|
522
|
+
"value": "资源的Json源应以一个object开始"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"language": "it",
|
|
526
|
+
"value": "Il sorgente Json di una risorsa dovrebbe iniziare con un oggetto"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"language": "pl",
|
|
530
|
+
"value": "Źródło json dla zasobu powinno rozpoczynać się od obiektu"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"language": "fr",
|
|
534
|
+
"value": "La source Json pour une ressource doit commencer par un objet"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"language": "ru",
|
|
538
|
+
"value": "Json Source для ресурса должен начинаться с объекта"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"language": "es",
|
|
542
|
+
"value": "La fuente Json para un recurso debería empezar con un objeto"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"language": "nl",
|
|
546
|
+
"value": "Json Source van een resource moeten beginnen met een object"
|
|
547
|
+
}
|
|
548
|
+
]
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"code": "MSG_LOCAL_FAIL",
|
|
552
|
+
"display": "Unable to resolve local reference to resource %s",
|
|
553
|
+
"designation": [
|
|
554
|
+
{
|
|
555
|
+
"language": "zh",
|
|
556
|
+
"value": "无法解析对资源 %s 的本地引用"
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"language": "it",
|
|
560
|
+
"value": "Impossibile risolvere il riferimento locale alla risorsa %s"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"language": "pl",
|
|
564
|
+
"value": "Zasób wskazywany przez loklaną referencję %s nie został odnaleziony"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"language": "fr",
|
|
568
|
+
"value": "Impossible de résourdre la référence locale à la ressource %s"
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"language": "ru",
|
|
572
|
+
"value": "Невозможно определить локальную ссылку на ресурс %s"
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"language": "es",
|
|
576
|
+
"value": "Imposible resolver la referencia al recurso %s"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"language": "nl",
|
|
580
|
+
"value": "De resource met lokale referentie %s is niet gevonden"
|
|
581
|
+
}
|
|
582
|
+
]
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"code": "MSG_NO_MATCH",
|
|
586
|
+
"display": "No Resource found matching the query \"%s\""
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"code": "MSG_NO_EXIST",
|
|
590
|
+
"display": "Resource Id \"%s\" does not exist",
|
|
591
|
+
"designation": [
|
|
592
|
+
{
|
|
593
|
+
"language": "zh",
|
|
594
|
+
"value": "资源Id \"%s\"不存在"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"language": "it",
|
|
598
|
+
"value": "La risorsa con Id \"%s\" non esiste"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"language": "pl",
|
|
602
|
+
"value": "Zasób o identyfikatorze \"%s\" nie istnieje"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"language": "fr",
|
|
606
|
+
"value": "La ressource avec l'Id \"%s\" n'existe pas"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"language": "ru",
|
|
610
|
+
"value": "Ресурс Id \"%s\" не существует"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"language": "es",
|
|
614
|
+
"value": "El recurso con Id \"%s\" no existe"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"language": "nl",
|
|
618
|
+
"value": "Resource-id \"%s\" bestaat niet"
|
|
619
|
+
}
|
|
620
|
+
]
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"code": "MSG_NO_MODULE",
|
|
624
|
+
"display": "No module could be found to handle the request \"%s\"",
|
|
625
|
+
"designation": [
|
|
626
|
+
{
|
|
627
|
+
"language": "zh",
|
|
628
|
+
"value": "无法找到处理请求\"%s\"的模块"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"language": "it",
|
|
632
|
+
"value": "Impossibile trovare un modulo per gestire la richiesta \"%s\""
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"language": "pl",
|
|
636
|
+
"value": "Nie można odnaleźć modułu, aby obsłużyć żądanie \"%s\""
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"language": "fr",
|
|
640
|
+
"value": "Aucun module disponible pour traiter la requête \"%s\""
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"language": "ru",
|
|
644
|
+
"value": "Модуль для обработки запроса \"%s\" не найден"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"language": "es",
|
|
648
|
+
"value": "No se encontró un modulo que gestione la petición \"%s\""
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"language": "nl",
|
|
652
|
+
"value": "Er kon geen module worden gevonden om verzoek \"%s\" te verwerken"
|
|
653
|
+
}
|
|
654
|
+
]
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"code": "MSG_NO_SUMMARY",
|
|
658
|
+
"display": "No Summary for this resource",
|
|
659
|
+
"designation": [
|
|
660
|
+
{
|
|
661
|
+
"language": "zh",
|
|
662
|
+
"value": "该资源无summary"
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"language": "it",
|
|
666
|
+
"value": "Nessun riepilogo per questa risorsa"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"language": "pl",
|
|
670
|
+
"value": "Brak podsumowania (Summary) dla tego zasobu"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"language": "fr",
|
|
674
|
+
"value": "Aucun résumé disponible pour cette ressource"
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"language": "ru",
|
|
678
|
+
"value": "Отсутствует Summary для данного ресурса"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"language": "es",
|
|
682
|
+
"value": "No existe un resumen para este recurso"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"language": "nl",
|
|
686
|
+
"value": "Geen samenvatting voor deze resource"
|
|
687
|
+
}
|
|
688
|
+
]
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"code": "MSG_OP_NOT_ALLOWED",
|
|
692
|
+
"display": "Operation %s not allowed for resource %s (due to local configuration)",
|
|
693
|
+
"designation": [
|
|
694
|
+
{
|
|
695
|
+
"language": "zh",
|
|
696
|
+
"value": "操作 %s 不允许,对于资源 %s (由于本地配置)"
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"language": "it",
|
|
700
|
+
"value": "Operazione %s non consentita per la risorsa %s (a causa di configurazioni locali)"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"language": "pl",
|
|
704
|
+
"value": "Niedozwolona operacja %s dla zasobu %s (ze względu na lokalną konfigurację)"
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"language": "fr",
|
|
708
|
+
"value": "L'opération %s n'est pas permise pour la ressource %s (à cause de la configuration locale)"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"language": "ru",
|
|
712
|
+
"value": "Операция %s недопустима для ресурса %s (по причине локальной конфигурации)"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"language": "es",
|
|
716
|
+
"value": "Operación %s no permitida para el recurso %s (debido a la configuración local)"
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"language": "nl",
|
|
720
|
+
"value": "Bewerking %s niet toegestaan voor resource %s (vanwege lokale configuratie)"
|
|
721
|
+
}
|
|
722
|
+
]
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"code": "MSG_PARAM_CHAINED",
|
|
726
|
+
"display": "Unknown chained parameter name \"%s\"",
|
|
727
|
+
"designation": [
|
|
728
|
+
{
|
|
729
|
+
"language": "zh",
|
|
730
|
+
"value": "未知的链式参数名: \"%s\""
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"language": "it",
|
|
734
|
+
"value": "Nome di parametro concatenato sconosciuto: \"%s\""
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"language": "pl",
|
|
738
|
+
"value": "Nieznana nazwa parametru powiązanego \"%s\""
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"language": "fr",
|
|
742
|
+
"value": "Nom du paramètre chainé inconnu : \"%s\""
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"language": "ru",
|
|
746
|
+
"value": "Неизвестое вложенное наименование параметра \"%s\""
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"language": "es",
|
|
750
|
+
"value": "Nombre de parametro encadenado desconocido: \"%s\""
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"language": "nl",
|
|
754
|
+
"value": "Onbekende geschakelde parameternaam \"%s\""
|
|
755
|
+
}
|
|
756
|
+
]
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"code": "MSG_PARAM_NO_REPEAT",
|
|
760
|
+
"display": "Parameter \"%s\" is not allowed to repeat",
|
|
761
|
+
"designation": [
|
|
762
|
+
{
|
|
763
|
+
"language": "zh",
|
|
764
|
+
"value": "参数\"%s\"不可重复"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"language": "it",
|
|
768
|
+
"value": "Non � consentito ripetere il parametro \"%s\""
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"language": "pl",
|
|
772
|
+
"value": "Parametr \"%s\" nie może zostać powtórzony"
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
"language": "fr",
|
|
776
|
+
"value": "Le paramètre \"%s\" ne peut pas être répété"
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
"language": "ru",
|
|
780
|
+
"value": "Параметр \"%s\" не может быть повторён"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"language": "es",
|
|
784
|
+
"value": "No se permite la repetición del parámetro \"%s\""
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
"language": "nl",
|
|
788
|
+
"value": "Parameter \"%s\" mag niet herhalen"
|
|
789
|
+
}
|
|
790
|
+
]
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"code": "MSG_PARAM_UNKNOWN",
|
|
794
|
+
"display": "Parameter \"%s\" not understood",
|
|
795
|
+
"designation": [
|
|
796
|
+
{
|
|
797
|
+
"language": "zh",
|
|
798
|
+
"value": "无法理解参数\"%s\""
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"language": "it",
|
|
802
|
+
"value": "Parametro \"%s\" non riconosciuto"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"language": "pl",
|
|
806
|
+
"value": "Niezrozumiały parametr \"%s\""
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"language": "fr",
|
|
810
|
+
"value": "Paramètre \"%s\" non reconnu"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"language": "ru",
|
|
814
|
+
"value": "Параметр \"%s\" не понят"
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"language": "es",
|
|
818
|
+
"value": "Parámetro \"%s\" no reconocido"
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"language": "nl",
|
|
822
|
+
"value": "Parameter \"%s\" onbekend"
|
|
823
|
+
}
|
|
824
|
+
]
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"code": "MSG_PARAM_INVALID",
|
|
828
|
+
"display": "Parameter \"%s\" content is invalid"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"code": "MSG_PARAM_MODIFIER_INVALID",
|
|
832
|
+
"display": "Parameter \"%s\" modifier is invalid"
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"code": "MSG_RESOURCE_EXAMPLE_PROTECTED",
|
|
836
|
+
"display": "Resources with identity \"example\" cannot be deleted (for testing/training purposes)",
|
|
837
|
+
"designation": [
|
|
838
|
+
{
|
|
839
|
+
"language": "zh",
|
|
840
|
+
"value": "以\"example\" 为ID的资源不能被删除 (用于测试/培训)"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"language": "pl",
|
|
844
|
+
"value": "Zasoby oznaczone jako \"example\" nie mogą zostać usunięte (dla celów testów/szkoleń)"
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"language": "fr",
|
|
848
|
+
"value": "Les ressources ayant l'identité \"example\" ne peuvent pas être supprimées (utilisées pour les tests/formations)"
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"language": "ru",
|
|
852
|
+
"value": "Ресурс с идентификатором \"example\" не может быть удалён (для случаев тестирования/обучения)"
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"language": "es",
|
|
856
|
+
"value": "Recursos con la identidad \"example\" no pueden ser borrados (son usados para pruebas/entrenamiento)"
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"language": "nl",
|
|
860
|
+
"value": "Resources met identiteit \"voorbeeld\" kunnen niet worden verwijderd (ten behoeve van testen/training)"
|
|
861
|
+
}
|
|
862
|
+
]
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"code": "MSG_RESOURCE_ID_FAIL",
|
|
866
|
+
"display": "unable to allocate resource id",
|
|
867
|
+
"designation": [
|
|
868
|
+
{
|
|
869
|
+
"language": "zh",
|
|
870
|
+
"value": "无法分配资源ID"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"language": "it",
|
|
874
|
+
"value": "impossibile allocare l''id della risorsa"
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"language": "pl",
|
|
878
|
+
"value": "nie można nadać identyfikatora zasobu"
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"language": "fr",
|
|
882
|
+
"value": "impossible d'allouer l'id de la ressource"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"language": "ru",
|
|
886
|
+
"value": "невозможно выделить идентификатор ресурса"
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"language": "es",
|
|
890
|
+
"value": "imposible encontrar el id del recurso"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"language": "nl",
|
|
894
|
+
"value": "kan geen resource-id reserveren"
|
|
895
|
+
}
|
|
896
|
+
]
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"code": "MSG_RESOURCE_NOT_ALLOWED",
|
|
900
|
+
"display": "Not allowed to submit a resource for this operation",
|
|
901
|
+
"designation": [
|
|
902
|
+
{
|
|
903
|
+
"language": "zh",
|
|
904
|
+
"value": "该操作不允许提交资源"
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
"language": "it",
|
|
908
|
+
"value": "Non � consentito sottomettere una risorsa per questa operazione"
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"language": "pl",
|
|
912
|
+
"value": "Nie można zgłosić zasobu dla tej operacji"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"language": "fr",
|
|
916
|
+
"value": "Non autorisé à soumettre une ressource pour cette opération"
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
"language": "ru",
|
|
920
|
+
"value": "Для данной операции отправка ресурса недопустима"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"language": "es",
|
|
924
|
+
"value": "No se permite el envío de un recurso para esta operación"
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
"language": "nl",
|
|
928
|
+
"value": "Niet toegestaan om een resource in te dienen voor deze bewerking"
|
|
929
|
+
}
|
|
930
|
+
]
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"code": "MSG_RESOURCE_REQUIRED",
|
|
934
|
+
"display": "A resource is required",
|
|
935
|
+
"designation": [
|
|
936
|
+
{
|
|
937
|
+
"language": "zh",
|
|
938
|
+
"value": "必须提供一个资源"
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"language": "it",
|
|
942
|
+
"value": "E'' richiesta una risorsa"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"language": "pl",
|
|
946
|
+
"value": "Zasób jest wymagany"
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"language": "fr",
|
|
950
|
+
"value": "Une ressource est requise"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"language": "ru",
|
|
954
|
+
"value": "Требуется ресурс"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"language": "es",
|
|
958
|
+
"value": "Se requiere un recurso"
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"language": "nl",
|
|
962
|
+
"value": "Een resource is verplicht"
|
|
963
|
+
}
|
|
964
|
+
]
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
"code": "MSG_RESOURCE_ID_MISMATCH",
|
|
968
|
+
"display": "Resource Id Mismatch",
|
|
969
|
+
"designation": [
|
|
970
|
+
{
|
|
971
|
+
"language": "fr",
|
|
972
|
+
"value": "Problème de correspondance d'Id de la Ressource"
|
|
973
|
+
}
|
|
974
|
+
]
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"code": "MSG_RESOURCE_ID_MISSING",
|
|
978
|
+
"display": "Resource Id Missing",
|
|
979
|
+
"designation": [
|
|
980
|
+
{
|
|
981
|
+
"language": "fr",
|
|
982
|
+
"value": "Id de la Ressource manquante"
|
|
983
|
+
}
|
|
984
|
+
]
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
"code": "MSG_RESOURCE_TYPE_MISMATCH",
|
|
988
|
+
"display": "Resource Type Mismatch",
|
|
989
|
+
"designation": [
|
|
990
|
+
{
|
|
991
|
+
"language": "zh",
|
|
992
|
+
"value": "资源类型不匹配"
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"language": "it",
|
|
996
|
+
"value": "Tipo Risorsa non corrispondente"
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"language": "pl",
|
|
1000
|
+
"value": "Niepoprawny typ zasobu"
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"language": "fr",
|
|
1004
|
+
"value": "Type de ressource incorrect"
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"language": "ru",
|
|
1008
|
+
"value": "Несоответствие типа ресурса"
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"language": "es",
|
|
1012
|
+
"value": "Los Tipos de los recursos no coinciden"
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
"language": "nl",
|
|
1016
|
+
"value": "Verkeerd resourcetype"
|
|
1017
|
+
}
|
|
1018
|
+
]
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"code": "MSG_SORT_UNKNOWN",
|
|
1022
|
+
"display": "Unknown sort parameter name \"%s\"",
|
|
1023
|
+
"designation": [
|
|
1024
|
+
{
|
|
1025
|
+
"language": "zh",
|
|
1026
|
+
"value": "未知的排序参数名称\"%s\""
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
"language": "it",
|
|
1030
|
+
"value": "Nome del parametro di ordinamento \"%s\" non riconosciuto"
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"language": "pl",
|
|
1034
|
+
"value": "Nieznany parametr sortowania \"%s\""
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"language": "fr",
|
|
1038
|
+
"value": "Nom du paramètre de tri inconnu \"%s\""
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
"language": "ru",
|
|
1042
|
+
"value": "Неизвестное имя параметра сортировки \"%s\""
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
"language": "es",
|
|
1046
|
+
"value": "Nombre del parámetro de ordenación \"%s\" desconocido"
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"language": "nl",
|
|
1050
|
+
"value": "Onbekende parameternaam \"%s\" voor sortering"
|
|
1051
|
+
}
|
|
1052
|
+
]
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
"code": "MSG_TRANSACTION_DUPLICATE_ID",
|
|
1056
|
+
"display": "Duplicate Identifier in transaction: %s",
|
|
1057
|
+
"designation": [
|
|
1058
|
+
{
|
|
1059
|
+
"language": "zh",
|
|
1060
|
+
"value": "事务中存在重复Id: %s"
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"language": "pl",
|
|
1064
|
+
"value": "Zdublowany identyfikator w transakcji: %s"
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"language": "fr",
|
|
1068
|
+
"value": "Identifiant en double dans la transaction : %s"
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"language": "ru",
|
|
1072
|
+
"value": "Дублирующий идентификатор в транзакции: %s"
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
"language": "es",
|
|
1076
|
+
"value": "Identificador duplicado en la transacción: %s"
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
"language": "nl",
|
|
1080
|
+
"value": "Dubbele identificatie in transactie: %s"
|
|
1081
|
+
}
|
|
1082
|
+
]
|
|
1083
|
+
},
|
|
1084
|
+
{
|
|
1085
|
+
"code": "MSG_TRANSACTION_MISSING_ID",
|
|
1086
|
+
"display": "Missing Identifier in transaction - an entry.id must be provided",
|
|
1087
|
+
"designation": [
|
|
1088
|
+
{
|
|
1089
|
+
"language": "zh",
|
|
1090
|
+
"value": "事务中缺少Id - 必须提供一个entry.id"
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
"language": "pl",
|
|
1094
|
+
"value": "Brak identyfikatora w transakcji - należy podać entry.id"
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"language": "fr",
|
|
1098
|
+
"value": "Identifiant manquant dans la transaction - un élément entry.id doit être fourni"
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"language": "ru",
|
|
1102
|
+
"value": "Отсутствует идентификатор в транзакции - требуется entry.id"
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
"language": "es",
|
|
1106
|
+
"value": "Identificador de la transacción no encontrado - se debe proporcionar un entry.id"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"language": "nl",
|
|
1110
|
+
"value": "Ontbrekende identificatie in transactie - entry.id is verplicht"
|
|
1111
|
+
}
|
|
1112
|
+
]
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
"code": "MSG_UNHANDLED_NODE_TYPE",
|
|
1116
|
+
"display": "Unhandled xml node type \"%s\"",
|
|
1117
|
+
"designation": [
|
|
1118
|
+
{
|
|
1119
|
+
"language": "zh",
|
|
1120
|
+
"value": "未处理的XML节点类型\"%s\""
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"language": "it",
|
|
1124
|
+
"value": "Tipo di nodo Xml non gestito \"%s\""
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"language": "pl",
|
|
1128
|
+
"value": "Nieobsługiwany typ węzła XML \"%s\""
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"language": "fr",
|
|
1132
|
+
"value": "Type de noeud xml \"%s\" non traité"
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
"language": "ru",
|
|
1136
|
+
"value": "Не обработанный xml узел \"%s\""
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"language": "es",
|
|
1140
|
+
"value": "Tipo de nodo Xml no soportado \"%s\""
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"language": "nl",
|
|
1144
|
+
"value": "Kan xml nodetype \"%s\" niet verwerken"
|
|
1145
|
+
}
|
|
1146
|
+
]
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
"code": "MSG_UNKNOWN_CONTENT",
|
|
1150
|
+
"display": "Unknown Content (%s) at %s",
|
|
1151
|
+
"designation": [
|
|
1152
|
+
{
|
|
1153
|
+
"language": "zh",
|
|
1154
|
+
"value": "未知内容 (%s) 位于 %s"
|
|
1155
|
+
},
|
|
1156
|
+
{
|
|
1157
|
+
"language": "it",
|
|
1158
|
+
"value": "Contenuto Sconosciuto (%s) at %s"
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
"language": "pl",
|
|
1162
|
+
"value": "Nieznana zawartość (%s) dla %s"
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"language": "fr",
|
|
1166
|
+
"value": "Contenu inconnu (%s) à %s"
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
"language": "ru",
|
|
1170
|
+
"value": "Неизвестный контент (%s) в %s"
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"language": "es",
|
|
1174
|
+
"value": "Contenido desconocido (%s) en %s"
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
"language": "nl",
|
|
1178
|
+
"value": "Onbekende content (%s) at %s"
|
|
1179
|
+
}
|
|
1180
|
+
]
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
"code": "MSG_UNKNOWN_OPERATION",
|
|
1184
|
+
"display": "unknown FHIR http operation",
|
|
1185
|
+
"designation": [
|
|
1186
|
+
{
|
|
1187
|
+
"language": "zh",
|
|
1188
|
+
"value": "未知的FHIR HTTP操作"
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"language": "it",
|
|
1192
|
+
"value": "operazione http FHIR sconosciuta"
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
"language": "pl",
|
|
1196
|
+
"value": "nieznana operacja FHIR http"
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
"language": "fr",
|
|
1200
|
+
"value": "operation http FHIR inconnue"
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"language": "ru",
|
|
1204
|
+
"value": "неизвестная операция FHIR http"
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"language": "es",
|
|
1208
|
+
"value": "Operación http FHIR desconocida"
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"language": "nl",
|
|
1212
|
+
"value": "onbekende FHIR http operation"
|
|
1213
|
+
}
|
|
1214
|
+
]
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"code": "MSG_UNKNOWN_TYPE",
|
|
1218
|
+
"display": "Resource Type \"%s\" not recognised",
|
|
1219
|
+
"designation": [
|
|
1220
|
+
{
|
|
1221
|
+
"language": "zh",
|
|
1222
|
+
"value": "资源类型\"%s\"未识别"
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
"language": "it",
|
|
1226
|
+
"value": "Tipo di Risorsa \"%s\" non riconosciuto"
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"language": "pl",
|
|
1230
|
+
"value": "Nie rozpoznany typ zasobu: \"%s\""
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"language": "fr",
|
|
1234
|
+
"value": "Type de ressource \"%s\" non reconnu"
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
"language": "ru",
|
|
1238
|
+
"value": "Тип ресурса \"%s\" не распознан"
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"language": "es",
|
|
1242
|
+
"value": "Tipo de Recurso \"%s\" no reconocido"
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
"language": "nl",
|
|
1246
|
+
"value": "Resourcetype \"%s\" niet herkend"
|
|
1247
|
+
}
|
|
1248
|
+
]
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
"code": "MSG_UPDATED",
|
|
1252
|
+
"display": "existing resource updated",
|
|
1253
|
+
"designation": [
|
|
1254
|
+
{
|
|
1255
|
+
"language": "zh",
|
|
1256
|
+
"value": "已有资源被更新"
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
"language": "it",
|
|
1260
|
+
"value": "risorsa esistente aggiornata"
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"language": "pl",
|
|
1264
|
+
"value": "uaktualniono istniejący zasób"
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
"language": "fr",
|
|
1268
|
+
"value": "ressource existante mise à jour"
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
"language": "ru",
|
|
1272
|
+
"value": "существующий ресурс обновлён"
|
|
1273
|
+
},
|
|
1274
|
+
{
|
|
1275
|
+
"language": "es",
|
|
1276
|
+
"value": "Recurso existente actualizado"
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
"language": "nl",
|
|
1280
|
+
"value": "bestaande resource updated"
|
|
1281
|
+
}
|
|
1282
|
+
]
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
"code": "MSG_VERSION_AWARE",
|
|
1286
|
+
"display": "Version aware updates are required for this resource",
|
|
1287
|
+
"designation": [
|
|
1288
|
+
{
|
|
1289
|
+
"language": "zh",
|
|
1290
|
+
"value": "该资源的更新必须针对版本"
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
"language": "it",
|
|
1294
|
+
"value": "Questa risorsa richiede aggiornamenti per versione"
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
"language": "pl",
|
|
1298
|
+
"value": "Uaktualnienia zakładające wersjonowanie są wymagane dla tego zasobu"
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"language": "fr",
|
|
1302
|
+
"value": "Des mises à jour en relation avec la version sont requises pour cette ressource"
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
"language": "ru",
|
|
1306
|
+
"value": "Для данного ресурса необходимы обновления с учётом версии"
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
"language": "es",
|
|
1310
|
+
"value": "Este recurso requiere actualizaciones en base a versiones"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"language": "nl",
|
|
1314
|
+
"value": "Versie-bewuste updates zijn vereist voor deze resource"
|
|
1315
|
+
}
|
|
1316
|
+
]
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
"code": "MSG_VERSION_AWARE_CONFLICT",
|
|
1320
|
+
"display": "Update Conflict (server current version = \"%s\", client version referenced = \"%s\")",
|
|
1321
|
+
"designation": [
|
|
1322
|
+
{
|
|
1323
|
+
"language": "zh",
|
|
1324
|
+
"value": "更新冲突 (服务器当前版本 = \"%s\", 客户端引用的版本 = \"%s\")"
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
"language": "it",
|
|
1328
|
+
"value": "Conflitto nell''aggiornamento (attuale = \"%s\", quotato = \"%s\")"
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
"language": "pl",
|
|
1332
|
+
"value": "Konflikt podczas uaktualnienia (obecna wersja na serwerze = \"%s\", wersja wskazana przez klienta = \"%s\")"
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
"language": "fr",
|
|
1336
|
+
"value": "Conflit de mise à jour (version courante du serveur = \"%s\", version référencée du client = \"%s\")"
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
"language": "ru",
|
|
1340
|
+
"value": "Конфликт обновления (текущая версия сервера = \"%s\", указанная версия клиента = \"%s\")"
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"language": "es",
|
|
1344
|
+
"value": "Conflicto de actualizaciones (versión actual del servidor = \"%s\", versión del cliente referenciada = \"%s\")"
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
"language": "nl",
|
|
1348
|
+
"value": "Updateconflict (huidige serverversie = \"%s\", opgegeven clientversie = \"%s\")"
|
|
1349
|
+
}
|
|
1350
|
+
]
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
"code": "MSG_VERSION_AWARE_URL",
|
|
1354
|
+
"display": "Version specific URL not recognised",
|
|
1355
|
+
"designation": [
|
|
1356
|
+
{
|
|
1357
|
+
"language": "zh",
|
|
1358
|
+
"value": "未识别特定版本的URL"
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"language": "it",
|
|
1362
|
+
"value": "URL specifico alla versione non riconosciuto"
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
"language": "pl",
|
|
1366
|
+
"value": "Nie rozpoznany URL specyficzny dla wersji"
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
"language": "fr",
|
|
1370
|
+
"value": "URL spécifique à une version non reconnue"
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"language": "ru",
|
|
1374
|
+
"value": "URL для указанной версии не распознан"
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
"language": "es",
|
|
1378
|
+
"value": "URL especifica de la versión no reconocida"
|
|
1379
|
+
},
|
|
1380
|
+
{
|
|
1381
|
+
"language": "nl",
|
|
1382
|
+
"value": "Versie-specifieke URL niet herkend"
|
|
1383
|
+
}
|
|
1384
|
+
]
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"code": "MSG_WRONG_NS",
|
|
1388
|
+
"display": "This does not appear to be a FHIR element or resource (wrong namespace \"%s\")"
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"code": "SEARCH_MULTIPLE",
|
|
1392
|
+
"display": "Error: Multiple matches exist for %s search parameters \"%s\"",
|
|
1393
|
+
"designation": [
|
|
1394
|
+
{
|
|
1395
|
+
"language": "zh",
|
|
1396
|
+
"value": "错误: 对于 %s 搜索的参数 \"%s\"存在多个匹配"
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
"language": "it",
|
|
1400
|
+
"value": "Errore: Trovate corrispondenze multiple per %s parametri di ricerca \"%s\""
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"language": "pl",
|
|
1404
|
+
"value": "Błąd: Istnieją wielokrotne dopasowania dla %s parametrów wyszukiwania \"%s\""
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
"language": "fr",
|
|
1408
|
+
"value": "Erreur : Plusieurs correspondances existent pour ce paramètre de recherche %s"
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
"language": "ru",
|
|
1412
|
+
"value": "Ошибка: множественные совпадения для %s с параметрами поиска \"%s\""
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
"language": "es",
|
|
1416
|
+
"value": "Error: Multiples ocurrencias existen para %s parametros de búsqueda \"%s\""
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
"language": "nl",
|
|
1420
|
+
"value": "Fout: er is meer dan één resultaat voor %s zoekparameters \"%s\""
|
|
1421
|
+
}
|
|
1422
|
+
]
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
"code": "UPDATE_MULTIPLE_MATCHES",
|
|
1426
|
+
"display": "Error: Multiple matches exist for the conditional update"
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
"code": "SEARCH_NONE",
|
|
1430
|
+
"display": "Error: no processable search found for %s search parameters \"%s\"",
|
|
1431
|
+
"designation": [
|
|
1432
|
+
{
|
|
1433
|
+
"language": "zh",
|
|
1434
|
+
"value": "错误: 对%s搜索参数\"%s\"未找到可处理的搜索"
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
"language": "it",
|
|
1438
|
+
"value": "Errore: non � stato trovato alcun parametro di ricerca processabile per %s parametri di ricerca \"%s\""
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
"language": "pl",
|
|
1442
|
+
"value": "Błąd: Niewykonalne wyszukiwanie dla %s parametrów wyszukiwania \"%s\""
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"language": "fr",
|
|
1446
|
+
"value": "Erreur : aucune recherche trouvée pour les paramètres %s \"%s\""
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
"language": "ru",
|
|
1450
|
+
"value": "Ошибка: обрабатываемых результатов поиска для %s с параметрами поиска \"%s\" не найдено"
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
"language": "es",
|
|
1454
|
+
"value": "Error: no se encontro una búsqueda apropiada para %s parametros de búsqueda \"%s\""
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"language": "nl",
|
|
1458
|
+
"value": "Fout: geen verwerkbare zoekactie gevonden voor %s zoekparameters \"%s\""
|
|
1459
|
+
}
|
|
1460
|
+
]
|
|
1461
|
+
}
|
|
1462
|
+
]
|
|
1463
|
+
}
|
|
1464
|
+
}
|