Microsoft Azure · Schema

Plan

Plan for the resource.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
name string The plan ID.
publisher string The publisher ID.
product string The offer ID.
promotionCode string The promotion code.
version string The plan's version.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-plan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Plan",
  "title": "Plan",
  "type": "object",
  "description": "Plan for the resource.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The plan ID.",
      "example": "Example Title"
    },
    "publisher": {
      "type": "string",
      "description": "The publisher ID.",
      "example": "example_value"
    },
    "product": {
      "type": "string",
      "description": "The offer ID.",
      "example": "example_value"
    },
    "promotionCode": {
      "type": "string",
      "description": "The promotion code.",
      "example": "example_value"
    },
    "version": {
      "type": "string",
      "description": "The plan's version.",
      "example": "example_value"
    }
  }
}