{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SandboxConfigCreate", "title": "SandboxConfigCreate", "properties": { "config": { "anyOf": [ { "$ref": "#/components/schemas/LocalSandboxConfig" }, { "$ref": "#/components/schemas/E2BSandboxConfig" }, { "$ref": "#/components/schemas/ModalSandboxConfig" } ], "title": "Config", "description": "The configuration for the sandbox." } }, "additionalProperties": false, "type": "object", "required": [ "config" ] }