{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "BaseLanguage", "type": "object", "properties": { "runtime_version": { "type": "string", "description": "Runtime version of the function's/procedure's specified language" }, "packages": { "type": "array", "description": "Packages to include with the function/procedure" }, "imports": { "type": "array", "description": "List of imports" }, "handler": { "type": "string", "description": "Fully qualified method name including the package and the class" } } }