Azure Container Instances · JSON Structure

Azure Container Instances Container Structure

A container instance.

Type: object Properties: 2 Required: 2
AzureCloudContainer InstancesContainersMicrosoftServerless

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

Properties

name properties

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-structure.json",
  "description": "A container instance.",
  "type": "object",
  "properties": {
    "name": {
      "description": "The user-provided name of the container instance.",
      "type": "string"
    },
    "properties": {
      "$ref": "#/definitions/ContainerProperties",
      "description": "The properties of the container instance.",
      "x-ms-client-flatten": true
    }
  },
  "required": [
    "properties",
    "name"
  ],
  "name": "Container"
}