Amazon HealthLake · JSON Structure

Healthlake Tag Structure

A tag is a label consisting of a user-defined key and value. The form for tags is {"Key", "Value"}

Type: object Properties: 2 Required: 2
FHIRHealth DataHealthcareHIPAACloud Computing

Tag is a JSON Structure definition published by Amazon HealthLake, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Key Value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthlake/refs/heads/main/json-schema/healthlake-tag-schema.json",
  "name": "Tag",
  "type": "object",
  "required": [
    "Key",
    "Value"
  ],
  "properties": {
    "Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKey"
        },
        {
          "description": " The key portion of a tag. Tag keys are case sensitive. "
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagValue"
        },
        {
          "description": " The value portion of a tag. Tag values are case sensitive. "
        }
      ]
    }
  },
  "description": " A tag is a label consisting of a user-defined key and value. The form for tags is {\"Key\", \"Value\"} "
}