{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RestConfig", "title": "RestConfig", "type": "object", "properties": { "catalog_uri": { "type": "string", "description": "Customer's Polaris account locator URL", "example": "example_value" }, "warehouse": { "type": "string", "description": "Name of the catalog to use in Polaris", "example": "example_value" } }, "required": [ "catalog_uri", "warehouse" ] }