{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SparkSessionOptions", "title": "SparkSessionOptions", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string" }, "driverMemory": { "type": "string" }, "driverCores": { "type": "integer" }, "executorMemory": { "type": "string" }, "executorCores": { "type": "integer" }, "executorCount": { "type": "integer" }, "conf": { "type": "object", "additionalProperties": { "type": "string" } } } }