Microsoft Azure Functions · JSON Structure

Azure Functions Host Keys Structure

Functions host level keys.

Type: object Properties: 3
AzureCloudComputeEvent-DrivenMicrosoftServerless

HostKeys is a JSON Structure definition published by Microsoft Azure Functions, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

masterKey functionKeys systemKeys

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/microsoft-azure-functions/refs/heads/main/json-structure/azure-functions-host-keys-structure.json",
  "name": "HostKeys",
  "description": "Functions host level keys.",
  "type": "object",
  "properties": {
    "masterKey": {
      "type": "string",
      "description": "Secret key."
    },
    "functionKeys": {
      "type": "object",
      "description": "Host level function keys.",
      "additionalProperties": {
        "type": "string"
      }
    },
    "systemKeys": {
      "type": "object",
      "description": "System keys.",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}