{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-gamelift/refs/heads/main/json-schema/gamelift-delete-fleet-input-schema.json", "title": "DeleteFleetInput", "description": "DeleteFleetInput schema from Amazon GameLift API", "type": "object", "properties": { "FleetId": { "allOf": [ { "$ref": "#/components/schemas/FleetIdOrArn" }, { "description": "A unique identifier for the fleet to be deleted. You can use either the fleet ID or ARN value." } ] } }, "required": [ "FleetId" ] }