{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MCPServerCPInfo", "title": "MCPServerCPInfo", "allOf": [ { "$ref": "#/components/schemas/MCPServerInfo" }, { "type": "object", "properties": { "container": { "allOf": [ { "$ref": "#/components/schemas/ContainerSpec" }, { "description": "Configuration for the main container." } ] }, "init_container": { "allOf": [ { "$ref": "#/components/schemas/ContainerSpec" }, { "description": "Configuration for the init container." } ] } } } ] }