R5 Final QA

This page is part of the FHIR Specification (v5.0.0-draft-final: Final QA Preview for R5 - see ballot notes). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions

Clinical Decision Support icon Work GroupMaturity Level: N/AStandards Status: Informative Compartments: Device, Encounter, Patient, Practitioner, RelatedPerson

This is a representation of the json schema for RequestOrchestration, which is just a part of the full JSON Schema.

{
  "$schema": "http://json-schema.org/draft-06/schema#",
  "id": "http://hl7.org/fhir/json-schema/RequestOrchestration",
  "$ref": "#/definitions/RequestOrchestration",
  "description": "see http://hl7.org/fhir/json.html#schema for information about the FHIR Json Schemas",
  "definitions": {
    "RequestOrchestration": {
      "description": "A set of related requests that can be used to capture intended activities that have inter-dependencies such as \"give this medication after that one\".",
      "properties": {
        "resourceType": {
          "description": "This is a RequestOrchestration resource",
          "const": "RequestOrchestration"
        },
        "id": {
          "description": "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.",
          "$ref": "id.schema.json#/definitions/id"
        },
        "meta": {
          "description": "The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.",
          "$ref": "Meta.schema.json#/definitions/Meta"
        },
        "implicitRules": {
          "description": "A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.",
          "$ref": "#/definitions/uri"
        },
        "_implicitRules": {
          "description": "Extensions for implicitRules",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "language": {
          "description": "The base language in which the resource is written.",
          "$ref": "#/definitions/code"
        },
        "_language": {
          "description": "Extensions for language",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "text": {
          "description": "A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it \"clinically safe\" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.",
          "$ref": "Narrative.schema.json#/definitions/Narrative"
        },
        "contained": {
          "description": "These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, nor can they have their own independent transaction scope. This is allowed to be a Parameters resource if and only if it is referenced by a resource that provides context/meaning.",
          "items": {
            "$ref": "ResourceList.schema.json#/definitions/ResourceList"
          },
          "type": "array"
        },
        "extension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "modifierExtension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element\u0027s descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "identifier": {
          "description": "Allows a service to provide a unique, business identifier for the request.",
          "items": {
            "$ref": "Identifier.schema.json#/definitions/Identifier"
          },
          "type": "array"
        },
        "instantiatesCanonical": {
          "description": "A canonical URL referencing a FHIR-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this request.",
          "items": {
            "$ref": "#/definitions/canonical"
          },
          "type": "array"
        },
        "_instantiatesCanonical": {
          "description": "Extensions for instantiatesCanonical",
          "items": {
            "$ref": "Element.schema.json#/definitions/Element"
          },
          "type": "array"
        },
        "instantiatesUri": {
          "description": "A URL referencing an externally defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this request.",
          "items": {
            "$ref": "#/definitions/uri"
          },
          "type": "array"
        },
        "_instantiatesUri": {
          "description": "Extensions for instantiatesUri",
          "items": {
            "$ref": "Element.schema.json#/definitions/Element"
          },
          "type": "array"
        },
        "basedOn": {
          "description": "A plan, proposal or order that is fulfilled in whole or in part by this request.",
          "items": {
            "$ref": "Reference.schema.json#/definitions/Reference"
          },
          "type": "array"
        },
        "replaces": {
          "description": "Completed or terminated request(s) whose function is taken by this new request.",
          "items": {
            "$ref": "Reference.schema.json#/definitions/Reference"
          },
          "type": "array"
        },
        "groupIdentifier": {
          "description": "A shared identifier common to multiple independent Request instances that were activated/authorized more or less simultaneously by a single author.  The presence of the same identifier on each request ties those requests together and may have business ramifications in terms of reporting of results, billing, etc.  E.g. a requisition number shared by a set of lab tests ordered together, or a prescription number shared by all meds ordered at one time.",
          "$ref": "Identifier.schema.json#/definitions/Identifier"
        },
        "status": {
          "description": "The current state of the request. For request orchestrations, the status reflects the status of all the requests in the orchestration.",
          "$ref": "#/definitions/code"
        },
        "_status": {
          "description": "Extensions for status",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "intent": {
          "description": "Indicates the level of authority/intentionality associated with the request and where the request fits into the workflow chain.",
          "$ref": "#/definitions/code"
        },
        "_intent": {
          "description": "Extensions for intent",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "priority": {
          "description": "Indicates how quickly the request should be addressed with respect to other requests.",
          "$ref": "#/definitions/code"
        },
        "_priority": {
          "description": "Extensions for priority",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "code": {
          "description": "A code that identifies what the overall request orchestration is.",
          "$ref": "CodeableConcept.schema.json#/definitions/CodeableConcept"
        },
        "subject": {
          "description": "The subject for which the request orchestration was created.",
          "$ref": "Reference.schema.json#/definitions/Reference"
        },
        "encounter": {
          "description": "Describes the context of the request orchestration, if any.",
          "$ref": "Reference.schema.json#/definitions/Reference"
        },
        "authoredOn": {
          "description": "Indicates when the request orchestration was created.",
          "$ref": "#/definitions/dateTime"
        },
        "_authoredOn": {
          "description": "Extensions for authoredOn",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "author": {
          "description": "Provides a reference to the author of the request orchestration.",
          "$ref": "Reference.schema.json#/definitions/Reference"
        },
        "reason": {
          "description": "Describes the reason for the request orchestration in coded or textual form.",
          "items": {
            "$ref": "CodeableReference.schema.json#/definitions/CodeableReference"
          },
          "type": "array"
        },
        "goal": {
          "description": "Goals that are intended to be achieved by following the requests in this RequestOrchestration.",
          "items": {
            "$ref": "Reference.schema.json#/definitions/Reference"
          },
          "type": "array"
        },
        "note": {
          "description": "Provides a mechanism to communicate additional information about the response.",
          "items": {
            "$ref": "Annotation.schema.json#/definitions/Annotation"
          },
          "type": "array"
        },
        "action": {
          "description": "The actions, if any, produced by the evaluation of the artifact.",
          "items": {
            "$ref": "#/definitions/RequestOrchestration_Action"
          },
          "type": "array"
        }
      },
      "type": "object",
      "additionalProperties": false,
      "required": [
        "resourceType"
      ]
    },
    "RequestOrchestration_Action": {
      "description": "A set of related requests that can be used to capture intended activities that have inter-dependencies such as \"give this medication after that one\".",
      "properties": {
        "id": {
          "description": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.",
          "$ref": "string.schema.json#/definitions/string"
        },
        "extension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "modifierExtension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element\u0027s descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "linkId": {
          "description": "The linkId of the action from the PlanDefinition that corresponds to this action in the RequestOrchestration resource.",
          "$ref": "#/definitions/string"
        },
        "_linkId": {
          "description": "Extensions for linkId",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "prefix": {
          "description": "A user-visible prefix for the action. For example a section or item numbering such as 1. or A.",
          "$ref": "#/definitions/string"
        },
        "_prefix": {
          "description": "Extensions for prefix",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "title": {
          "description": "The title of the action displayed to a user.",
          "$ref": "#/definitions/string"
        },
        "_title": {
          "description": "Extensions for title",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "description": {
          "description": "A short description of the action used to provide a summary to display to the user.",
          "$ref": "#/definitions/markdown"
        },
        "_description": {
          "description": "Extensions for description",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "textEquivalent": {
          "description": "A text equivalent of the action to be performed. This provides a human-interpretable description of the action when the definition is consumed by a system that might not be capable of interpreting it dynamically.",
          "$ref": "#/definitions/markdown"
        },
        "_textEquivalent": {
          "description": "Extensions for textEquivalent",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "priority": {
          "description": "Indicates how quickly the action should be addressed with respect to other actions.",
          "$ref": "#/definitions/code"
        },
        "_priority": {
          "description": "Extensions for priority",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "code": {
          "description": "A code that provides meaning for the action or action group. For example, a section may have a LOINC code for a section of a documentation template.",
          "items": {
            "$ref": "CodeableConcept.schema.json#/definitions/CodeableConcept"
          },
          "type": "array"
        },
        "documentation": {
          "description": "Didactic or other informational resources associated with the action that can be provided to the CDS recipient. Information resources can include inline text commentary and links to web resources.",
          "items": {
            "$ref": "RelatedArtifact.schema.json#/definitions/RelatedArtifact"
          },
          "type": "array"
        },
        "goal": {
          "description": "Goals that are intended to be achieved by following the requests in this action.",
          "items": {
            "$ref": "Reference.schema.json#/definitions/Reference"
          },
          "type": "array"
        },
        "condition": {
          "description": "An expression that describes applicability criteria, or start/stop conditions for the action.",
          "items": {
            "$ref": "#/definitions/RequestOrchestration_Condition"
          },
          "type": "array"
        },
        "input": {
          "description": "Defines input data requirements for the action.",
          "items": {
            "$ref": "#/definitions/RequestOrchestration_Input"
          },
          "type": "array"
        },
        "output": {
          "description": "Defines the outputs of the action, if any.",
          "items": {
            "$ref": "#/definitions/RequestOrchestration_Output"
          },
          "type": "array"
        },
        "relatedAction": {
          "description": "A relationship to another action such as \"before\" or \"30-60 minutes after start of\".",
          "items": {
            "$ref": "#/definitions/RequestOrchestration_RelatedAction"
          },
          "type": "array"
        },
        "timingDateTime": {
          "description": "An optional value describing when the action should be performed.",
          "pattern": "^([0-9]([0-9]([0-9][1-9]|[1-9]0)|[1-9]00)|[1-9]000)(-(0[1-9]|1[0-2])(-(0[1-9]|[1-2][0-9]|3[0-1])(T([01][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)(\\.[0-9]{1,9})?)?)?(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00)?)?)?$",
          "type": "string"
        },
        "_timingDateTime": {
          "description": "Extensions for timingDateTime",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "timingAge": {
          "description": "An optional value describing when the action should be performed.",
          "$ref": "Age.schema.json#/definitions/Age"
        },
        "timingPeriod": {
          "description": "An optional value describing when the action should be performed.",
          "$ref": "Period.schema.json#/definitions/Period"
        },
        "timingDuration": {
          "description": "An optional value describing when the action should be performed.",
          "$ref": "Duration.schema.json#/definitions/Duration"
        },
        "timingRange": {
          "description": "An optional value describing when the action should be performed.",
          "$ref": "Range.schema.json#/definitions/Range"
        },
        "timingTiming": {
          "description": "An optional value describing when the action should be performed.",
          "$ref": "Timing.schema.json#/definitions/Timing"
        },
        "location": {
          "description": "Identifies the facility where the action will occur; e.g. home, hospital, specific clinic, etc.",
          "$ref": "CodeableReference.schema.json#/definitions/CodeableReference"
        },
        "participant": {
          "description": "The participant that should perform or be responsible for this action.",
          "items": {
            "$ref": "#/definitions/RequestOrchestration_Participant"
          },
          "type": "array"
        },
        "type": {
          "description": "The type of action to perform (create, update, remove).",
          "$ref": "CodeableConcept.schema.json#/definitions/CodeableConcept"
        },
        "groupingBehavior": {
          "description": "Defines the grouping behavior for the action and its children.",
          "$ref": "#/definitions/code"
        },
        "_groupingBehavior": {
          "description": "Extensions for groupingBehavior",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "selectionBehavior": {
          "description": "Defines the selection behavior for the action and its children.",
          "$ref": "#/definitions/code"
        },
        "_selectionBehavior": {
          "description": "Extensions for selectionBehavior",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "requiredBehavior": {
          "description": "Defines expectations around whether an action is required.",
          "$ref": "#/definitions/code"
        },
        "_requiredBehavior": {
          "description": "Extensions for requiredBehavior",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "precheckBehavior": {
          "description": "Defines whether the action should usually be preselected.",
          "$ref": "#/definitions/code"
        },
        "_precheckBehavior": {
          "description": "Extensions for precheckBehavior",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "cardinalityBehavior": {
          "description": "Defines whether the action can be selected multiple times.",
          "$ref": "#/definitions/code"
        },
        "_cardinalityBehavior": {
          "description": "Extensions for cardinalityBehavior",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "resource": {
          "description": "The resource that is the target of the action (e.g. CommunicationRequest).",
          "$ref": "Reference.schema.json#/definitions/Reference"
        },
        "definitionCanonical": {
          "description": "A reference to an ActivityDefinition that describes the action to be taken in detail, a PlanDefinition that describes a series of actions to be taken, a Questionnaire that should be filled out, a SpecimenDefinition describing a specimen to be collected, or an ObservationDefinition that specifies what observation should be captured.",
          "pattern": "^\\S*$",
          "type": "string"
        },
        "_definitionCanonical": {
          "description": "Extensions for definitionCanonical",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "definitionUri": {
          "description": "A reference to an ActivityDefinition that describes the action to be taken in detail, a PlanDefinition that describes a series of actions to be taken, a Questionnaire that should be filled out, a SpecimenDefinition describing a specimen to be collected, or an ObservationDefinition that specifies what observation should be captured.",
          "pattern": "^\\S*$",
          "type": "string"
        },
        "_definitionUri": {
          "description": "Extensions for definitionUri",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "transform": {
          "description": "A reference to a StructureMap resource that defines a transform that can be executed to produce the intent resource using the ActivityDefinition instance as the input.",
          "$ref": "canonical.schema.json#/definitions/canonical"
        },
        "dynamicValue": {
          "description": "Customizations that should be applied to the statically defined resource. For example, if the dosage of a medication must be computed based on the patient\u0027s weight, a customization would be used to specify an expression that calculated the weight, and the path on the resource that would contain the result.",
          "items": {
            "$ref": "#/definitions/RequestOrchestration_DynamicValue"
          },
          "type": "array"
        },
        "action": {
          "description": "Sub actions.",
          "items": {
            "$ref": "#/definitions/RequestOrchestration_Action"
          },
          "type": "array"
        }
      },
      "type": "object",
      "additionalProperties": false
    },
    "RequestOrchestration_Condition": {
      "description": "A set of related requests that can be used to capture intended activities that have inter-dependencies such as \"give this medication after that one\".",
      "properties": {
        "id": {
          "description": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.",
          "$ref": "string.schema.json#/definitions/string"
        },
        "extension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "modifierExtension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element\u0027s descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "kind": {
          "description": "The kind of condition.",
          "$ref": "#/definitions/code"
        },
        "_kind": {
          "description": "Extensions for kind",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "expression": {
          "description": "An expression that returns true or false, indicating whether or not the condition is satisfied.",
          "$ref": "Expression.schema.json#/definitions/Expression"
        }
      },
      "type": "object",
      "additionalProperties": false
    },
    "RequestOrchestration_Input": {
      "description": "A set of related requests that can be used to capture intended activities that have inter-dependencies such as \"give this medication after that one\".",
      "properties": {
        "id": {
          "description": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.",
          "$ref": "string.schema.json#/definitions/string"
        },
        "extension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "modifierExtension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element\u0027s descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "title": {
          "description": "A human-readable label for the data requirement used to label data flows in BPMN or similar diagrams. Also provides a human readable label when rendering the data requirement that conveys its purpose to human readers.",
          "$ref": "#/definitions/string"
        },
        "_title": {
          "description": "Extensions for title",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "requirement": {
          "description": "Defines the data that is to be provided as input to the action.",
          "$ref": "DataRequirement.schema.json#/definitions/DataRequirement"
        },
        "relatedData": {
          "description": "Points to an existing input or output element that provides data to this input.",
          "$ref": "#/definitions/id"
        },
        "_relatedData": {
          "description": "Extensions for relatedData",
          "$ref": "Element.schema.json#/definitions/Element"
        }
      },
      "type": "object",
      "additionalProperties": false
    },
    "RequestOrchestration_Output": {
      "description": "A set of related requests that can be used to capture intended activities that have inter-dependencies such as \"give this medication after that one\".",
      "properties": {
        "id": {
          "description": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.",
          "$ref": "string.schema.json#/definitions/string"
        },
        "extension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "modifierExtension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element\u0027s descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "title": {
          "description": "A human-readable label for the data requirement used to label data flows in BPMN or similar diagrams. Also provides a human readable label when rendering the data requirement that conveys its purpose to human readers.",
          "$ref": "#/definitions/string"
        },
        "_title": {
          "description": "Extensions for title",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "requirement": {
          "description": "Defines the data that results as output from the action.",
          "$ref": "DataRequirement.schema.json#/definitions/DataRequirement"
        },
        "relatedData": {
          "description": "Points to an existing input or output element that is results as output from the action.",
          "$ref": "#/definitions/string"
        },
        "_relatedData": {
          "description": "Extensions for relatedData",
          "$ref": "Element.schema.json#/definitions/Element"
        }
      },
      "type": "object",
      "additionalProperties": false
    },
    "RequestOrchestration_RelatedAction": {
      "description": "A set of related requests that can be used to capture intended activities that have inter-dependencies such as \"give this medication after that one\".",
      "properties": {
        "id": {
          "description": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.",
          "$ref": "string.schema.json#/definitions/string"
        },
        "extension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "modifierExtension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element\u0027s descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "targetId": {
          "description": "The element id of the target related action.",
          "$ref": "#/definitions/id"
        },
        "_targetId": {
          "description": "Extensions for targetId",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "relationship": {
          "description": "The relationship of this action to the related action.",
          "$ref": "#/definitions/code"
        },
        "_relationship": {
          "description": "Extensions for relationship",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "endRelationship": {
          "description": "The relationship of the end of this action to the related action.",
          "$ref": "#/definitions/code"
        },
        "_endRelationship": {
          "description": "Extensions for endRelationship",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "offsetDuration": {
          "description": "A duration or range of durations to apply to the relationship. For example, 30-60 minutes before.",
          "$ref": "Duration.schema.json#/definitions/Duration"
        },
        "offsetRange": {
          "description": "A duration or range of durations to apply to the relationship. For example, 30-60 minutes before.",
          "$ref": "Range.schema.json#/definitions/Range"
        }
      },
      "type": "object",
      "additionalProperties": false
    },
    "RequestOrchestration_Participant": {
      "description": "A set of related requests that can be used to capture intended activities that have inter-dependencies such as \"give this medication after that one\".",
      "properties": {
        "id": {
          "description": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.",
          "$ref": "string.schema.json#/definitions/string"
        },
        "extension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "modifierExtension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element\u0027s descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "type": {
          "description": "The type of participant in the action.",
          "$ref": "#/definitions/code"
        },
        "_type": {
          "description": "Extensions for type",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "typeCanonical": {
          "description": "The type of participant in the action.",
          "$ref": "canonical.schema.json#/definitions/canonical"
        },
        "typeReference": {
          "description": "The type of participant in the action.",
          "$ref": "Reference.schema.json#/definitions/Reference"
        },
        "role": {
          "description": "The role the participant should play in performing the described action.",
          "$ref": "CodeableConcept.schema.json#/definitions/CodeableConcept"
        },
        "function": {
          "description": "Indicates how the actor will be involved in the action - author, reviewer, witness, etc.",
          "$ref": "CodeableConcept.schema.json#/definitions/CodeableConcept"
        },
        "actorCanonical": {
          "description": "A reference to the actual participant.",
          "pattern": "^\\S*$",
          "type": "string"
        },
        "_actorCanonical": {
          "description": "Extensions for actorCanonical",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "actorReference": {
          "description": "A reference to the actual participant.",
          "$ref": "Reference.schema.json#/definitions/Reference"
        }
      },
      "type": "object",
      "additionalProperties": false
    },
    "RequestOrchestration_DynamicValue": {
      "description": "A set of related requests that can be used to capture intended activities that have inter-dependencies such as \"give this medication after that one\".",
      "properties": {
        "id": {
          "description": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.",
          "$ref": "string.schema.json#/definitions/string"
        },
        "extension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "modifierExtension": {
          "description": "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element\u0027s descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).",
          "items": {
            "$ref": "Extension.schema.json#/definitions/Extension"
          },
          "type": "array"
        },
        "path": {
          "description": "The path to the element to be customized. This is the path on the resource that will hold the result of the calculation defined by the expression. The specified path SHALL be a FHIRPath resolvable on the specified target type of the ActivityDefinition, and SHALL consist only of identifiers, constant indexers, and a restricted subset of functions. The path is allowed to contain qualifiers (.) to traverse sub-elements, as well as indexers ([x]) to traverse multiple-cardinality sub-elements (see the [Simple FHIRPath Profile](fhirpath.html#simple) for full details).",
          "$ref": "#/definitions/string"
        },
        "_path": {
          "description": "Extensions for path",
          "$ref": "Element.schema.json#/definitions/Element"
        },
        "expression": {
          "description": "An expression specifying the value of the customized element.",
          "$ref": "Expression.schema.json#/definitions/Expression"
        }
      },
      "type": "object",
      "additionalProperties": false
    }
  }
}