Medtech Connector Create

HealthcareFHIRDICOMMedTechIoMTHealth DataHIPAAHITRUSTCloudAzureMicrosoft

Medtech Connector Create is an example object payload from Microsoft Azure Health Data Services, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

locationtagsidentityproperties

Example Payload

Raw ↑
{
  "location": "eastus",
  "tags": {
    "environment": "production",
    "department": "remote-monitoring"
  },
  "identity": {
    "type": "SystemAssigned"
  },
  "properties": {
    "ingestionEndpointConfiguration": {
      "eventHubName": "health-device-events",
      "consumerGroup": "medtech-consumer",
      "fullyQualifiedEventHubNamespace": "myhealthdevices.servicebus.windows.net"
    },
    "deviceMapping": {
      "content": {
        "templateType": "CollectionContent",
        "template": [
          {
            "templateType": "JsonPathContent",
            "template": {
              "typeName": "heartRate",
              "typeMatchExpression": "$..[?(@heartRate)]",
              "deviceIdExpression": "$.deviceId",
              "timestampExpression": "$.endDate",
              "values": [
                {
                  "required": true,
                  "valueExpression": "$.heartRate",
                  "valueName": "hr"
                }
              ]
            }
          }
        ]
      }
    }
  }
}