{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContainingScope", "title": "ContainingScope", "type": "object", "properties": { "database": { "type": "string", "pattern": "^\"([^\"]|\"\")+\"|[a-zA-Z_][a-zA-Z0-9_$]*$", "description": "Database name of the securable scope if applicable.", "example": "example_value" }, "schema": { "type": "string", "pattern": "^\"([^\"]|\"\")+\"|[a-zA-Z_][a-zA-Z0-9_$]*$", "description": "Schema name of the securable scope if applicable.", "example": "example_value" } }, "required": [ "database" ] }