Azure Functions · Schema

ContainerMemoryStatistics

ContainerMemoryStatistics schema from Azure Functions API

CloudComputeEvent-DrivenFunctionsServerless

Properties

Name Type Description
limit integer
maxUsage integer
usage integer
View JSON Schema on GitHub

JSON Schema

azure-functions-container-memory-statistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-functions/refs/heads/main/json-schema/azure-functions-container-memory-statistics-schema.json",
  "title": "ContainerMemoryStatistics",
  "description": "ContainerMemoryStatistics schema from Azure Functions API",
  "type": "object",
  "properties": {
    "limit": {
      "format": "int64",
      "type": "integer"
    },
    "maxUsage": {
      "format": "int64",
      "type": "integer"
    },
    "usage": {
      "format": "int64",
      "type": "integer"
    }
  }
}