Azure Functions · JSON Structure

Azure Functions Container Info Structure

ContainerInfo schema from Azure Functions API

Type: object Properties: 8
CloudComputeEvent-DrivenFunctionsServerless

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

Properties

currentCpuStats currentTimeStamp eth0 id memoryStats name previousCpuStats previousTimeStamp

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/azure-functions/refs/heads/main/json-structure/azure-functions-container-info-structure.json",
  "description": "ContainerInfo schema from Azure Functions API",
  "type": "object",
  "properties": {
    "currentCpuStats": {
      "$ref": "#/definitions/ContainerCpuStatistics"
    },
    "currentTimeStamp": {
      "format": "date-time",
      "type": "string"
    },
    "eth0": {
      "$ref": "#/definitions/ContainerNetworkInterfaceStatistics"
    },
    "id": {
      "type": "string"
    },
    "memoryStats": {
      "$ref": "#/definitions/ContainerMemoryStatistics"
    },
    "name": {
      "type": "string"
    },
    "previousCpuStats": {
      "$ref": "#/definitions/ContainerCpuStatistics"
    },
    "previousTimeStamp": {
      "format": "date-time",
      "type": "string"
    }
  },
  "name": "ContainerInfo"
}