Microsoft Azure · Schema

ContainerCreateRequest

Request body for creating or replacing a container.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
id string The unique name that identifies the container.
defaultTtl integer Default time-to-live in seconds.
View JSON Schema on GitHub

JSON Schema

azure-cosmos-db-container-create-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ContainerCreateRequest",
  "type": "object",
  "description": "Request body for creating or replacing a container.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique name that identifies the container."
    },
    "defaultTtl": {
      "type": "integer",
      "description": "Default time-to-live in seconds."
    }
  }
}