{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SimulationRunSuiteEntry", "title": "SimulationRunSuiteEntry", "type": "object", "properties": { "type": { "type": "string", "description": "Type discriminator", "enum": [ "simulationSuite" ] }, "simulationSuiteId": { "type": "string", "description": "ID of the simulation suite to run", "format": "uuid" }, "suiteId": { "type": "string", "deprecated": true } }, "required": [ "type" ] }