{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lightsail/refs/heads/main/json-schema/amazon-lightsail-instance-schema.json", "title": "Instance", "description": "An Amazon Lightsail virtual server instance.", "type": "object", "properties": { "name": { "type": "string", "description": "The name the user gave the instance.", "example": "my-wordpress-site" }, "arn": { "type": "string", "description": "The Amazon Resource Name (ARN) of the instance." }, "blueprintId": { "type": "string", "description": "The blueprint ID of the instance.", "example": "wordpress_5_7" }, "bundleId": { "type": "string", "description": "The bundle for the instance.", "example": "micro_2_0" }, "publicIpAddress": { "type": "string", "description": "The public IP address of the instance.", "example": "54.123.45.67" }, "privateIpAddress": { "type": "string", "description": "The private IP address of the instance.", "example": "172.26.0.5" }, "createdAt": { "type": "string", "description": "The timestamp when the instance was created.", "format": "date-time" } } }