CreateDeploymentResponse schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-greengrass/refs/heads/main/json-schema/iot-greengrass-create-deployment-response-schema.json", "title": "CreateDeploymentResponse", "description": "CreateDeploymentResponse schema", "type": "object", "properties": { "deploymentId": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The ID of the deployment." } ] }, "iotJobId": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The ID of the IoT job that applies the deployment to target devices." } ] }, "iotJobArn": { "allOf": [ { "$ref": "#/components/schemas/IoTJobARN" }, { "description": "The <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html\">ARN</a> of the IoT job that applies the deployment to target devices." } ] } } }