{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2/refs/heads/main/json-schema/ec2-openapi-run-instances-response-schema.json", "title": "RunInstancesResponse", "description": "Response from the RunInstances action", "type": "object", "properties": { "reservationId": { "type": "string", "description": "The ID of the reservation" }, "ownerId": { "type": "string", "description": "The ID of the AWS account that owns the reservation" }, "instances": { "type": "array", "description": "The instances launched", "items": { "$ref": "#/components/schemas/Instance" } } } }