{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/amazon-deadline-cloud/json-schema/create-fleet-request-schema.json", "title": "Create Fleet Request", "description": "Request body for creating a compute fleet.", "type": "object", "required": [ "displayName", "roleArn", "configuration" ], "properties": { "displayName": { "type": "string" }, "description": { "type": "string" }, "roleArn": { "type": "string" }, "configuration": { "type": "object" }, "minWorkerCount": { "type": "integer" }, "maxWorkerCount": { "type": "integer" } } }