{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EntityModelEngineGroup", "title": "EntityModelEngineGroup", "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 }, "links": { "type": "array", "items": { "$ref": "#/components/schemas/Link" }, "readOnly": true } }, "required": [ "name" ] }