{ "$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" ] }