{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EngineGroup", "title": "EngineGroup", "properties": { "id": { "type": "string", "format": "uuid", "description": "The ID of the Engine Group", "readOnly": true }, "name": { "type": "string", "description": "The name of the Engine Group", "maxLength": 200, "minLength": 1 }, "description": { "type": "string", "description": "The description of the Engine Group", "maxLength": 2000, "minLength": 0 } }, "required": [ "name" ] }