Microsoft Azure · Schema

Message creation

Details of the message creation by the run step.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
type string Always `message_creation``.
message_creation object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-runstepdetailsmessagecreationobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/runStepDetailsMessageCreationObject",
  "title": "Message creation",
  "type": "object",
  "description": "Details of the message creation by the run step.",
  "properties": {
    "type": {
      "description": "Always `message_creation``.",
      "type": "string",
      "enum": [
        "message_creation"
      ],
      "x-ms-enum": {
        "name": "RunStepDetailsMessageCreationObjectType",
        "modelAsString": true,
        "values": [
          {
            "value": "message_creation"
          }
        ]
      }
    },
    "message_creation": {
      "type": "object",
      "properties": {
        "message_id": {
          "type": "string",
          "description": "The ID of the message that was created by this run step."
        }
      },
      "required": [
        "message_id"
      ]
    }
  },
  "required": [
    "type",
    "message_creation"
  ]
}