{
  "swagger": "2.0",
  "host": "hapi.fhir.org",
  "basePath": "/baseDstu3/",
  "paths": {
    "/metadata": {
      "get": {
        "summary": "Get conformance statement.",
        "produces": [
          "application/json",
          "application/xml"
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Account": {
      "get": {
        "parameters": [
          {
            "name": "owner",
            "type": "string",
            "in": "query",
            "description": "Who is responsible?"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Account number"
          },
          {
            "name": "period",
            "type": "string",
            "in": "query",
            "description": "Transaction window",
            "format": "date"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "What is account tied to?"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "E.g. patient, expense, depreciation"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "balance",
            "type": "string",
            "in": "query",
            "description": "How much is in account?"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "What is account tied to?"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Human-readable label"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "active | inactive | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Account/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Account/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Account/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Account/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ActivityDefinition": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The activity definition publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "successor",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the activity definition"
          },
          {
            "name": "derived-from",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the activity definition"
          },
          {
            "name": "predecessor",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "composed-of",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the activity definition"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "depends-on",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "effective",
            "type": "string",
            "in": "query",
            "description": "The time during which the activity definition is intended to be in use",
            "format": "date"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the activity definition"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the activity definition"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the activity definition"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the activity definition"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the activity definition"
          },
          {
            "name": "topic",
            "type": "string",
            "in": "query",
            "description": "Topics associated with the module"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the activity definition"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ActivityDefinition/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ActivityDefinition/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ActivityDefinition/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ActivityDefinition/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AdverseEvent": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "When the event occurred",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "recorder",
            "type": "string",
            "in": "query",
            "description": "Who recorded the adverse event"
          },
          {
            "name": "study",
            "type": "string",
            "in": "query",
            "description": "AdverseEvent.study"
          },
          {
            "name": "reaction",
            "type": "string",
            "in": "query",
            "description": "Adverse Reaction Events linked to exposure to substance"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Subject or group impacted by event"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "substance",
            "type": "string",
            "in": "query",
            "description": "Refers to the specific entity that caused the adverse event"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "actual | potential"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "seriousness",
            "type": "string",
            "in": "query",
            "description": "Mild | Moderate | Severe"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "location",
            "type": "string",
            "in": "query",
            "description": "Location where adverse event occurred"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "AE | PAE \rAn adverse event is an event that caused harm to a patient,  an adverse reaction is a something that is a subject-specific event that is a result of an exposure to a medication, food, device or environmental substance, a potential adverse event is something that occurred and that could have caused harm to a patient but did not"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AdverseEvent/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AdverseEvent/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AdverseEvent/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AdverseEvent/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AllergyIntolerance": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Date record was believed accurate",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Code that identifies the allergy or intolerance"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "verification-status",
            "type": "string",
            "in": "query",
            "description": "unconfirmed | confirmed | refuted | entered-in-error"
          },
          {
            "name": "criticality",
            "type": "string",
            "in": "query",
            "description": "low | high | unable-to-assess"
          },
          {
            "name": "clinical-status",
            "type": "string",
            "in": "query",
            "description": "active | inactive | resolved"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "allergy | intolerance - Underlying mechanism (if known)"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who the sensitivity is for"
          },
          {
            "name": "severity",
            "type": "string",
            "in": "query",
            "description": "mild | moderate | severe (of event as a whole)"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External ids for this item"
          },
          {
            "name": "manifestation",
            "type": "string",
            "in": "query",
            "description": "Clinical symptoms/signs associated with the Event"
          },
          {
            "name": "recorder",
            "type": "string",
            "in": "query",
            "description": "Who recorded the sensitivity"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "onset",
            "type": "string",
            "in": "query",
            "description": "Date(/time) when manifestations showed",
            "format": "date"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "asserter",
            "type": "string",
            "in": "query",
            "description": "Source of the information about the allergy"
          },
          {
            "name": "route",
            "type": "string",
            "in": "query",
            "description": "How the subject was exposed to the substance"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "food | medication | environment | biologic"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "last-date",
            "type": "string",
            "in": "query",
            "description": "Date(/time) of last known occurrence of a reaction",
            "format": "date"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AllergyIntolerance/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AllergyIntolerance/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AllergyIntolerance/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AllergyIntolerance/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Appointment": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Appointment date/time.",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "An Identifier of the Appointment"
          },
          {
            "name": "incomingreferral",
            "type": "string",
            "in": "query",
            "description": "The ReferralRequest provided as information to allocate to the Encounter"
          },
          {
            "name": "practitioner",
            "type": "string",
            "in": "query",
            "description": "One of the individuals of the appointment is this practitioner"
          },
          {
            "name": "appointment-type",
            "type": "string",
            "in": "query",
            "description": "The style of appointment or patient that has been booked in the slot (not service type)"
          },
          {
            "name": "part-status",
            "type": "string",
            "in": "query",
            "description": "The Participation status of the subject, or other participant on the appointment. Can be used to locate participants that have not responded to meeting requests."
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "service-type",
            "type": "string",
            "in": "query",
            "description": "The specific service that is to be performed during this appointment"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "actor",
            "type": "string",
            "in": "query",
            "description": "Any one of the individuals participating in the appointment"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "One of the individuals of the appointment is this patient"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "location",
            "type": "string",
            "in": "query",
            "description": "This location is listed in the participants of the appointment"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The overall status of the appointment"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Appointment/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Appointment/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Appointment/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Appointment/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AppointmentResponse": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "An Identifier in this appointment response"
          },
          {
            "name": "practitioner",
            "type": "string",
            "in": "query",
            "description": "This Response is for this Practitioner"
          },
          {
            "name": "part-status",
            "type": "string",
            "in": "query",
            "description": "The participants acceptance status for this appointment"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "appointment",
            "type": "string",
            "in": "query",
            "description": "The appointment that the response is attached to"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "actor",
            "type": "string",
            "in": "query",
            "description": "The Person, Location/HealthcareService or Device that this appointment response replies for"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "This Response is for this Patient"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "location",
            "type": "string",
            "in": "query",
            "description": "This Response is for this Location"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AppointmentResponse/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AppointmentResponse/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AppointmentResponse/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AppointmentResponse/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AuditEvent": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Time when the event occurred on source",
            "format": "date"
          },
          {
            "name": "entity-type",
            "type": "string",
            "in": "query",
            "description": "Type of entity involved"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "agent",
            "type": "string",
            "in": "query",
            "description": "Direct reference to resource"
          },
          {
            "name": "entity-role",
            "type": "string",
            "in": "query",
            "description": "What role the entity played"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "source",
            "type": "string",
            "in": "query",
            "description": "The identity of source detecting the event"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "Type/identifier of event"
          },
          {
            "name": "altid",
            "type": "string",
            "in": "query",
            "description": "Alternative User id e.g. authentication"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "agent-name",
            "type": "string",
            "in": "query",
            "description": "Human-meaningful name for the agent"
          },
          {
            "name": "entity-name",
            "type": "string",
            "in": "query",
            "description": "Descriptor for entity"
          },
          {
            "name": "subtype",
            "type": "string",
            "in": "query",
            "description": "More specific type/id for the event"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Direct reference to resource"
          },
          {
            "name": "action",
            "type": "string",
            "in": "query",
            "description": "Type of action performed during the event"
          },
          {
            "name": "entity-id",
            "type": "string",
            "in": "query",
            "description": "Specific instance of object"
          },
          {
            "name": "outcome",
            "type": "string",
            "in": "query",
            "description": "Whether the event succeeded or failed"
          },
          {
            "name": "policy",
            "type": "string",
            "in": "query",
            "description": "Policy that authorized event"
          },
          {
            "name": "address",
            "type": "string",
            "in": "query",
            "description": "Identifier for the network access point of the user device"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "site",
            "type": "string",
            "in": "query",
            "description": "Logical source location within the enterprise"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "agent-role",
            "type": "string",
            "in": "query",
            "description": "Agent role in the event"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "user",
            "type": "string",
            "in": "query",
            "description": "Unique identifier for the user"
          },
          {
            "name": "entity",
            "type": "string",
            "in": "query",
            "description": "Specific instance of resource"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AuditEvent/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AuditEvent/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AuditEvent/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/AuditEvent/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Basic": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Business identifier"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Kind of Resource"
          },
          {
            "name": "author",
            "type": "string",
            "in": "query",
            "description": "Who created"
          },
          {
            "name": "created",
            "type": "string",
            "in": "query",
            "description": "When created",
            "format": "date"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Identifies the focus of this resource"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Identifies the focus of this resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Basic/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Basic/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Basic/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Basic/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Binary": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "contenttype",
            "type": "string",
            "in": "query",
            "description": "MimeType of the binary content"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Binary/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Binary/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Binary/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Binary/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/BodySite": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Identifier for this instance of the anatomical location"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Named anatomical location"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Patient to whom bodysite belongs"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/BodySite/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/BodySite/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/BodySite/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/BodySite/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Bundle": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Persistent identifier for the bundle"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "message",
            "type": "string",
            "in": "query",
            "description": "The first resource in the bundle, if the bundle type is \"message\" - this is a message header, and this parameter provides access to search its contents"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "document | message | transaction | transaction-response | batch | batch-response | history | searchset | collection"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "composition",
            "type": "string",
            "in": "query",
            "description": "The first resource in the bundle, if the bundle type is \"document\" - this is a composition, and this parameter provides access to searches its contents"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Bundle/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Bundle/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Bundle/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Bundle/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CapabilityStatement": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The capability statement publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "software",
            "type": "string",
            "in": "query",
            "description": "Part of a the name of a software application"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the capability statement"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the capability statement"
          },
          {
            "name": "fhirversion",
            "type": "string",
            "in": "query",
            "description": "The version of FHIR"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the capability statement"
          },
          {
            "name": "mode",
            "type": "string",
            "in": "query",
            "description": "Mode - restful (server/client) or messaging (sender/receiver)"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "event",
            "type": "string",
            "in": "query",
            "description": "Event code in a capability statement"
          },
          {
            "name": "guide",
            "type": "string",
            "in": "query",
            "description": "Implementation guides supported"
          },
          {
            "name": "resource-profile",
            "type": "string",
            "in": "query",
            "description": "A profile id invoked in a capability statement"
          },
          {
            "name": "resource",
            "type": "string",
            "in": "query",
            "description": "Name of a resource mentioned in a capability statement"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "format",
            "type": "string",
            "in": "query",
            "description": "formats supported (xml | json | ttl | mime type)"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the capability statement"
          },
          {
            "name": "supported-profile",
            "type": "string",
            "in": "query",
            "description": "Profiles for use cases supported"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the capability statement"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "security-service",
            "type": "string",
            "in": "query",
            "description": "OAuth | SMART-on-FHIR | NTLM | Basic | Kerberos | Certificates"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the capability statement"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the capability statement"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the capability statement"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CapabilityStatement/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CapabilityStatement/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CapabilityStatement/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CapabilityStatement/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CarePlan": {
      "get": {
        "parameters": [
          {
            "name": "care-team",
            "type": "string",
            "in": "query",
            "description": "Who's involved in plan?"
          },
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Time period plan covers",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Who care plan is for"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "part-of",
            "type": "string",
            "in": "query",
            "description": "Part of referenced CarePlan"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "based-on",
            "type": "string",
            "in": "query",
            "description": "Fulfills care plan"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who care plan is for"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Created in context of"
          },
          {
            "name": "activity-date",
            "type": "string",
            "in": "query",
            "description": "Specified date occurs within period specified by CarePlan.activity.timingSchedule",
            "format": "date"
          },
          {
            "name": "definition",
            "type": "string",
            "in": "query",
            "description": "Protocol or definition"
          },
          {
            "name": "activity-code",
            "type": "string",
            "in": "query",
            "description": "Detail type of activity"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External Ids for this plan"
          },
          {
            "name": "goal",
            "type": "string",
            "in": "query",
            "description": "Desired outcome of plan"
          },
          {
            "name": "performer",
            "type": "string",
            "in": "query",
            "description": "Matches if the practitioner is listed as a performer in any of the \"simple\" activities.  (For performers of the detailed activities, chain through the activitydetail search parameter.)"
          },
          {
            "name": "replaces",
            "type": "string",
            "in": "query",
            "description": "CarePlan replaced by this CarePlan"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Created in context of"
          },
          {
            "name": "intent",
            "type": "string",
            "in": "query",
            "description": "proposal | plan | order | option"
          },
          {
            "name": "activity-reference",
            "type": "string",
            "in": "query",
            "description": "Activity details defined in specific resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "condition",
            "type": "string",
            "in": "query",
            "description": "Health issues this plan addresses"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "Type of plan"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "draft | active | suspended | completed | entered-in-error | cancelled | unknown"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CarePlan/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CarePlan/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CarePlan/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CarePlan/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CareTeam": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Time period team covers",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External Ids for this team"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Who care team is for"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Encounter or episode associated with CareTeam"
          },
          {
            "name": "participant",
            "type": "string",
            "in": "query",
            "description": "Who is involved"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who care team is for"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Encounter or episode associated with CareTeam"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "Type of team"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "proposed | active | suspended | inactive | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CareTeam/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CareTeam/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CareTeam/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CareTeam/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ChargeItem": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "performing-organization",
            "type": "string",
            "in": "query",
            "description": "Organization providing the charged sevice"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "A code that identifies the charge, like a billing code"
          },
          {
            "name": "participant-role",
            "type": "string",
            "in": "query",
            "description": "What type of performance was done"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Individual service was done for/to"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "occurrence",
            "type": "string",
            "in": "query",
            "description": "When the charged service was applied",
            "format": "date"
          },
          {
            "name": "entered-date",
            "type": "string",
            "in": "query",
            "description": "Date the charge item was entered",
            "format": "date"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "factor-override",
            "type": "string",
            "in": "query",
            "description": "Factor overriding the associated rules"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Individual service was done for/to"
          },
          {
            "name": "price-override",
            "type": "string",
            "in": "query",
            "description": "Price overriding the associated rules"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Encounter / Episode associated with event"
          },
          {
            "name": "enterer",
            "type": "string",
            "in": "query",
            "description": "Individual who was entering"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Business Identifier for item"
          },
          {
            "name": "quantity",
            "type": "integer",
            "in": "query",
            "description": "Quantity of which the charge item has been serviced"
          },
          {
            "name": "participant-actor",
            "type": "string",
            "in": "query",
            "description": "Individual who was performing"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "service",
            "type": "string",
            "in": "query",
            "description": "Which rendered service is being charged?"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "account",
            "type": "string",
            "in": "query",
            "description": "Account to place this charge"
          },
          {
            "name": "requesting-organization",
            "type": "string",
            "in": "query",
            "description": "Organization requesting the charged service"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ChargeItem/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ChargeItem/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ChargeItem/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ChargeItem/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Claim": {
      "get": {
        "parameters": [
          {
            "name": "care-team",
            "type": "string",
            "in": "query",
            "description": "Member of the CareTeam"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "use",
            "type": "string",
            "in": "query",
            "description": "The kind of financial resource"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "payee",
            "type": "string",
            "in": "query",
            "description": "The party receiving any payment for the Claim"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "provider",
            "type": "string",
            "in": "query",
            "description": "Provider responsible for the Claim"
          },
          {
            "name": "insurer",
            "type": "string",
            "in": "query",
            "description": "The target payor/insurer for the Claim"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Patient receiving the services"
          },
          {
            "name": "enterer",
            "type": "string",
            "in": "query",
            "description": "The party responsible for the entry of the Claim"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The primary identifier of the financial resource"
          },
          {
            "name": "created",
            "type": "string",
            "in": "query",
            "description": "The creation date for the Claim",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Encounters associated with a billed line item"
          },
          {
            "name": "priority",
            "type": "string",
            "in": "query",
            "description": "Processing priority requested"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The reference to the providing organization"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "facility",
            "type": "string",
            "in": "query",
            "description": "Facility responsible for the goods and services"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Claim/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Claim/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Claim/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Claim/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ClaimResponse": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The identity of the claimresponse"
          },
          {
            "name": "request",
            "type": "string",
            "in": "query",
            "description": "The claim reference"
          },
          {
            "name": "created",
            "type": "string",
            "in": "query",
            "description": "The creation date",
            "format": "date"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "payment-date",
            "type": "string",
            "in": "query",
            "description": "The expected paymentDate",
            "format": "date"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "disposition",
            "type": "string",
            "in": "query",
            "description": "The contents of the disposition message"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "insurer",
            "type": "string",
            "in": "query",
            "description": "The organization who generated this resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The subject of care."
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "request-provider",
            "type": "string",
            "in": "query",
            "description": "The Provider of the claim"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "outcome",
            "type": "string",
            "in": "query",
            "description": "The processing outcome"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ClaimResponse/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ClaimResponse/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ClaimResponse/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ClaimResponse/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ClinicalImpression": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "When the assessment was documented",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "assessor",
            "type": "string",
            "in": "query",
            "description": "The clinician performing the assessment"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Patient or group assessed"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "finding-ref",
            "type": "string",
            "in": "query",
            "description": "What was found"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "problem",
            "type": "string",
            "in": "query",
            "description": "Relevant impressions of patient state"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Patient or group assessed"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Encounter or Episode created from"
          },
          {
            "name": "action",
            "type": "string",
            "in": "query",
            "description": "Action taken as part of assessment procedure"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Business identifier"
          },
          {
            "name": "previous",
            "type": "string",
            "in": "query",
            "description": "Reference to last assessment"
          },
          {
            "name": "finding-code",
            "type": "string",
            "in": "query",
            "description": "What was found"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "investigation",
            "type": "string",
            "in": "query",
            "description": "Record of a specific investigation"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "draft | completed | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ClinicalImpression/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ClinicalImpression/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ClinicalImpression/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ClinicalImpression/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CodeSystem": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The code system publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "A code defined in the code system"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the code system"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the code system"
          },
          {
            "name": "language",
            "type": "string",
            "in": "query",
            "description": "A language in which a designation is provided"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the code system"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the code system"
          },
          {
            "name": "content-mode",
            "type": "string",
            "in": "query",
            "description": "not-present | example | fragment | complete"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the code system"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the code system"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "system",
            "type": "string",
            "in": "query",
            "description": "The system for any codes defined by this code system (same as 'url')"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the code system"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the code system"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the code system"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CodeSystem/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CodeSystem/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CodeSystem/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CodeSystem/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Communication": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Focus of message"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "part-of",
            "type": "string",
            "in": "query",
            "description": "Part of this action"
          },
          {
            "name": "medium",
            "type": "string",
            "in": "query",
            "description": "A channel of communication"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "based-on",
            "type": "string",
            "in": "query",
            "description": "Request fulfilled by this communication"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Focus of message"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Encounter or episode leading to message"
          },
          {
            "name": "definition",
            "type": "string",
            "in": "query",
            "description": "Instantiates protocol or definition"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Unique identifier"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "received",
            "type": "string",
            "in": "query",
            "description": "When received",
            "format": "date"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Encounter leading to message"
          },
          {
            "name": "sent",
            "type": "string",
            "in": "query",
            "description": "When sent",
            "format": "date"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "sender",
            "type": "string",
            "in": "query",
            "description": "Message sender"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "recipient",
            "type": "string",
            "in": "query",
            "description": "Message recipient"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "Message category"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "preparation | in-progress | suspended | aborted | completed | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Communication/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Communication/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Communication/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Communication/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CommunicationRequest": {
      "get": {
        "parameters": [
          {
            "name": "authored",
            "type": "string",
            "in": "query",
            "description": "When request transitioned to being actionable",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Focus of message"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "medium",
            "type": "string",
            "in": "query",
            "description": "A channel of communication"
          },
          {
            "name": "occurrence",
            "type": "string",
            "in": "query",
            "description": "When scheduled",
            "format": "date"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "group-identifier",
            "type": "string",
            "in": "query",
            "description": "Composite request this is part of"
          },
          {
            "name": "based-on",
            "type": "string",
            "in": "query",
            "description": "Fulfills plan or proposal"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Focus of message"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Encounter or episode leading to message"
          },
          {
            "name": "requester",
            "type": "string",
            "in": "query",
            "description": "Individual making the request"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Unique identifier"
          },
          {
            "name": "replaces",
            "type": "string",
            "in": "query",
            "description": "Request(s) replaced by this request"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Encounter leading to message"
          },
          {
            "name": "priority",
            "type": "string",
            "in": "query",
            "description": "Message urgency"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "sender",
            "type": "string",
            "in": "query",
            "description": "Message sender"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "recipient",
            "type": "string",
            "in": "query",
            "description": "Message recipient"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "Message category"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "draft | active | suspended | cancelled | completed | entered-in-error | unknown"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CommunicationRequest/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CommunicationRequest/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CommunicationRequest/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CommunicationRequest/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CompartmentDefinition": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The compartment definition publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Patient | Encounter | RelatedPerson | Practitioner | Device"
          },
          {
            "name": "resource",
            "type": "string",
            "in": "query",
            "description": "Name of resource type"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the compartment definition"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the compartment definition"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the compartment definition"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the compartment definition"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the compartment definition"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the compartment definition"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the compartment definition"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CompartmentDefinition/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CompartmentDefinition/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CompartmentDefinition/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/CompartmentDefinition/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Composition": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Composition editing time",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Who and/or what the composition is about"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "confidentiality",
            "type": "string",
            "in": "query",
            "description": "As defined by affinity domain"
          },
          {
            "name": "section",
            "type": "string",
            "in": "query",
            "description": "Classification of section (recommended)"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "Human Readable name/title"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "Kind of composition (LOINC if possible)"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who and/or what the composition is about"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Code(s) that apply to the event being documented"
          },
          {
            "name": "class",
            "type": "string",
            "in": "query",
            "description": "Categorization of Composition"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Logical identifier of composition (version-independent)"
          },
          {
            "name": "period",
            "type": "string",
            "in": "query",
            "description": "The period covered by the documentation",
            "format": "date"
          },
          {
            "name": "related-id",
            "type": "string",
            "in": "query",
            "description": "Target of the relationship"
          },
          {
            "name": "author",
            "type": "string",
            "in": "query",
            "description": "Who and/or what authored the composition"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Context of the Composition"
          },
          {
            "name": "attester",
            "type": "string",
            "in": "query",
            "description": "Who attested the composition"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "entry",
            "type": "string",
            "in": "query",
            "description": "A reference to data that supports this section"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "related-ref",
            "type": "string",
            "in": "query",
            "description": "Target of the relationship"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "preliminary | final | amended | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Composition/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Composition/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Composition/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Composition/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ConceptMap": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The concept map publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "other",
            "type": "string",
            "in": "query",
            "description": "Canonical URL for other concept map"
          },
          {
            "name": "dependson",
            "type": "string",
            "in": "query",
            "description": "Reference to property mapping depends on"
          },
          {
            "name": "target-system",
            "type": "string",
            "in": "query",
            "description": "System of the target (if necessary)"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the concept map"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the concept map"
          },
          {
            "name": "source",
            "type": "string",
            "in": "query",
            "description": "Identifies the source of the concepts which are being mapped"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the concept map"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "source-uri",
            "type": "string",
            "in": "query",
            "description": "Identifies the source of the concepts which are being mapped"
          },
          {
            "name": "source-system",
            "type": "string",
            "in": "query",
            "description": "Code System (if value set crosses code systems)"
          },
          {
            "name": "target-code",
            "type": "string",
            "in": "query",
            "description": "Code that identifies the target element"
          },
          {
            "name": "target-uri",
            "type": "string",
            "in": "query",
            "description": "Provides context to the mappings"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the concept map"
          },
          {
            "name": "product",
            "type": "string",
            "in": "query",
            "description": "Reference to property mapping depends on"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the concept map"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the concept map"
          },
          {
            "name": "target",
            "type": "string",
            "in": "query",
            "description": "Provides context to the mappings"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "source-code",
            "type": "string",
            "in": "query",
            "description": "Identifies element being mapped"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the concept map"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the concept map"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the concept map"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ConceptMap/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ConceptMap/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ConceptMap/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ConceptMap/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Condition": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "onset-info",
            "type": "string",
            "in": "query",
            "description": "Onsets as a string"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Code for the condition"
          },
          {
            "name": "evidence",
            "type": "string",
            "in": "query",
            "description": "Manifestation/symptom"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Who has the condition?"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "verification-status",
            "type": "string",
            "in": "query",
            "description": "provisional | differential | confirmed | refuted | entered-in-error | unknown"
          },
          {
            "name": "clinical-status",
            "type": "string",
            "in": "query",
            "description": "The clinical status of the condition"
          },
          {
            "name": "onset-date",
            "type": "string",
            "in": "query",
            "description": "Date related onsets (dateTime and Period)",
            "format": "date"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "abatement-date",
            "type": "string",
            "in": "query",
            "description": "Date-related abatements (dateTime and period)",
            "format": "date"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who has the condition?"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Encounter or episode when condition first asserted"
          },
          {
            "name": "abatement-age",
            "type": "string",
            "in": "query",
            "description": "Abatement as age or age range"
          },
          {
            "name": "asserted-date",
            "type": "string",
            "in": "query",
            "description": "Date record was believed accurate",
            "format": "date"
          },
          {
            "name": "evidence-detail",
            "type": "string",
            "in": "query",
            "description": "Supporting information found elsewhere"
          },
          {
            "name": "severity",
            "type": "string",
            "in": "query",
            "description": "The severity of the condition"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "A unique identifier of the condition record"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Encounter when condition first asserted"
          },
          {
            "name": "abatement-boolean",
            "type": "string",
            "in": "query",
            "description": "Abatement boolean (boolean is true or non-boolean values are present)"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "asserter",
            "type": "string",
            "in": "query",
            "description": "Person who asserts this condition"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "stage",
            "type": "string",
            "in": "query",
            "description": "Simple summary (disease specific)"
          },
          {
            "name": "abatement-string",
            "type": "string",
            "in": "query",
            "description": "Abatement as a string"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "onset-age",
            "type": "string",
            "in": "query",
            "description": "Onsets as age or age range"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "body-site",
            "type": "string",
            "in": "query",
            "description": "Anatomical location, if relevant"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "The category of the condition"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Condition/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Condition/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Condition/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Condition/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Consent": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "When this Consent was created or indexed",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "securitylabel",
            "type": "string",
            "in": "query",
            "description": "Security Labels that define affected resources"
          },
          {
            "name": "data",
            "type": "string",
            "in": "query",
            "description": "The actual data reference"
          },
          {
            "name": "purpose",
            "type": "string",
            "in": "query",
            "description": "Context of activities for which the agreement is made"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "source",
            "type": "string",
            "in": "query",
            "description": "Source from which this consent is taken"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who the consent applies to"
          },
          {
            "name": "action",
            "type": "string",
            "in": "query",
            "description": "Actions controlled by this consent"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Identifier for this record (external references)"
          },
          {
            "name": "period",
            "type": "string",
            "in": "query",
            "description": "Period that this consent applies",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "actor",
            "type": "string",
            "in": "query",
            "description": "Resource for the actor (or group, by role)"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "Custodian of the consent"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "consentor",
            "type": "string",
            "in": "query",
            "description": "Who is agreeing to the policy and exceptions"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "Classification of the consent statement - for indexing/retrieval"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "draft | proposed | active | rejected | inactive | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Consent/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Consent/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Consent/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Consent/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Contract": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The identity of the contract"
          },
          {
            "name": "agent",
            "type": "string",
            "in": "query",
            "description": "Agent to the Contact"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The identity of the subject of the contract"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The identity of the subject of the contract (if a patient)"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "authority",
            "type": "string",
            "in": "query",
            "description": "The authority of the contract"
          },
          {
            "name": "domain",
            "type": "string",
            "in": "query",
            "description": "The domain of the contract"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "term-topic",
            "type": "string",
            "in": "query",
            "description": "The identity of the topic of the contract terms"
          },
          {
            "name": "issued",
            "type": "string",
            "in": "query",
            "description": "The date/time the contract was issued",
            "format": "date"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "signer",
            "type": "string",
            "in": "query",
            "description": "Contract Signatory Party"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Contract/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Contract/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Contract/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Contract/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Coverage": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "subgroup",
            "type": "string",
            "in": "query",
            "description": "Sub-group identifier"
          },
          {
            "name": "subplan",
            "type": "string",
            "in": "query",
            "description": "Sub-plan identifier"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "The kind of coverage (health plan, auto, Workers Compensation)"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "payor",
            "type": "string",
            "in": "query",
            "description": "The identity of the insurer or party paying for services"
          },
          {
            "name": "class",
            "type": "string",
            "in": "query",
            "description": "Class identifier"
          },
          {
            "name": "dependent",
            "type": "string",
            "in": "query",
            "description": "Dependent number"
          },
          {
            "name": "plan",
            "type": "string",
            "in": "query",
            "description": "A plan or policy identifier"
          },
          {
            "name": "group",
            "type": "string",
            "in": "query",
            "description": "Group identifier"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The primary identifier of the insured and the coverage"
          },
          {
            "name": "subscriber",
            "type": "string",
            "in": "query",
            "description": "Reference to the subscriber"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "sequence",
            "type": "string",
            "in": "query",
            "description": "Sequence number"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "beneficiary",
            "type": "string",
            "in": "query",
            "description": "Covered party"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "subclass",
            "type": "string",
            "in": "query",
            "description": "Sub-class identifier"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "policy-holder",
            "type": "string",
            "in": "query",
            "description": "Reference to the policyholder"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Coverage/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Coverage/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Coverage/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Coverage/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DataElement": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The data element publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the data element"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "A code for the data element (server may choose to do subsumption)"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the data element"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "Text search in the description of the data element.  This corresponds to the definition of the first DataElement.element."
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the data element"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the data element"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the data element"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "stringency",
            "type": "string",
            "in": "query",
            "description": "The stringency of the data element definition"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the data element"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the data element"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the data element"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DataElement/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DataElement/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DataElement/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DataElement/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DetectedIssue": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "When identified",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Unique id for the detected issue"
          },
          {
            "name": "author",
            "type": "string",
            "in": "query",
            "description": "The provider or device that identified the issue"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Associated patient"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "implicated",
            "type": "string",
            "in": "query",
            "description": "Problem resource"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "Issue Category, e.g. drug-drug, duplicate therapy, etc."
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DetectedIssue/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DetectedIssue/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DetectedIssue/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DetectedIssue/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Device": {
      "get": {
        "parameters": [
          {
            "name": "udi-di",
            "type": "string",
            "in": "query",
            "description": "The udi Device Identifier (DI)"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Instance id from manufacturer, owner, and others"
          },
          {
            "name": "udi-carrier",
            "type": "string",
            "in": "query",
            "description": "UDI Barcode (RFID or other technology) string either in HRF format or AIDC format converted to base64 string."
          },
          {
            "name": "device-name",
            "type": "string",
            "in": "query",
            "description": "A server defined search that may match any of the string fields in the Device.udi.name  or Device.type.coding.display or  Device.type.text"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "The type of the device"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "Network address to contact device"
          },
          {
            "name": "manufacturer",
            "type": "string",
            "in": "query",
            "description": "The manufacturer of the device"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Patient information, if the resource is affixed to a person"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The organization responsible for the device"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "location",
            "type": "string",
            "in": "query",
            "description": "A location, where the resource is found"
          },
          {
            "name": "model",
            "type": "string",
            "in": "query",
            "description": "The model of the device"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "active | inactive | entered-in-error | unknown"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Device/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Device/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Device/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Device/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceComponent": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The identifier of the component"
          },
          {
            "name": "parent",
            "type": "string",
            "in": "query",
            "description": "The parent DeviceComponent resource"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "source",
            "type": "string",
            "in": "query",
            "description": "The device source"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "The device component type"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceComponent/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceComponent/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceComponent/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceComponent/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceMetric": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The identifier of the metric"
          },
          {
            "name": "parent",
            "type": "string",
            "in": "query",
            "description": "The parent DeviceMetric resource"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "source",
            "type": "string",
            "in": "query",
            "description": "The device resource"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "The component type"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "The category of the metric"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceMetric/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceMetric/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceMetric/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceMetric/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceRequest": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Code for what is being requested/ordered"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Individual the service is ordered for"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "group-identifier",
            "type": "string",
            "in": "query",
            "description": "Composite request this is part of"
          },
          {
            "name": "based-on",
            "type": "string",
            "in": "query",
            "description": "Plan/proposal/order fulfilled by this request"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Individual the service is ordered for"
          },
          {
            "name": "definition",
            "type": "string",
            "in": "query",
            "description": "Protocol or definition followed by this request"
          },
          {
            "name": "requester",
            "type": "string",
            "in": "query",
            "description": "Who/what is requesting service "
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Business identifier for request/order"
          },
          {
            "name": "performer",
            "type": "string",
            "in": "query",
            "description": "Desired performer for service"
          },
          {
            "name": "event-date",
            "type": "string",
            "in": "query",
            "description": "When service should occur",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Encounter or Episode during which request was created"
          },
          {
            "name": "authored-on",
            "type": "string",
            "in": "query",
            "description": "When the request transitioned to being actionable",
            "format": "date"
          },
          {
            "name": "intent",
            "type": "string",
            "in": "query",
            "description": "proposal | plan | original-order |reflex-order"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "priorrequest",
            "type": "string",
            "in": "query",
            "description": "Request takes the place of referenced completed or terminated requests"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "device",
            "type": "string",
            "in": "query",
            "description": "Reference to resource that is being requested/ordered"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "entered-in-error | draft | active |suspended | completed "
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceRequest/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceRequest/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceRequest/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceRequest/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceUseStatement": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Search by identifier"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Search by subject"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Search by subject - a patient"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "device",
            "type": "string",
            "in": "query",
            "description": "Search by device"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceUseStatement/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceUseStatement/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceUseStatement/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DeviceUseStatement/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DiagnosticReport": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The clinically relevant time of the report",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The subject of the report"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "result",
            "type": "string",
            "in": "query",
            "description": "Link to an atomic result (observation resource)"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "based-on",
            "type": "string",
            "in": "query",
            "description": "Reference to the procedure request."
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The subject of the report if a patient"
          },
          {
            "name": "specimen",
            "type": "string",
            "in": "query",
            "description": "The specimen details"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Healthcare event (Episode of Care or Encounter) related to the report"
          },
          {
            "name": "issued",
            "type": "string",
            "in": "query",
            "description": "When the report was issued",
            "format": "date"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "An identifier for the report"
          },
          {
            "name": "image",
            "type": "string",
            "in": "query",
            "description": "A reference to the image source."
          },
          {
            "name": "performer",
            "type": "string",
            "in": "query",
            "description": "Who was the source of the report (organization)"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "diagnosis",
            "type": "string",
            "in": "query",
            "description": "A coded diagnosis on the report"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "The Encounter when the order was made"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "Which diagnostic discipline/department created the report"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The status of the report"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DiagnosticReport/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DiagnosticReport/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DiagnosticReport/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DiagnosticReport/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DocumentManifest": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "content-ref",
            "type": "string",
            "in": "query",
            "description": "Contents of this set of documents"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The subject of the set of documents"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "Human-readable description (title)"
          },
          {
            "name": "source",
            "type": "string",
            "in": "query",
            "description": "The source system/application/software"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "Kind of document set"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The subject of the set of documents"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Unique Identifier for the set of documents"
          },
          {
            "name": "related-id",
            "type": "string",
            "in": "query",
            "description": "Identifiers of things that are related"
          },
          {
            "name": "author",
            "type": "string",
            "in": "query",
            "description": "Who and/or what authored the manifest"
          },
          {
            "name": "created",
            "type": "string",
            "in": "query",
            "description": "When this document manifest created",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "related-ref",
            "type": "string",
            "in": "query",
            "description": "Related Resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "recipient",
            "type": "string",
            "in": "query",
            "description": "Intended to get notified about this set of documents"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "current | superseded | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DocumentManifest/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DocumentManifest/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DocumentManifest/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DocumentManifest/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DocumentReference": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "securitylabel",
            "type": "string",
            "in": "query",
            "description": "Document security-tags"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Who/what is the subject of the document"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "Human-readable description (title)"
          },
          {
            "name": "language",
            "type": "string",
            "in": "query",
            "description": "Human language of the content (BCP-47)"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "Kind of document (LOINC if possible)"
          },
          {
            "name": "relation",
            "type": "string",
            "in": "query",
            "description": "replaces | transforms | signs | appends"
          },
          {
            "name": "setting",
            "type": "string",
            "in": "query",
            "description": "Additional details about where the content was created (e.g. clinical specialty)"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who/what is the subject of the document"
          },
          {
            "name": "event",
            "type": "string",
            "in": "query",
            "description": "Main clinical acts documented"
          },
          {
            "name": "relationship",
            "type": "string",
            "in": "query",
            "description": "Combination of relation and relatesTo"
          },
          {
            "name": "authenticator",
            "type": "string",
            "in": "query",
            "description": "Who/what authenticated the document"
          },
          {
            "name": "class",
            "type": "string",
            "in": "query",
            "description": "Categorization of document"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Master Version Specific Identifier"
          },
          {
            "name": "period",
            "type": "string",
            "in": "query",
            "description": "Time of service that is being documented",
            "format": "date"
          },
          {
            "name": "related-id",
            "type": "string",
            "in": "query",
            "description": "Identifier of related objects or events"
          },
          {
            "name": "custodian",
            "type": "string",
            "in": "query",
            "description": "Organization which maintains the document"
          },
          {
            "name": "indexed",
            "type": "string",
            "in": "query",
            "description": "When this document reference was created",
            "format": "date"
          },
          {
            "name": "author",
            "type": "string",
            "in": "query",
            "description": "Who and/or what authored the document"
          },
          {
            "name": "created",
            "type": "string",
            "in": "query",
            "description": "Document creation time",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "format",
            "type": "string",
            "in": "query",
            "description": "Format/content rules for the document"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Context of the document  content"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "related-ref",
            "type": "string",
            "in": "query",
            "description": "Related Resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "location",
            "type": "string",
            "in": "query",
            "description": "Uri where the data can be found"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "relatesto",
            "type": "string",
            "in": "query",
            "description": "Target of the relationship"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "facility",
            "type": "string",
            "in": "query",
            "description": "Kind of facility where patient was seen"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "current | superseded | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DocumentReference/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DocumentReference/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DocumentReference/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/DocumentReference/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EligibilityRequest": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The business identifier of the Eligibility"
          },
          {
            "name": "created",
            "type": "string",
            "in": "query",
            "description": "The creation date for the EOB",
            "format": "date"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "provider",
            "type": "string",
            "in": "query",
            "description": "The reference to the provider"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The reference to the patient"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The reference to the providing organization"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "enterer",
            "type": "string",
            "in": "query",
            "description": "The party who is responsible for the request"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "facility",
            "type": "string",
            "in": "query",
            "description": "Facility responsible for the goods and services"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EligibilityRequest/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EligibilityRequest/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EligibilityRequest/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EligibilityRequest/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EligibilityResponse": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The business identifier"
          },
          {
            "name": "request",
            "type": "string",
            "in": "query",
            "description": "The EligibilityRequest reference"
          },
          {
            "name": "created",
            "type": "string",
            "in": "query",
            "description": "The creation date",
            "format": "date"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "request-organization",
            "type": "string",
            "in": "query",
            "description": "The EligibilityRequest organization"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "disposition",
            "type": "string",
            "in": "query",
            "description": "The contents of the disposition message"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "insurer",
            "type": "string",
            "in": "query",
            "description": "The organization which generated this resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "request-provider",
            "type": "string",
            "in": "query",
            "description": "The EligibilityRequest provider"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "outcome",
            "type": "string",
            "in": "query",
            "description": "The processing outcome"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EligibilityResponse/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EligibilityResponse/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EligibilityResponse/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EligibilityResponse/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Encounter": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "A date within the period the Encounter lasted",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "reason",
            "type": "string",
            "in": "query",
            "description": "Reason the encounter takes place (code)"
          },
          {
            "name": "episodeofcare",
            "type": "string",
            "in": "query",
            "description": "Episode(s) of care that this encounter should be recorded against"
          },
          {
            "name": "participant-type",
            "type": "string",
            "in": "query",
            "description": "Role of participant in encounter"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The patient ro group present at the encounter"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "appointment",
            "type": "string",
            "in": "query",
            "description": "The appointment that scheduled this encounter"
          },
          {
            "name": "part-of",
            "type": "string",
            "in": "query",
            "description": "Another Encounter this encounter is part of"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "Specific type of encounter"
          },
          {
            "name": "participant",
            "type": "string",
            "in": "query",
            "description": "Persons involved in the encounter other than the patient"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The patient ro group present at the encounter"
          },
          {
            "name": "location-period",
            "type": "string",
            "in": "query",
            "description": "Time period during which the patient was present at the location",
            "format": "date"
          },
          {
            "name": "special-arrangement",
            "type": "string",
            "in": "query",
            "description": "Wheelchair, translator, stretcher, etc."
          },
          {
            "name": "class",
            "type": "string",
            "in": "query",
            "description": "inpatient | outpatient | ambulatory | emergency +"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Identifier(s) by which this encounter is known"
          },
          {
            "name": "incomingreferral",
            "type": "string",
            "in": "query",
            "description": "The ReferralRequest that initiated this encounter"
          },
          {
            "name": "practitioner",
            "type": "string",
            "in": "query",
            "description": "Persons involved in the encounter other than the patient"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "length",
            "type": "string",
            "in": "query",
            "description": "Length of encounter in days"
          },
          {
            "name": "diagnosis",
            "type": "string",
            "in": "query",
            "description": "Reason the encounter takes place (resource)"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "location",
            "type": "string",
            "in": "query",
            "description": "Location the encounter takes place"
          },
          {
            "name": "service-provider",
            "type": "string",
            "in": "query",
            "description": "The custodian organization of this Encounter record"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "planned | arrived | triaged | in-progress | onleave | finished | cancelled +"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Encounter/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Encounter/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Encounter/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Encounter/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Endpoint": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Identifies this endpoint across multiple systems"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "payload-type",
            "type": "string",
            "in": "query",
            "description": "The type of content that may be used at this endpoint (e.g. XDS Discharge summaries)"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "connection-type",
            "type": "string",
            "in": "query",
            "description": "Protocol/Profile/Standard to be used with this endpoint connection"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The organization that is managing the endpoint"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "A name that this endpoint can be identified by"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the Endpoint (usually expected to be active)"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Endpoint/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Endpoint/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Endpoint/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Endpoint/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EnrollmentRequest": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The business identifier of the Enrollment"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The party to be enrolled"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The party to be enrolled"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The organization who generated this resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EnrollmentRequest/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EnrollmentRequest/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EnrollmentRequest/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EnrollmentRequest/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EnrollmentResponse": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The business identifier of the EnrollmentResponse"
          },
          {
            "name": "request",
            "type": "string",
            "in": "query",
            "description": "The reference to the claim"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The organization who generated this resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EnrollmentResponse/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EnrollmentResponse/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EnrollmentResponse/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EnrollmentResponse/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EpisodeOfCare": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The provided date search value falls within the episode of care's period",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Business Identifier(s) relevant for this EpisodeOfCare"
          },
          {
            "name": "incomingreferral",
            "type": "string",
            "in": "query",
            "description": "Incoming Referral Request"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "Type/class  - e.g. specialist referral, disease management"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "condition",
            "type": "string",
            "in": "query",
            "description": "Conditions/problems/diagnoses this episode of care is for"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The patient who is the focus of this episode of care"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The organization that has assumed the specific responsibilities of this EpisodeOfCare"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "care-manager",
            "type": "string",
            "in": "query",
            "description": "Care manager/care co-ordinator for the patient"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the Episode of Care as provided (does not check the status history collection)"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EpisodeOfCare/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EpisodeOfCare/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EpisodeOfCare/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/EpisodeOfCare/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ExpansionProfile": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The expansion profile publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the expansion profile"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the expansion profile"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the expansion profile"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the expansion profile"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the expansion profile"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the expansion profile"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the expansion profile"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the expansion profile"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ExpansionProfile/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ExpansionProfile/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ExpansionProfile/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ExpansionProfile/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ExplanationOfBenefit": {
      "get": {
        "parameters": [
          {
            "name": "care-team",
            "type": "string",
            "in": "query",
            "description": "Member of the CareTeam"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "payee",
            "type": "string",
            "in": "query",
            "description": "The party receiving any payment for the Claim"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "provider",
            "type": "string",
            "in": "query",
            "description": "The reference to the provider"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The reference to the patient"
          },
          {
            "name": "claim",
            "type": "string",
            "in": "query",
            "description": "The reference to the claim"
          },
          {
            "name": "enterer",
            "type": "string",
            "in": "query",
            "description": "The party responsible for the entry of the Claim"
          },
          {
            "name": "coverage",
            "type": "string",
            "in": "query",
            "description": "The plan under which the claim was adjudicated"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The business identifier of the Explanation of Benefit"
          },
          {
            "name": "created",
            "type": "string",
            "in": "query",
            "description": "The creation date for the EOB",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Encounters associated with a billed line item"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "disposition",
            "type": "string",
            "in": "query",
            "description": "The contents of the disposition message"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The reference to the providing organization"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "facility",
            "type": "string",
            "in": "query",
            "description": "Facility responsible for the goods and services"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ExplanationOfBenefit/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ExplanationOfBenefit/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ExplanationOfBenefit/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ExplanationOfBenefit/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/FamilyMemberHistory": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "When history was captured/updated",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "A search by a record identifier"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "A search by a condition code"
          },
          {
            "name": "gender",
            "type": "string",
            "in": "query",
            "description": "A search by a gender code of a family member"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The identity of a subject to list family member history items for"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "definition",
            "type": "string",
            "in": "query",
            "description": "Instantiates protocol or definition"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "relationship",
            "type": "string",
            "in": "query",
            "description": "A search by a relationship type"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "partial | completed | entered-in-error | health-unknown"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/FamilyMemberHistory/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/FamilyMemberHistory/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/FamilyMemberHistory/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/FamilyMemberHistory/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Flag": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Time period when flag is active",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Business identifier"
          },
          {
            "name": "author",
            "type": "string",
            "in": "query",
            "description": "Flag creator"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The identity of a subject to list flags for"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Alert relevant during encounter"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The identity of a subject to list flags for"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Flag/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Flag/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Flag/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Flag/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Goal": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External Ids for this goal"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Who this goal is intended for"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "start-date",
            "type": "string",
            "in": "query",
            "description": "When goal pursuit begins",
            "format": "date"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who this goal is intended for"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "E.g. Treatment, dietary, behavioral, etc."
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "target-date",
            "type": "string",
            "in": "query",
            "description": "Reach goal on or before",
            "format": "date"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "proposed | accepted | planned | in-progress | on-target | ahead-of-target | behind-target | sustaining | achieved | on-hold | cancelled | entered-in-error | rejected"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Goal/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Goal/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Goal/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Goal/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/GraphDefinition": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The graph definition publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the graph definition"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "start",
            "type": "string",
            "in": "query",
            "description": "Type of resource at which the graph starts"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the graph definition"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the graph definition"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the graph definition"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the graph definition"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the graph definition"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the graph definition"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/GraphDefinition/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/GraphDefinition/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/GraphDefinition/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/GraphDefinition/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Group": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "actual",
            "type": "string",
            "in": "query",
            "description": "Descriptive or actual"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Unique id"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "The kind of resources contained"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "The type of resources the group contains"
          },
          {
            "name": "characteristic",
            "type": "string",
            "in": "query",
            "description": "Kind of characteristic"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "characteristic-value",
            "type": "string",
            "in": "query",
            "description": "A composite of both characteristic and value"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "member",
            "type": "string",
            "in": "query",
            "description": "Reference to the group member"
          },
          {
            "name": "exclude",
            "type": "string",
            "in": "query",
            "description": "Group includes or excludes"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "value",
            "type": "string",
            "in": "query",
            "description": "Value held by characteristic"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Group/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Group/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Group/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Group/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/GuidanceResponse": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The identifier of the guidance response"
          },
          {
            "name": "request",
            "type": "string",
            "in": "query",
            "description": "The identifier of the request associated with the response"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The subject that the guidance response is about"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The identity of a patient to search for guidance response results"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/GuidanceResponse/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/GuidanceResponse/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/GuidanceResponse/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/GuidanceResponse/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/HealthcareService": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifiers for this item"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "programname",
            "type": "string",
            "in": "query",
            "description": "One of the Program Names serviced by this HealthcareService"
          },
          {
            "name": "active",
            "type": "string",
            "in": "query",
            "description": "The Healthcare Service is currently marked as active"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "The type of service provided by this healthcare service"
          },
          {
            "name": "characteristic",
            "type": "string",
            "in": "query",
            "description": "One of the HealthcareService's characteristics"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "endpoint",
            "type": "string",
            "in": "query",
            "description": "Technical endpoints providing access to services operated for the location"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The organization that provides this Healthcare Service"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "A portion of the Healthcare service name"
          },
          {
            "name": "location",
            "type": "string",
            "in": "query",
            "description": "The location of the Healthcare Service"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "Service Category of the Healthcare Service"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/HealthcareService/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/HealthcareService/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/HealthcareService/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/HealthcareService/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImagingManifest": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "UID of the ImagingManifest (or a DICOM Key Object Selection which it represents)"
          },
          {
            "name": "authoring-time",
            "type": "string",
            "in": "query",
            "description": "Time of the ImagingManifest (or a DICOM Key Object Selection which it represents) authoring",
            "format": "date"
          },
          {
            "name": "author",
            "type": "string",
            "in": "query",
            "description": "Author of the ImagingManifest (or a DICOM Key Object Selection which it represents)"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "imaging-study",
            "type": "string",
            "in": "query",
            "description": "ImagingStudy resource selected in the ImagingManifest (or a DICOM Key Object Selection which it represents)"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "endpoint",
            "type": "string",
            "in": "query",
            "description": "The endpoint for the study or series"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "selected-study",
            "type": "string",
            "in": "query",
            "description": "Study selected in the ImagingManifest (or a DICOM Key Object Selection which it represents)"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Subject of the ImagingManifest (or a DICOM Key Object Selection which it represents)"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImagingManifest/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImagingManifest/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImagingManifest/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImagingManifest/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImagingStudy": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "reason",
            "type": "string",
            "in": "query",
            "description": "The reason for the study"
          },
          {
            "name": "dicom-class",
            "type": "string",
            "in": "query",
            "description": "The type of the instance"
          },
          {
            "name": "study",
            "type": "string",
            "in": "query",
            "description": "The study identifier for the image"
          },
          {
            "name": "modality",
            "type": "string",
            "in": "query",
            "description": "The modality of the series"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "accession",
            "type": "string",
            "in": "query",
            "description": "The accession identifier for the study"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "uid",
            "type": "string",
            "in": "query",
            "description": "The instance unique identifier"
          },
          {
            "name": "endpoint",
            "type": "string",
            "in": "query",
            "description": "The endpoint for te study or series"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who the study is about"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "The context of the study"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Other identifiers for the Study"
          },
          {
            "name": "bodysite",
            "type": "string",
            "in": "query",
            "description": "The body site studied"
          },
          {
            "name": "performer",
            "type": "string",
            "in": "query",
            "description": "The person who performed the study"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "started",
            "type": "string",
            "in": "query",
            "description": "When the study was started",
            "format": "date"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "series",
            "type": "string",
            "in": "query",
            "description": "The identifier of the series of images"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "basedon",
            "type": "string",
            "in": "query",
            "description": "The order for the image"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImagingStudy/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImagingStudy/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImagingStudy/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImagingStudy/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Immunization": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Vaccination  (non)-Administration Date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "reason",
            "type": "string",
            "in": "query",
            "description": "Why immunization occurred"
          },
          {
            "name": "lot-number",
            "type": "string",
            "in": "query",
            "description": "Vaccine Lot Number"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "manufacturer",
            "type": "string",
            "in": "query",
            "description": "Vaccine Manufacturer"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "dose-sequence",
            "type": "string",
            "in": "query",
            "description": "Dose number within series"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The patient for the vaccination record"
          },
          {
            "name": "reason-not-given",
            "type": "string",
            "in": "query",
            "description": "Explanation of reason vaccination was not administered"
          },
          {
            "name": "reaction-date",
            "type": "string",
            "in": "query",
            "description": "When reaction started",
            "format": "date"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Business identifier"
          },
          {
            "name": "reaction",
            "type": "string",
            "in": "query",
            "description": "Additional information on reaction"
          },
          {
            "name": "practitioner",
            "type": "string",
            "in": "query",
            "description": "The practitioner who played a role in the vaccination"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "notgiven",
            "type": "string",
            "in": "query",
            "description": "Administrations which were not given"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "vaccine-code",
            "type": "string",
            "in": "query",
            "description": "Vaccine Product Administered"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "location",
            "type": "string",
            "in": "query",
            "description": "The service delivery location or facility in which the vaccine was / was to be administered"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "Immunization event status"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Immunization/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Immunization/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Immunization/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Immunization/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImmunizationRecommendation": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Date recommendation created",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Business identifier"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "vaccine-type",
            "type": "string",
            "in": "query",
            "description": "Vaccine recommendation applies to"
          },
          {
            "name": "dose-number",
            "type": "string",
            "in": "query",
            "description": "Recommended dose number"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "dose-sequence",
            "type": "string",
            "in": "query",
            "description": "Dose number within sequence"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "target-disease",
            "type": "string",
            "in": "query",
            "description": "Disease to be immunized against"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who this profile is for"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "information",
            "type": "string",
            "in": "query",
            "description": "Patient observations supporting recommendation"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "support",
            "type": "string",
            "in": "query",
            "description": "Past immunizations supporting recommendation"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "Vaccine administration status"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImmunizationRecommendation/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImmunizationRecommendation/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImmunizationRecommendation/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImmunizationRecommendation/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImplementationGuide": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The implementation guide publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "dependency",
            "type": "string",
            "in": "query",
            "description": "Where to find dependency"
          },
          {
            "name": "resource",
            "type": "string",
            "in": "query",
            "description": "Location of the resource"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the implementation guide"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the implementation guide"
          },
          {
            "name": "experimental",
            "type": "string",
            "in": "query",
            "description": "For testing purposes, not real usage"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the implementation guide"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the implementation guide"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the implementation guide"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the implementation guide"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the implementation guide"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImplementationGuide/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImplementationGuide/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImplementationGuide/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ImplementationGuide/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Library": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The library publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "successor",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the library"
          },
          {
            "name": "derived-from",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the library"
          },
          {
            "name": "predecessor",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "composed-of",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the library"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "depends-on",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "effective",
            "type": "string",
            "in": "query",
            "description": "The time during which the library is intended to be in use",
            "format": "date"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the library"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the library"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the library"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the library"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the library"
          },
          {
            "name": "topic",
            "type": "string",
            "in": "query",
            "description": "Topics associated with the module"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the library"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Library/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Library/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Library/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Library/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Linkage": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "item",
            "type": "string",
            "in": "query",
            "description": "Matches on any item in the Linkage"
          },
          {
            "name": "author",
            "type": "string",
            "in": "query",
            "description": "Author of the Linkage"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "source",
            "type": "string",
            "in": "query",
            "description": "Matches on any item in the Linkage with a type of 'source'"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Linkage/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Linkage/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Linkage/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Linkage/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/List": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "When the list was prepared",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Business identifier"
          },
          {
            "name": "empty-reason",
            "type": "string",
            "in": "query",
            "description": "Why list is empty"
          },
          {
            "name": "item",
            "type": "string",
            "in": "query",
            "description": "Actual entry"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "What the purpose of this list is"
          },
          {
            "name": "notes",
            "type": "string",
            "in": "query",
            "description": "The annotation  - text content"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "If all resources have the same subject"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Context in which list created"
          },
          {
            "name": "source",
            "type": "string",
            "in": "query",
            "description": "Who and/or what defined the list contents (aka Author)"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "Descriptive name for the list"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "If all resources have the same subject"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "current | retired | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/List/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/List/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/List/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/List/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Location": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "near-distance",
            "type": "string",
            "in": "query",
            "description": "A distance quantity to limit the near search to locations within a specific distance\n\nRequires the near parameter to also be included"
          },
          {
            "name": "address-state",
            "type": "string",
            "in": "query",
            "description": "A state specified in an address"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "operational-status",
            "type": "string",
            "in": "query",
            "description": "Searches for locations (typically bed/room) that have an operational status (e.g. contaminated, housekeeping)"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "A code for the type of location"
          },
          {
            "name": "address-country",
            "type": "string",
            "in": "query",
            "description": "A country specified in an address"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "endpoint",
            "type": "string",
            "in": "query",
            "description": "Technical endpoints providing access to services operated for the location"
          },
          {
            "name": "near",
            "type": "string",
            "in": "query",
            "description": "The coordinates expressed as [latitude]:[longitude] (using the WGS84 datum, see notes) to find locations near to (servers may search using a square rather than a circle for efficiency)\n\nRequires the near-distance parameter to be provided also"
          },
          {
            "name": "address-city",
            "type": "string",
            "in": "query",
            "description": "A city specified in an address"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "An identifier for the location"
          },
          {
            "name": "partof",
            "type": "string",
            "in": "query",
            "description": "A location of which this location is a part"
          },
          {
            "name": "address",
            "type": "string",
            "in": "query",
            "description": "A (part of the) address of the location"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "address-postalcode",
            "type": "string",
            "in": "query",
            "description": "A postal code specified in an address"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "Searches for locations that are managed by the provided organization"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "address-use",
            "type": "string",
            "in": "query",
            "description": "A use code specified in an address"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "A portion of the location's name or alias"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "Searches for locations with a specific kind of status"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Location/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Location/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Location/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Location/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Measure": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The measure publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "successor",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the measure"
          },
          {
            "name": "derived-from",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the measure"
          },
          {
            "name": "predecessor",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "composed-of",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the measure"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "depends-on",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "effective",
            "type": "string",
            "in": "query",
            "description": "The time during which the measure is intended to be in use",
            "format": "date"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the measure"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the measure"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the measure"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the measure"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the measure"
          },
          {
            "name": "topic",
            "type": "string",
            "in": "query",
            "description": "Topics associated with the module"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the measure"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Measure/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Measure/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Measure/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Measure/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MeasureReport": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier of the measure report to be returned"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The identity of a patient to search for individual measure report results for"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The status of the measure report"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MeasureReport/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MeasureReport/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MeasureReport/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MeasureReport/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Media": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "When Media was collected",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Who/What this Media is a record of"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "photo | video | audio"
          },
          {
            "name": "operator",
            "type": "string",
            "in": "query",
            "description": "The person who generated the image"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "view",
            "type": "string",
            "in": "query",
            "description": "Imaging view, e.g. Lateral or Antero-posterior"
          },
          {
            "name": "based-on",
            "type": "string",
            "in": "query",
            "description": "Procedure that caused this media to be created"
          },
          {
            "name": "subtype",
            "type": "string",
            "in": "query",
            "description": "The type of acquisition equipment/process"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who/What this Media is a record of"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Encounter / Episode associated with media"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Identifier(s) for the image"
          },
          {
            "name": "created",
            "type": "string",
            "in": "query",
            "description": "Date attachment was first created",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "site",
            "type": "string",
            "in": "query",
            "description": "Body part in media"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "device",
            "type": "string",
            "in": "query",
            "description": "Observing Device"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Media/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Media/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Media/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Media/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Medication": {
      "get": {
        "parameters": [
          {
            "name": "container",
            "type": "string",
            "in": "query",
            "description": "E.g. box, vial, blister-pack"
          },
          {
            "name": "package-item",
            "type": "string",
            "in": "query",
            "description": "The item in the package"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Codes that identify this medication"
          },
          {
            "name": "ingredient",
            "type": "string",
            "in": "query",
            "description": "The product contained"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "manufacturer",
            "type": "string",
            "in": "query",
            "description": "Manufacturer of the item"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "ingredient-code",
            "type": "string",
            "in": "query",
            "description": "The product contained"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "form",
            "type": "string",
            "in": "query",
            "description": "powder | tablets | capsule +"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "package-item-code",
            "type": "string",
            "in": "query",
            "description": "The item in the package"
          },
          {
            "name": "over-the-counter",
            "type": "string",
            "in": "query",
            "description": "True if medication does not require a prescription"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "active | inactive | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Medication/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Medication/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Medication/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Medication/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationAdministration": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Return administrations of this medication code"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The identify of the individual or group to list administrations for"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "not-given",
            "type": "string",
            "in": "query",
            "description": "Administrations that were not made"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "effective-time",
            "type": "string",
            "in": "query",
            "description": "Date administration happened (or did not happen)",
            "format": "date"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The identity of a patient to list administrations  for"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Return administrations that share this encounter or episode of care"
          },
          {
            "name": "reason-not-given",
            "type": "string",
            "in": "query",
            "description": "Reasons for not administering the medication"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Return administrations with this external identifier"
          },
          {
            "name": "performer",
            "type": "string",
            "in": "query",
            "description": "The identify of the individual who administered the medication"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "medication",
            "type": "string",
            "in": "query",
            "description": "Return administrations of this medication resource"
          },
          {
            "name": "reason-given",
            "type": "string",
            "in": "query",
            "description": "Reasons for administering the medication"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "prescription",
            "type": "string",
            "in": "query",
            "description": "The identity of a prescription to list administrations from"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "device",
            "type": "string",
            "in": "query",
            "description": "Return administrations with this administration device identity"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "MedicationAdministration event status (for example one of active/paused/completed/nullified)"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationAdministration/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationAdministration/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationAdministration/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationAdministration/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationDispense": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Return dispenses of this medicine code"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The identity of a patient to list dispenses  for"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "destination",
            "type": "string",
            "in": "query",
            "description": "Return dispenses that should be sent to a specific destination"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "Return dispenses of a specific type"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The identity of a patient to list dispenses  for"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Returns dispenses with a specific context (episode or episode of care)"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Return dispenses with this external identifier"
          },
          {
            "name": "performer",
            "type": "string",
            "in": "query",
            "description": "Return dispenses performed by a specific individual"
          },
          {
            "name": "receiver",
            "type": "string",
            "in": "query",
            "description": "The identity of a receiver to list dispenses for"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "medication",
            "type": "string",
            "in": "query",
            "description": "Return dispenses of this medicine resource"
          },
          {
            "name": "responsibleparty",
            "type": "string",
            "in": "query",
            "description": "Return dispenses with the specified responsible party"
          },
          {
            "name": "whenhandedover",
            "type": "string",
            "in": "query",
            "description": "Returns dispenses handed over on this date",
            "format": "date"
          },
          {
            "name": "whenprepared",
            "type": "string",
            "in": "query",
            "description": "Returns dispenses prepared on this date",
            "format": "date"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "prescription",
            "type": "string",
            "in": "query",
            "description": "The identity of a prescription to list dispenses from"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "Return dispenses with a specified dispense status"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationDispense/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationDispense/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationDispense/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationDispense/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationRequest": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Returns medication request to be administered on a specific date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "authoredon",
            "type": "string",
            "in": "query",
            "description": "Return prescriptions written on this date",
            "format": "date"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Return prescriptions of this medication code"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The identity of a patient to list orders  for"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Returns prescriptions for a specific patient"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Return prescriptions with this encounter or episode of care identifier"
          },
          {
            "name": "requester",
            "type": "string",
            "in": "query",
            "description": "Returns prescriptions prescribed by this prescriber"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Return prescriptions with this external identifier"
          },
          {
            "name": "intended-dispenser",
            "type": "string",
            "in": "query",
            "description": "Returns prescriptions intended to be dispensed by this Organization"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "medication",
            "type": "string",
            "in": "query",
            "description": "Return prescriptions of this medication reference"
          },
          {
            "name": "priority",
            "type": "string",
            "in": "query",
            "description": "Returns prescriptions with different priorities"
          },
          {
            "name": "intent",
            "type": "string",
            "in": "query",
            "description": "Returns prescriptions with different intents"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "Returns prescriptions with different categories"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "Status of the prescription"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationRequest/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationRequest/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationRequest/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationRequest/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationStatement": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Return statements with this external identifier"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Return statements of this medication code"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The identity of a patient, animal or group to list statements for"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "medication",
            "type": "string",
            "in": "query",
            "description": "Return statements of this medication reference"
          },
          {
            "name": "part-of",
            "type": "string",
            "in": "query",
            "description": "Returns statements that are part of another event."
          },
          {
            "name": "source",
            "type": "string",
            "in": "query",
            "description": "Who or where the information in the statement came from"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "effective",
            "type": "string",
            "in": "query",
            "description": "Date when patient was taking (or not taking) the medication",
            "format": "date"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Returns statements for a specific patient."
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Returns statements for a specific context (episode or episode of Care)."
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "Returns statements of this category of medicationstatement"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "Return statements that match the given status"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationStatement/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationStatement/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationStatement/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MedicationStatement/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MessageDefinition": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The message definition publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the message definition"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the message definition"
          },
          {
            "name": "focus",
            "type": "string",
            "in": "query",
            "description": "A resource that is a permitted focus of the message"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the message definition"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "event",
            "type": "string",
            "in": "query",
            "description": "The event that triggers the message"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the message definition"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the message definition"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the message definition"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the message definition"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the message definition"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "The behavior associated with the message"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the message definition"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MessageDefinition/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MessageDefinition/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MessageDefinition/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MessageDefinition/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MessageHeader": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "ok | transient-error | fatal-error"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "destination",
            "type": "string",
            "in": "query",
            "description": "Name of system"
          },
          {
            "name": "focus",
            "type": "string",
            "in": "query",
            "description": "The actual content of the message"
          },
          {
            "name": "source",
            "type": "string",
            "in": "query",
            "description": "Name of system"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "source-uri",
            "type": "string",
            "in": "query",
            "description": "Actual message source address or id"
          },
          {
            "name": "responsible",
            "type": "string",
            "in": "query",
            "description": "Final responsibility for event"
          },
          {
            "name": "enterer",
            "type": "string",
            "in": "query",
            "description": "The source of the data entry"
          },
          {
            "name": "event",
            "type": "string",
            "in": "query",
            "description": "Code for the event this message represents"
          },
          {
            "name": "timestamp",
            "type": "string",
            "in": "query",
            "description": "Time that the message was sent",
            "format": "date"
          },
          {
            "name": "receiver",
            "type": "string",
            "in": "query",
            "description": "Intended \"real-world\" recipient for the data"
          },
          {
            "name": "author",
            "type": "string",
            "in": "query",
            "description": "The source of the decision"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "target",
            "type": "string",
            "in": "query",
            "description": "Particular delivery destination within the destination"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "destination-uri",
            "type": "string",
            "in": "query",
            "description": "Actual destination address or id"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "sender",
            "type": "string",
            "in": "query",
            "description": "Real world sender of the message"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "response-id",
            "type": "string",
            "in": "query",
            "description": "Id of original message"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MessageHeader/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MessageHeader/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MessageHeader/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/MessageHeader/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/NamingSystem": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The naming system publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the naming system"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the naming system"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "e.g. driver,  provider,  patient, bank etc."
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "contact",
            "type": "string",
            "in": "query",
            "description": "Name of an individual to contact"
          },
          {
            "name": "responsible",
            "type": "string",
            "in": "query",
            "description": "Who maintains system namespace?"
          },
          {
            "name": "telecom",
            "type": "string",
            "in": "query",
            "description": "Contact details for individual or organization"
          },
          {
            "name": "value",
            "type": "string",
            "in": "query",
            "description": "The unique identifier"
          },
          {
            "name": "period",
            "type": "string",
            "in": "query",
            "description": "When is identifier valid?",
            "format": "date"
          },
          {
            "name": "kind",
            "type": "string",
            "in": "query",
            "description": "codesystem | identifier | root"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "id-type",
            "type": "string",
            "in": "query",
            "description": "oid | uuid | uri | other"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the naming system"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the naming system"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "replaced-by",
            "type": "string",
            "in": "query",
            "description": "Use this instead"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the naming system"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/NamingSystem/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/NamingSystem/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/NamingSystem/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/NamingSystem/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/NutritionOrder": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Return nutrition orders with this external identifier"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Return nutrition orders with this encounter identifier"
          },
          {
            "name": "oraldiet",
            "type": "string",
            "in": "query",
            "description": "Type of diet that can be consumed orally (i.e., take via the mouth)."
          },
          {
            "name": "additive",
            "type": "string",
            "in": "query",
            "description": "Type of module component to add to the feeding"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "datetime",
            "type": "string",
            "in": "query",
            "description": "Return nutrition orders requested on this date",
            "format": "date"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "provider",
            "type": "string",
            "in": "query",
            "description": "The identify of the provider who placed the nutrition order"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The identity of the person who requires the diet, formula or nutritional supplement"
          },
          {
            "name": "supplement",
            "type": "string",
            "in": "query",
            "description": "Type of supplement product requested"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "formula",
            "type": "string",
            "in": "query",
            "description": "Type of enteral or infant formula"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "Status of the nutrition order."
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/NutritionOrder/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/NutritionOrder/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/NutritionOrder/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/NutritionOrder/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Observation": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Obtained date/time. If the obtained element is a period, a date that falls in the period",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The subject that the observation is about"
          },
          {
            "name": "value-concept",
            "type": "string",
            "in": "query",
            "description": "The value of the observation, if the value is a CodeableConcept"
          },
          {
            "name": "value-date",
            "type": "string",
            "in": "query",
            "description": "The value of the observation, if the value is a date or period of time",
            "format": "date"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "component-code-value-quantity",
            "type": "string",
            "in": "query",
            "description": "Component code and component quantity value parameter pair"
          },
          {
            "name": "code-value-date",
            "type": "string",
            "in": "query",
            "description": "Code and date/time value parameter pair"
          },
          {
            "name": "code-value-quantity",
            "type": "string",
            "in": "query",
            "description": "Code and quantity value parameter pair"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Healthcare event  (Episode-of-care or Encounter) related to the observation"
          },
          {
            "name": "combo-code-value-concept",
            "type": "string",
            "in": "query",
            "description": "Code and coded value parameter pair, including in components"
          },
          {
            "name": "value-string",
            "type": "string",
            "in": "query",
            "description": "The value of the observation, if the value is a string, and also searches in CodeableConcept.text"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The unique id for a particular observation"
          },
          {
            "name": "method",
            "type": "string",
            "in": "query",
            "description": "The method used for the observation"
          },
          {
            "name": "value-quantity",
            "type": "string",
            "in": "query",
            "description": "The value of the observation, if the value is a Quantity, or a SampledData (just search on the bounds of the values in sampled data)"
          },
          {
            "name": "combo-value-quantity",
            "type": "string",
            "in": "query",
            "description": "The value or component value of the observation, if the value is a Quantity, or a SampledData (just search on the bounds of the values in sampled data)"
          },
          {
            "name": "related-target",
            "type": "string",
            "in": "query",
            "description": "Resource that is related to this one"
          },
          {
            "name": "code-value-concept",
            "type": "string",
            "in": "query",
            "description": "Code and coded value parameter pair"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "device",
            "type": "string",
            "in": "query",
            "description": "The Device that generated the observation data."
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The status of the observation"
          },
          {
            "name": "combo-data-absent-reason",
            "type": "string",
            "in": "query",
            "description": "The reason why the expected value in the element Observation.value[x] or Observation.component.value[x] is missing."
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "The code of the observation type"
          },
          {
            "name": "combo-code-value-quantity",
            "type": "string",
            "in": "query",
            "description": "Code and quantity value parameter pair, including in components"
          },
          {
            "name": "component-data-absent-reason",
            "type": "string",
            "in": "query",
            "description": "The reason why the expected value in the element Observation.component.value[x] is missing."
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "code-value-string",
            "type": "string",
            "in": "query",
            "description": "Code and string value parameter pair"
          },
          {
            "name": "based-on",
            "type": "string",
            "in": "query",
            "description": "Reference to the test or procedure request."
          },
          {
            "name": "related",
            "type": "string",
            "in": "query",
            "description": "Related Observations - search on related-type and related-target together"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The subject that the observation is about (if patient)"
          },
          {
            "name": "specimen",
            "type": "string",
            "in": "query",
            "description": "Specimen used for this observation"
          },
          {
            "name": "component-code",
            "type": "string",
            "in": "query",
            "description": "The component code of the observation type"
          },
          {
            "name": "performer",
            "type": "string",
            "in": "query",
            "description": "Who performed the observation"
          },
          {
            "name": "combo-code",
            "type": "string",
            "in": "query",
            "description": "The code of the observation type or component type"
          },
          {
            "name": "component-value-quantity",
            "type": "string",
            "in": "query",
            "description": "The value of the component observation, if the value is a Quantity, or a SampledData (just search on the bounds of the values in sampled data)"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "data-absent-reason",
            "type": "string",
            "in": "query",
            "description": "The reason why the expected value in the element Observation.value[x] is missing."
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Encounter related to the observation"
          },
          {
            "name": "related-type",
            "type": "string",
            "in": "query",
            "description": "has-member | derived-from | sequel-to | replaces | qualified-by | interfered-by"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "component-code-value-concept",
            "type": "string",
            "in": "query",
            "description": "Component code and component coded value parameter pair"
          },
          {
            "name": "component-value-concept",
            "type": "string",
            "in": "query",
            "description": "The value of the component observation, if the value is a CodeableConcept"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "The classification of the type of observation"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "combo-value-concept",
            "type": "string",
            "in": "query",
            "description": "The value or component value of the observation, if the value is a CodeableConcept"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Observation/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Observation/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Observation/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Observation/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/OperationDefinition": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The operation definition publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Name used to invoke the operation"
          },
          {
            "name": "instance",
            "type": "string",
            "in": "query",
            "description": "Invoke on an instance?"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the operation definition"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the operation definition"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "Invole at the type level?"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "kind",
            "type": "string",
            "in": "query",
            "description": "operation | query"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the operation definition"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the operation definition"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "system",
            "type": "string",
            "in": "query",
            "description": "Invoke at the system level?"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the operation definition"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the operation definition"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "param-profile",
            "type": "string",
            "in": "query",
            "description": "Profile on the type"
          },
          {
            "name": "base",
            "type": "string",
            "in": "query",
            "description": "Marks this as a profile of the base"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the operation definition"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/OperationDefinition/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/OperationDefinition/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/OperationDefinition/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/OperationDefinition/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/OperationOutcome": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/OperationOutcome/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/OperationOutcome/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/OperationOutcome/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/OperationOutcome/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Organization": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "address-state",
            "type": "string",
            "in": "query",
            "description": "A state specified in an address"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "A code for the type of organization"
          },
          {
            "name": "address-country",
            "type": "string",
            "in": "query",
            "description": "A country specified in an address"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "endpoint",
            "type": "string",
            "in": "query",
            "description": "Technical endpoints providing access to services operated for the organization"
          },
          {
            "name": "phonetic",
            "type": "string",
            "in": "query",
            "description": "A portion of the organization's name using some kind of phonetic matching algorithm"
          },
          {
            "name": "address-city",
            "type": "string",
            "in": "query",
            "description": "A city specified in an address"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Any identifier for the organization (not the accreditation issuer's identifier)"
          },
          {
            "name": "partof",
            "type": "string",
            "in": "query",
            "description": "An organization of which this organization forms a part"
          },
          {
            "name": "address",
            "type": "string",
            "in": "query",
            "description": "A (part of the) address of the organization"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "active",
            "type": "string",
            "in": "query",
            "description": "A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text"
          },
          {
            "name": "address-postalcode",
            "type": "string",
            "in": "query",
            "description": "A postal code specified in an address"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "address-use",
            "type": "string",
            "in": "query",
            "description": "A use code specified in an address"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "A portion of the organization's name or alias"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Organization/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Organization/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Organization/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Organization/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Parameters": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Parameters/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Parameters/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Parameters/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Parameters/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Patient": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "birthdate",
            "type": "string",
            "in": "query",
            "description": "The patient's date of birth",
            "format": "date"
          },
          {
            "name": "deceased",
            "type": "string",
            "in": "query",
            "description": "This patient has been marked as deceased, or as a death date entered"
          },
          {
            "name": "address-state",
            "type": "string",
            "in": "query",
            "description": "A state specified in an address"
          },
          {
            "name": "gender",
            "type": "string",
            "in": "query",
            "description": "Gender of the patient"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "animal-species",
            "type": "string",
            "in": "query",
            "description": "The species for animal patients"
          },
          {
            "name": "link",
            "type": "string",
            "in": "query",
            "description": "All patients linked to the given patient"
          },
          {
            "name": "language",
            "type": "string",
            "in": "query",
            "description": "Language code (irrespective of use value)"
          },
          {
            "name": "animal-breed",
            "type": "string",
            "in": "query",
            "description": "The breed for animal patients"
          },
          {
            "name": "address-country",
            "type": "string",
            "in": "query",
            "description": "A country specified in an address"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "death-date",
            "type": "string",
            "in": "query",
            "description": "The date of death has been provided and satisfies this search value",
            "format": "date"
          },
          {
            "name": "phonetic",
            "type": "string",
            "in": "query",
            "description": "A portion of either family or given name using some kind of phonetic matching algorithm"
          },
          {
            "name": "telecom",
            "type": "string",
            "in": "query",
            "description": "The value in any kind of telecom details of the patient"
          },
          {
            "name": "address-city",
            "type": "string",
            "in": "query",
            "description": "A city specified in an address"
          },
          {
            "name": "email",
            "type": "string",
            "in": "query",
            "description": "A value in an email contact"
          },
          {
            "name": "given",
            "type": "string",
            "in": "query",
            "description": "A portion of the given name of the patient"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "A patient identifier"
          },
          {
            "name": "address",
            "type": "string",
            "in": "query",
            "description": "A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text"
          },
          {
            "name": "general-practitioner",
            "type": "string",
            "in": "query",
            "description": "Patient's nominated general practitioner, not the organization that manages the record"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "active",
            "type": "string",
            "in": "query",
            "description": "Whether the patient record is active"
          },
          {
            "name": "address-postalcode",
            "type": "string",
            "in": "query",
            "description": "A postalCode specified in an address"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "phone",
            "type": "string",
            "in": "query",
            "description": "A value in a phone contact"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The organization at which this person is a patient"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "address-use",
            "type": "string",
            "in": "query",
            "description": "A use code specified in an address"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "family",
            "type": "string",
            "in": "query",
            "description": "A portion of the family name of the patient"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Patient/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Patient/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Patient/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Patient/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PaymentNotice": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The business identifier of the notice"
          },
          {
            "name": "request",
            "type": "string",
            "in": "query",
            "description": "The Claim"
          },
          {
            "name": "created",
            "type": "string",
            "in": "query",
            "description": "Creation date fro the notice",
            "format": "date"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "payment-status",
            "type": "string",
            "in": "query",
            "description": "The type of payment notice"
          },
          {
            "name": "statusdate",
            "type": "string",
            "in": "query",
            "description": "The date of the payment action",
            "format": "date"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "provider",
            "type": "string",
            "in": "query",
            "description": "The reference to the provider"
          },
          {
            "name": "response",
            "type": "string",
            "in": "query",
            "description": "The ClaimResponse"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The organization who generated this resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PaymentNotice/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PaymentNotice/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PaymentNotice/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PaymentNotice/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PaymentReconciliation": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The business identifier of the Explanation of Benefit"
          },
          {
            "name": "request",
            "type": "string",
            "in": "query",
            "description": "The reference to the claim"
          },
          {
            "name": "created",
            "type": "string",
            "in": "query",
            "description": "The creation date",
            "format": "date"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "request-organization",
            "type": "string",
            "in": "query",
            "description": "The organization who generated this resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "disposition",
            "type": "string",
            "in": "query",
            "description": "The contents of the disposition message"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The organization who generated this resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "request-provider",
            "type": "string",
            "in": "query",
            "description": "The reference to the provider who sumbitted the claim"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "outcome",
            "type": "string",
            "in": "query",
            "description": "The processing outcome"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PaymentReconciliation/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PaymentReconciliation/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PaymentReconciliation/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PaymentReconciliation/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Person": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "birthdate",
            "type": "string",
            "in": "query",
            "description": "The person's date of birth",
            "format": "date"
          },
          {
            "name": "address-state",
            "type": "string",
            "in": "query",
            "description": "A state specified in an address"
          },
          {
            "name": "gender",
            "type": "string",
            "in": "query",
            "description": "The gender of the person"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "link",
            "type": "string",
            "in": "query",
            "description": "Any link has this Patient, Person, RelatedPerson or Practitioner reference"
          },
          {
            "name": "address-country",
            "type": "string",
            "in": "query",
            "description": "A country specified in an address"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "phonetic",
            "type": "string",
            "in": "query",
            "description": "A portion of name using some kind of phonetic matching algorithm"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The Person links to this Patient"
          },
          {
            "name": "telecom",
            "type": "string",
            "in": "query",
            "description": "The value in any kind of contact"
          },
          {
            "name": "address-city",
            "type": "string",
            "in": "query",
            "description": "A city specified in an address"
          },
          {
            "name": "email",
            "type": "string",
            "in": "query",
            "description": "A value in an email contact"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "A person Identifier"
          },
          {
            "name": "address",
            "type": "string",
            "in": "query",
            "description": "A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text"
          },
          {
            "name": "practitioner",
            "type": "string",
            "in": "query",
            "description": "The Person links to this Practitioner"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "relatedperson",
            "type": "string",
            "in": "query",
            "description": "The Person links to this RelatedPerson"
          },
          {
            "name": "address-postalcode",
            "type": "string",
            "in": "query",
            "description": "A postal code specified in an address"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "phone",
            "type": "string",
            "in": "query",
            "description": "A value in a phone contact"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The organization at which this person record is being managed"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "address-use",
            "type": "string",
            "in": "query",
            "description": "A use code specified in an address"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Person/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Person/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Person/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Person/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PlanDefinition": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The plan definition publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "successor",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the plan definition"
          },
          {
            "name": "derived-from",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the plan definition"
          },
          {
            "name": "predecessor",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "composed-of",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the plan definition"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "depends-on",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "effective",
            "type": "string",
            "in": "query",
            "description": "The time during which the plan definition is intended to be in use",
            "format": "date"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the plan definition"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the plan definition"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the plan definition"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the plan definition"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the plan definition"
          },
          {
            "name": "topic",
            "type": "string",
            "in": "query",
            "description": "Topics associated with the module"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the plan definition"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PlanDefinition/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PlanDefinition/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PlanDefinition/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PlanDefinition/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Practitioner": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "address-state",
            "type": "string",
            "in": "query",
            "description": "A state specified in an address"
          },
          {
            "name": "gender",
            "type": "string",
            "in": "query",
            "description": "Gender of the practitioner"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "address-country",
            "type": "string",
            "in": "query",
            "description": "A country specified in an address"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "phonetic",
            "type": "string",
            "in": "query",
            "description": "A portion of either family or given name using some kind of phonetic matching algorithm"
          },
          {
            "name": "telecom",
            "type": "string",
            "in": "query",
            "description": "The value in any kind of contact"
          },
          {
            "name": "address-city",
            "type": "string",
            "in": "query",
            "description": "A city specified in an address"
          },
          {
            "name": "communication",
            "type": "string",
            "in": "query",
            "description": "One of the languages that the practitioner can communicate with"
          },
          {
            "name": "email",
            "type": "string",
            "in": "query",
            "description": "A value in an email contact"
          },
          {
            "name": "given",
            "type": "string",
            "in": "query",
            "description": "A portion of the given name"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "A practitioner's Identifier"
          },
          {
            "name": "address",
            "type": "string",
            "in": "query",
            "description": "A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "active",
            "type": "string",
            "in": "query",
            "description": "Whether the practitioner record is active"
          },
          {
            "name": "address-postalcode",
            "type": "string",
            "in": "query",
            "description": "A postalCode specified in an address"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "phone",
            "type": "string",
            "in": "query",
            "description": "A value in a phone contact"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "address-use",
            "type": "string",
            "in": "query",
            "description": "A use code specified in an address"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "family",
            "type": "string",
            "in": "query",
            "description": "A portion of the family name"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Practitioner/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Practitioner/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Practitioner/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Practitioner/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PractitionerRole": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The period during which the practitioner is authorized to perform in these role(s)",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "specialty",
            "type": "string",
            "in": "query",
            "description": "The practitioner has this specialty at an organization"
          },
          {
            "name": "role",
            "type": "string",
            "in": "query",
            "description": "The practitioner can perform this role at for the organization"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "endpoint",
            "type": "string",
            "in": "query",
            "description": "Technical endpoints providing access to services operated for the practitioner with this role"
          },
          {
            "name": "telecom",
            "type": "string",
            "in": "query",
            "description": "The value in any kind of contact"
          },
          {
            "name": "email",
            "type": "string",
            "in": "query",
            "description": "A value in an email contact"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "A practitioner's Identifier"
          },
          {
            "name": "practitioner",
            "type": "string",
            "in": "query",
            "description": "Practitioner that is able to provide the defined services for the organation"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "active",
            "type": "string",
            "in": "query",
            "description": "Whether this practitioner's record is in active use"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "phone",
            "type": "string",
            "in": "query",
            "description": "A value in a phone contact"
          },
          {
            "name": "service",
            "type": "string",
            "in": "query",
            "description": "The list of healthcare services that this worker provides for this role's Organization/Location(s)"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The identity of the organization the practitioner represents / acts on behalf of"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "location",
            "type": "string",
            "in": "query",
            "description": "One of the locations at which this practitioner provides care"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PractitionerRole/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PractitionerRole/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PractitionerRole/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/PractitionerRole/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Procedure": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Date/Period the procedure was performed",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "A code to identify a  procedure"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Search by subject"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "part-of",
            "type": "string",
            "in": "query",
            "description": "Part of referenced event"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "based-on",
            "type": "string",
            "in": "query",
            "description": "A request for this procedure"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Search by subject - a patient"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Encounter or episode associated with the procedure"
          },
          {
            "name": "definition",
            "type": "string",
            "in": "query",
            "description": "Instantiates protocol or definition"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "A unique identifier for a procedure"
          },
          {
            "name": "performer",
            "type": "string",
            "in": "query",
            "description": "The reference to the practitioner"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Search by encounter"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "location",
            "type": "string",
            "in": "query",
            "description": "Where the procedure happened"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "Classification of the procedure"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "preparation | in-progress | suspended | aborted | completed | entered-in-error | unknown"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Procedure/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Procedure/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Procedure/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Procedure/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcedureRequest": {
      "get": {
        "parameters": [
          {
            "name": "authored",
            "type": "string",
            "in": "query",
            "description": "Date request signed",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "What is being requested/ordered"
          },
          {
            "name": "requisition",
            "type": "string",
            "in": "query",
            "description": "Composite Request ID"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Search by subject"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "occurrence",
            "type": "string",
            "in": "query",
            "description": "When procedure should occur",
            "format": "date"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "based-on",
            "type": "string",
            "in": "query",
            "description": "What request fulfills"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Search by subject - a patient"
          },
          {
            "name": "specimen",
            "type": "string",
            "in": "query",
            "description": "Specimen to be tested"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Encounter or Episode during which request was created"
          },
          {
            "name": "definition",
            "type": "string",
            "in": "query",
            "description": "Protocol or definition"
          },
          {
            "name": "requester",
            "type": "string",
            "in": "query",
            "description": "Individual making the request"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Identifiers assigned to this order"
          },
          {
            "name": "performer",
            "type": "string",
            "in": "query",
            "description": "Requested perfomer"
          },
          {
            "name": "replaces",
            "type": "string",
            "in": "query",
            "description": "What request replaces"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "An encounter in which this request is made"
          },
          {
            "name": "priority",
            "type": "string",
            "in": "query",
            "description": "routine | urgent | asap | stat"
          },
          {
            "name": "intent",
            "type": "string",
            "in": "query",
            "description": "proposal | plan | order +"
          },
          {
            "name": "performer-type",
            "type": "string",
            "in": "query",
            "description": "Performer role"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "body-site",
            "type": "string",
            "in": "query",
            "description": "Where procedure is going to be done"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "draft | active | suspended | completed | entered-in-error | cancelled"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcedureRequest/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcedureRequest/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcedureRequest/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcedureRequest/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcessRequest": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The business identifier of the ProcessRequest"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "provider",
            "type": "string",
            "in": "query",
            "description": "The provider who regenerated this request"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The organization who generated this request"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "action",
            "type": "string",
            "in": "query",
            "description": "The action requested by this resource"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcessRequest/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcessRequest/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcessRequest/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcessRequest/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcessResponse": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The business identifier of the Explanation of Benefit"
          },
          {
            "name": "request",
            "type": "string",
            "in": "query",
            "description": "The reference to the claim"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "request-organization",
            "type": "string",
            "in": "query",
            "description": "The Organization who is responsible the request transaction"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "The organization who generated this resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "request-provider",
            "type": "string",
            "in": "query",
            "description": "The Provider who is responsible the request transaction"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcessResponse/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcessResponse/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcessResponse/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ProcessResponse/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Provenance": {
      "get": {
        "parameters": [
          {
            "name": "entity-ref",
            "type": "string",
            "in": "query",
            "description": "Identity of entity"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "agent",
            "type": "string",
            "in": "query",
            "description": "Who participated"
          },
          {
            "name": "signature-type",
            "type": "string",
            "in": "query",
            "description": "Indication of the reason the entity signed the object(s)"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "start",
            "type": "string",
            "in": "query",
            "description": "Starting time with inclusive boundary",
            "format": "date"
          },
          {
            "name": "recorded",
            "type": "string",
            "in": "query",
            "description": "When the activity was recorded / updated",
            "format": "date"
          },
          {
            "name": "target",
            "type": "string",
            "in": "query",
            "description": "Target Reference(s) (usually version specific)"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Target Reference(s) (usually version specific)"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "end",
            "type": "string",
            "in": "query",
            "description": "End time with inclusive boundary, if not ongoing",
            "format": "date"
          },
          {
            "name": "location",
            "type": "string",
            "in": "query",
            "description": "Where the activity occurred, if relevant"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "agent-role",
            "type": "string",
            "in": "query",
            "description": "What the agents role was"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "entity-id",
            "type": "string",
            "in": "query",
            "description": "Identity of entity"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Provenance/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Provenance/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Provenance/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Provenance/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Questionnaire": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The questionnaire publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the questionnaire"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "A code that corresponds to one of its items in the questionnaire"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the questionnaire"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the questionnaire"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the questionnaire"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the questionnaire"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the questionnaire"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "effective",
            "type": "string",
            "in": "query",
            "description": "The time during which the questionnaire is intended to be in use",
            "format": "date"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the questionnaire"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the questionnaire"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the questionnaire"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Questionnaire/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Questionnaire/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Questionnaire/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Questionnaire/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/QuestionnaireResponse": {
      "get": {
        "parameters": [
          {
            "name": "authored",
            "type": "string",
            "in": "query",
            "description": "When the questionnaire response was last changed",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The unique identifier for the questionnaire response"
          },
          {
            "name": "parent",
            "type": "string",
            "in": "query",
            "description": "Procedure or observation this questionnaire response was performed as a part of"
          },
          {
            "name": "questionnaire",
            "type": "string",
            "in": "query",
            "description": "The questionnaire the answers are provided for"
          },
          {
            "name": "author",
            "type": "string",
            "in": "query",
            "description": "The author of the questionnaire response"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The subject of the questionnaire response"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "source",
            "type": "string",
            "in": "query",
            "description": "The individual providing the information reflected in the questionnaire respose"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "based-on",
            "type": "string",
            "in": "query",
            "description": "Plan/proposal/order fulfilled by this questionnaire response"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The patient that is the subject of the questionnaire response"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Encounter or episode associated with the questionnaire response"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The status of the questionnaire response"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/QuestionnaireResponse/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/QuestionnaireResponse/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/QuestionnaireResponse/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/QuestionnaireResponse/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ReferralRequest": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "specialty",
            "type": "string",
            "in": "query",
            "description": "The specialty that the referral is for"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Patient referred to care or transfer"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "The type of the referral"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "group-identifier",
            "type": "string",
            "in": "query",
            "description": "Part of common request"
          },
          {
            "name": "based-on",
            "type": "string",
            "in": "query",
            "description": "Request being fulfilled"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who the referral is about"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Part of encounter or episode of care"
          },
          {
            "name": "definition",
            "type": "string",
            "in": "query",
            "description": "Instantiates protocol or definition"
          },
          {
            "name": "requester",
            "type": "string",
            "in": "query",
            "description": "Individual making the request"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Business identifier"
          },
          {
            "name": "replaces",
            "type": "string",
            "in": "query",
            "description": "Request(s) replaced by this request"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Originating encounter"
          },
          {
            "name": "authored-on",
            "type": "string",
            "in": "query",
            "description": "Creation or activation date",
            "format": "date"
          },
          {
            "name": "priority",
            "type": "string",
            "in": "query",
            "description": "The priority assigned to the referral"
          },
          {
            "name": "intent",
            "type": "string",
            "in": "query",
            "description": "Proposal, plan or order"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "occurrence-date",
            "type": "string",
            "in": "query",
            "description": "When the service(s) requested in the referral should occur",
            "format": "date"
          },
          {
            "name": "service",
            "type": "string",
            "in": "query",
            "description": "Actions requested as part of the referral"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "recipient",
            "type": "string",
            "in": "query",
            "description": "The person that the referral was sent to"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The status of the referral"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ReferralRequest/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ReferralRequest/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ReferralRequest/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ReferralRequest/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RelatedPerson": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "birthdate",
            "type": "string",
            "in": "query",
            "description": "The Related Person's date of birth",
            "format": "date"
          },
          {
            "name": "address-state",
            "type": "string",
            "in": "query",
            "description": "A state specified in an address"
          },
          {
            "name": "gender",
            "type": "string",
            "in": "query",
            "description": "Gender of the related person"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "address-country",
            "type": "string",
            "in": "query",
            "description": "A country specified in an address"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "phonetic",
            "type": "string",
            "in": "query",
            "description": "A portion of name using some kind of phonetic matching algorithm"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The patient this related person is related to"
          },
          {
            "name": "telecom",
            "type": "string",
            "in": "query",
            "description": "The value in any kind of contact"
          },
          {
            "name": "address-city",
            "type": "string",
            "in": "query",
            "description": "A city specified in an address"
          },
          {
            "name": "email",
            "type": "string",
            "in": "query",
            "description": "A value in an email contact"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "An Identifier of the RelatedPerson"
          },
          {
            "name": "address",
            "type": "string",
            "in": "query",
            "description": "A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "active",
            "type": "string",
            "in": "query",
            "description": "Indicates if the related person record is active"
          },
          {
            "name": "address-postalcode",
            "type": "string",
            "in": "query",
            "description": "A postal code specified in an address"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "phone",
            "type": "string",
            "in": "query",
            "description": "A value in a phone contact"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "address-use",
            "type": "string",
            "in": "query",
            "description": "A use code specified in an address"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RelatedPerson/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RelatedPerson/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RelatedPerson/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RelatedPerson/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RequestGroup": {
      "get": {
        "parameters": [
          {
            "name": "authored",
            "type": "string",
            "in": "query",
            "description": "The date the request group was authored",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The subject that the request group is about"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "participant",
            "type": "string",
            "in": "query",
            "description": "The participant in the requests in the group"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "group-identifier",
            "type": "string",
            "in": "query",
            "description": "The group identifier for the request group"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The identity of a patient to search for request groups"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "The context the request group applies to"
          },
          {
            "name": "definition",
            "type": "string",
            "in": "query",
            "description": "The definition from which the request group is realized"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifiers for the request group"
          },
          {
            "name": "author",
            "type": "string",
            "in": "query",
            "description": "The author of the request group"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "The encounter the request group applies to"
          },
          {
            "name": "priority",
            "type": "string",
            "in": "query",
            "description": "The priority of the request group"
          },
          {
            "name": "intent",
            "type": "string",
            "in": "query",
            "description": "The intent of the request group"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The status of the request group"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RequestGroup/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RequestGroup/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RequestGroup/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RequestGroup/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ResearchStudy": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "When the study began and ended",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "sponsor",
            "type": "string",
            "in": "query",
            "description": "Organization responsible for the study"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Geographic region(s) for study"
          },
          {
            "name": "focus",
            "type": "string",
            "in": "query",
            "description": "Drugs, devices, conditions, etc. under study"
          },
          {
            "name": "principalinvestigator",
            "type": "string",
            "in": "query",
            "description": "The individual responsible for the study"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "Name for this study"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "protocol",
            "type": "string",
            "in": "query",
            "description": "Steps followed in executing study"
          },
          {
            "name": "keyword",
            "type": "string",
            "in": "query",
            "description": "Used to search for the study"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Business Identifier for study"
          },
          {
            "name": "partof",
            "type": "string",
            "in": "query",
            "description": "Part of larger study"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "site",
            "type": "string",
            "in": "query",
            "description": "Location involved in study execution"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "Classifications for the study"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "draft | in-progress | suspended | stopped | completed | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ResearchStudy/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ResearchStudy/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ResearchStudy/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ResearchStudy/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ResearchSubject": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Start and end of participation",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Business Identifier for research subject"
          },
          {
            "name": "individual",
            "type": "string",
            "in": "query",
            "description": "Who is part of study"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who is part of study"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "candidate | enrolled | active | suspended | withdrawn | completed"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ResearchSubject/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ResearchSubject/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ResearchSubject/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ResearchSubject/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RiskAssessment": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "When was assessment made?",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Unique identifier for the assessment"
          },
          {
            "name": "performer",
            "type": "string",
            "in": "query",
            "description": "Who did assessment?"
          },
          {
            "name": "method",
            "type": "string",
            "in": "query",
            "description": "Evaluation mechanism"
          },
          {
            "name": "probability",
            "type": "string",
            "in": "query",
            "description": "Likelihood of specified outcome"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Who/what does assessment apply to?"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Where was assessment performed?"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "condition",
            "type": "string",
            "in": "query",
            "description": "Condition assessed"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Who/what does assessment apply to?"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "risk",
            "type": "string",
            "in": "query",
            "description": "Likelihood of specified outcome as a qualitative value"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RiskAssessment/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RiskAssessment/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RiskAssessment/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/RiskAssessment/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Schedule": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "Search for Schedule resources that have a period that contains this date specified",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "A Schedule Identifier"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "active",
            "type": "string",
            "in": "query",
            "description": "Is the schedule in active use"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "The type of appointments that can be booked into associated slot(s)"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "actor",
            "type": "string",
            "in": "query",
            "description": "The individual(HealthcareService, Practitioner, Location, ...) to find a Schedule for"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Schedule/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Schedule/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Schedule/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Schedule/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SearchParameter": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The search parameter publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Code used in URL"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the search parameter"
          },
          {
            "name": "derived-from",
            "type": "string",
            "in": "query",
            "description": "Original Definition for the search parameter"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the search parameter"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "number | date | string | token | reference | composite | quantity | uri"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the search parameter"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the search parameter"
          },
          {
            "name": "target",
            "type": "string",
            "in": "query",
            "description": "Types of resource (if a resource reference)"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "component",
            "type": "string",
            "in": "query",
            "description": "Defines how the part works"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the search parameter"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the search parameter"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "base",
            "type": "string",
            "in": "query",
            "description": "The resource type(s) this search parameter applies to"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the search parameter"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SearchParameter/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SearchParameter/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SearchParameter/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SearchParameter/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Sequence": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The unique identity for a particular sequence"
          },
          {
            "name": "coordinate",
            "type": "string",
            "in": "query",
            "description": "Search parameter for region of the reference DNA sequence string. This will refer to part of a locus or part of a gene where search region will be represented in 1-based system. Since the coordinateSystem can either be 0-based or 1-based, this search query will include the result of both coordinateSystem that contains the equivalent segment of the gene or whole genome sequence. For example, a search for sequence can be represented as `coordinate=1$lt345$gt123`, this means it will search for the Sequence resource on chromosome 1 and with position >123 and <345, where in 1-based system resource, all strings within region 1:124-344 will be revealed, while in 0-based system resource, all strings within region 1:123-344 will be revealed. You may want to check detail about 0-based v.s. 1-based above."
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "chromosome",
            "type": "string",
            "in": "query",
            "description": "Chromosome number of the reference sequence"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "start",
            "type": "string",
            "in": "query",
            "description": "Start position (0-based inclusive, 1-based inclusive, that means the nucleic acid or amino acid at this position will be included) of the reference sequence."
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "Amino Acid Sequence/ DNA Sequence / RNA Sequence"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The subject that the observation is about"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "end",
            "type": "string",
            "in": "query",
            "description": "End position (0-based exclusive, which menas the acid at this position will not be included, 1-based inclusive, which means the acid at this position will be included) of the reference sequence."
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Sequence/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Sequence/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Sequence/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Sequence/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ServiceDefinition": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The service definition publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "successor",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the service definition"
          },
          {
            "name": "derived-from",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the service definition"
          },
          {
            "name": "predecessor",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "composed-of",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the service definition"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "depends-on",
            "type": "string",
            "in": "query",
            "description": "What resource is being referenced"
          },
          {
            "name": "effective",
            "type": "string",
            "in": "query",
            "description": "The time during which the service definition is intended to be in use",
            "format": "date"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the service definition"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the service definition"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the service definition"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the service definition"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the service definition"
          },
          {
            "name": "topic",
            "type": "string",
            "in": "query",
            "description": "Topics associated with the module"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the service definition"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ServiceDefinition/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ServiceDefinition/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ServiceDefinition/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ServiceDefinition/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Slot": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "A Slot Identifier"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "start",
            "type": "string",
            "in": "query",
            "description": "Appointment date/time.",
            "format": "date"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "schedule",
            "type": "string",
            "in": "query",
            "description": "The Schedule Resource that we are seeking a slot within"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "slot-type",
            "type": "string",
            "in": "query",
            "description": "The type of appointments that can be booked into the slot"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The free/busy status of the appointment"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Slot/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Slot/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Slot/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Slot/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Specimen": {
      "get": {
        "parameters": [
          {
            "name": "container",
            "type": "string",
            "in": "query",
            "description": "The kind of specimen container"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "container-id",
            "type": "string",
            "in": "query",
            "description": "The unique identifier associated with the specimen container"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "The unique identifier associated with the specimen"
          },
          {
            "name": "parent",
            "type": "string",
            "in": "query",
            "description": "The parent of the specimen"
          },
          {
            "name": "bodysite",
            "type": "string",
            "in": "query",
            "description": "The code for the body site from where the specimen originated"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "The subject of the specimen"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "collected",
            "type": "string",
            "in": "query",
            "description": "The date the specimen was collected",
            "format": "date"
          },
          {
            "name": "accession",
            "type": "string",
            "in": "query",
            "description": "The accession number associated with the specimen"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "The specimen type"
          },
          {
            "name": "collector",
            "type": "string",
            "in": "query",
            "description": "Who collected the specimen"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The patient the specimen comes from"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "available | unavailable | unsatisfactory | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Specimen/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Specimen/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Specimen/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Specimen/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/StructureDefinition": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The structure definition publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the structure definition"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the structure definition"
          },
          {
            "name": "context-type",
            "type": "string",
            "in": "query",
            "description": "resource | datatype | extension"
          },
          {
            "name": "experimental",
            "type": "string",
            "in": "query",
            "description": "For testing purposes, not real usage"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the structure definition"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "Type defined or constrained by this structure"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "path",
            "type": "string",
            "in": "query",
            "description": "A path that is constrained in the profile"
          },
          {
            "name": "base-path",
            "type": "string",
            "in": "query",
            "description": "Path that identifies the base element"
          },
          {
            "name": "keyword",
            "type": "string",
            "in": "query",
            "description": "A code for the profile"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the structure definition"
          },
          {
            "name": "valueset",
            "type": "string",
            "in": "query",
            "description": "A vocabulary binding reference"
          },
          {
            "name": "kind",
            "type": "string",
            "in": "query",
            "description": "primitive-type | complex-type | resource | logical"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "abstract",
            "type": "string",
            "in": "query",
            "description": "Whether the structure is abstract"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the structure definition"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the structure definition"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "ext-context",
            "type": "string",
            "in": "query",
            "description": "Where the extension can be used in instances"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the structure definition"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the structure definition"
          },
          {
            "name": "derivation",
            "type": "string",
            "in": "query",
            "description": "specialization | constraint - How relates to base definition"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "base",
            "type": "string",
            "in": "query",
            "description": "Definition that this type is constrained/specialized from"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the structure definition"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/StructureDefinition/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/StructureDefinition/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/StructureDefinition/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/StructureDefinition/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/StructureMap": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The structure map publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the structure map"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the structure map"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the structure map"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the structure map"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the structure map"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the structure map"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the structure map"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the structure map"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the structure map"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/StructureMap/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/StructureMap/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/StructureMap/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/StructureMap/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Subscription": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "criteria",
            "type": "string",
            "in": "query",
            "description": "The search rules used to determine when to send a notification"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "type",
            "type": "string",
            "in": "query",
            "description": "The type of channel for the sent notifications"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that will receive the notifications"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "payload",
            "type": "string",
            "in": "query",
            "description": "The mime-type of the notification payload"
          },
          {
            "name": "add-tag",
            "type": "string",
            "in": "query",
            "description": "A tag to be added to the resource matching the criteria"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "contact",
            "type": "string",
            "in": "query",
            "description": "Contact details for the subscription"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current state of the subscription"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Subscription/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Subscription/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Subscription/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Subscription/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Substance": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Unique identifier for the substance"
          },
          {
            "name": "container-identifier",
            "type": "string",
            "in": "query",
            "description": "Identifier of the package/container"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "The code of the substance or ingredient"
          },
          {
            "name": "quantity",
            "type": "integer",
            "in": "query",
            "description": "Amount of substance in the package"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "substance-reference",
            "type": "string",
            "in": "query",
            "description": "A component of the substance"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "expiry",
            "type": "string",
            "in": "query",
            "description": "Expiry date of package or container of substance",
            "format": "date"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "The category of the substance"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "active | inactive | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Substance/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Substance/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Substance/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Substance/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SupplyDelivery": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier"
          },
          {
            "name": "receiver",
            "type": "string",
            "in": "query",
            "description": "Who collected the Supply"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Patient for whom the item is supplied"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "supplier",
            "type": "string",
            "in": "query",
            "description": "Dispenser"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "in-progress | completed | abandoned | entered-in-error"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SupplyDelivery/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SupplyDelivery/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SupplyDelivery/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SupplyDelivery/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SupplyRequest": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "When the request was made",
            "format": "date"
          },
          {
            "name": "requester",
            "type": "string",
            "in": "query",
            "description": "Individual making the request"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Unique identifier"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "supplier",
            "type": "string",
            "in": "query",
            "description": "Who is intended to fulfill the request"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "category",
            "type": "string",
            "in": "query",
            "description": "The kind of supply (central, non-stock, etc.)"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "draft | active | suspended +"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SupplyRequest/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SupplyRequest/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SupplyRequest/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/SupplyRequest/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Task": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "code",
            "type": "string",
            "in": "query",
            "description": "Search by task code"
          },
          {
            "name": "subject",
            "type": "string",
            "in": "query",
            "description": "Search by subject"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "focus",
            "type": "string",
            "in": "query",
            "description": "Search by task focus"
          },
          {
            "name": "part-of",
            "type": "string",
            "in": "query",
            "description": "Search by task this task is part of"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "group-identifier",
            "type": "string",
            "in": "query",
            "description": "Search by group identifier"
          },
          {
            "name": "based-on",
            "type": "string",
            "in": "query",
            "description": "Search by requests this task is based on"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "Search by patient"
          },
          {
            "name": "context",
            "type": "string",
            "in": "query",
            "description": "Search by encounter or episode"
          },
          {
            "name": "modified",
            "type": "string",
            "in": "query",
            "description": "Search by last modification date",
            "format": "date"
          },
          {
            "name": "owner",
            "type": "string",
            "in": "query",
            "description": "Search by task owner"
          },
          {
            "name": "requester",
            "type": "string",
            "in": "query",
            "description": "Search by task requester"
          },
          {
            "name": "business-status",
            "type": "string",
            "in": "query",
            "description": "Search by business status"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Search for a task instance by its business identifier"
          },
          {
            "name": "period",
            "type": "string",
            "in": "query",
            "description": "Search by period Task is/was underway",
            "format": "date"
          },
          {
            "name": "performer",
            "type": "string",
            "in": "query",
            "description": "Search by recommended type of performer (e.g., Requester, Performer, Scheduler)."
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "authored-on",
            "type": "string",
            "in": "query",
            "description": "Search by creation date",
            "format": "date"
          },
          {
            "name": "priority",
            "type": "string",
            "in": "query",
            "description": "Search by task priority"
          },
          {
            "name": "intent",
            "type": "string",
            "in": "query",
            "description": "Search by task intent"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "organization",
            "type": "string",
            "in": "query",
            "description": "Search by responsible organization"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "Search by task status"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Task/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Task/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Task/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/Task/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/TestReport": {
      "get": {
        "parameters": [
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "An external identifier for the test report"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "tester",
            "type": "string",
            "in": "query",
            "description": "The name of the testing organization"
          },
          {
            "name": "participant",
            "type": "string",
            "in": "query",
            "description": "The reference to a participant in the test execution"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "result",
            "type": "string",
            "in": "query",
            "description": "The result disposition of the test execution"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "testscript",
            "type": "string",
            "in": "query",
            "description": "The test script executed to produce this report"
          },
          {
            "name": "issued",
            "type": "string",
            "in": "query",
            "description": "The test report generation date",
            "format": "date"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/TestReport/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/TestReport/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/TestReport/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/TestReport/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/TestScript": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The test script publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the test script"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the test script"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the test script"
          },
          {
            "name": "testscript-capability",
            "type": "string",
            "in": "query",
            "description": "TestScript required and validated capability"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the test script"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the test script"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the test script"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the test script"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the test script"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the test script"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/TestScript/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/TestScript/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/TestScript/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/TestScript/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ValueSet": {
      "get": {
        "parameters": [
          {
            "name": "date",
            "type": "string",
            "in": "query",
            "description": "The value set publication date",
            "format": "date"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "External identifier for the value set"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "jurisdiction",
            "type": "string",
            "in": "query",
            "description": "Intended jurisdiction for the value set"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "description",
            "type": "string",
            "in": "query",
            "description": "The description of the value set"
          },
          {
            "name": "title",
            "type": "string",
            "in": "query",
            "description": "The human-friendly name of the value set"
          },
          {
            "name": "version",
            "type": "string",
            "in": "query",
            "description": "The business version of the value set"
          },
          {
            "name": "url",
            "type": "string",
            "in": "query",
            "description": "The uri that identifies the value set"
          },
          {
            "name": "expansion",
            "type": "string",
            "in": "query",
            "description": "Uniquely identifies this expansion"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "reference",
            "type": "string",
            "in": "query",
            "description": "A code system included or excluded in the value set or an imported value set"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "name",
            "type": "string",
            "in": "query",
            "description": "Computationally friendly name of the value set"
          },
          {
            "name": "publisher",
            "type": "string",
            "in": "query",
            "description": "Name of the publisher of the value set"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "status",
            "type": "string",
            "in": "query",
            "description": "The current status of the value set"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ValueSet/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ValueSet/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ValueSet/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/ValueSet/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/VisionPrescription": {
      "get": {
        "parameters": [
          {
            "name": "prescriber",
            "type": "string",
            "in": "query",
            "description": "Who authorizes the vision product"
          },
          {
            "name": "_language",
            "type": "string",
            "in": "query",
            "description": "Language of the resource content"
          },
          {
            "name": "identifier",
            "type": "string",
            "in": "query",
            "description": "Return prescriptions with this external identifier"
          },
          {
            "name": "_lastUpdated",
            "type": "string",
            "in": "query",
            "description": "Only return resources which were last updated as specified by the given range",
            "format": "date"
          },
          {
            "name": "datewritten",
            "type": "string",
            "in": "query",
            "description": "Return prescriptions written on this date",
            "format": "date"
          },
          {
            "name": "_security",
            "type": "string",
            "in": "query",
            "description": "The security of the resource"
          },
          {
            "name": "encounter",
            "type": "string",
            "in": "query",
            "description": "Return prescriptions with this encounter identifier"
          },
          {
            "name": "_filter",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a filter"
          },
          {
            "name": "_list",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a list"
          },
          {
            "name": "_profile",
            "type": "string",
            "in": "query",
            "description": "The profile of the resource"
          },
          {
            "name": "patient",
            "type": "string",
            "in": "query",
            "description": "The identity of a patient to list dispenses for"
          },
          {
            "name": "_tag",
            "type": "string",
            "in": "query",
            "description": "The tag of the resource"
          },
          {
            "name": "_has",
            "type": "string",
            "in": "query",
            "description": "Return resources linked to by the given target"
          },
          {
            "name": "_source",
            "type": "string",
            "in": "query",
            "description": "Search for resources which have the given source value (Resource.meta.source)"
          },
          {
            "name": "_id",
            "type": "string",
            "in": "query",
            "description": "The ID of the resource"
          },
          {
            "name": "_content",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's data using a fulltext search"
          },
          {
            "name": "_text",
            "type": "string",
            "in": "query",
            "description": "Search the contents of the resource's narrative using a fulltext search"
          },
          {
            "name": "_format",
            "type": "string",
            "in": "query",
            "description": "Output formatting",
            "x-consoleDefault": "application/json"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "post": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/VisionPrescription/{id}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "put": {
        "parameters": [
          {
            "name": "body",
            "in": "body",
            "schema": {
              "type": "object"
            }
          },
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/VisionPrescription/{id}/_history/{vid}": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "vid",
            "type": "string",
            "in": "path",
            "description": "version id of resource",
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/VisionPrescription/{id}/_history": {
      "get": {
        "parameters": [
          {
            "name": "id",
            "type": "string",
            "in": "path",
            "description": "id of resource",
            "required": true
          },
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/VisionPrescription/_history": {
      "get": {
        "parameters": [
          {
            "name": "_count",
            "type": "string",
            "in": "query",
            "description": "number to return"
          },
          {
            "name": "_since",
            "type": "string",
            "in": "query",
            "description": "how far back"
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    }
  },
  "info": {
    "description": "HAPI FHIR Server",
    "title": "Not provided",
    "version": "3.0.2"
  },
  "schemes": [
    "http"
  ]
}