Azure Container Instances · JSON Structure

Azure Container Instances Container Http Get Structure

The container Http Get settings, for liveness or readiness probe

Type: object Properties: 3 Required: 1
AzureCloudContainer InstancesContainersMicrosoftServerless

ContainerHttpGet is a JSON Structure definition published by Azure Container Instances, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

path port scheme

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-container-instances/refs/heads/main/json-structure/azure-container-instances-container-http-get-structure.json",
  "description": "The container Http Get settings, for liveness or readiness probe",
  "type": "object",
  "properties": {
    "path": {
      "description": "The path to probe.",
      "type": "string"
    },
    "port": {
      "description": "The port number to probe.",
      "format": "int32",
      "type": "integer"
    },
    "scheme": {
      "description": "The scheme.",
      "enum": [
        "http",
        "https"
      ],
      "type": "string"
    }
  },
  "required": [
    "port"
  ],
  "name": "ContainerHttpGet"
}