schemas
Operations on a schemas
resource.
Overview
Name | schemas |
Type | Resource |
Id | databricks_workspace.realtimeserving.schemas |
Fields
Name | Datatype |
---|---|
info | object |
openapi | string |
paths | object |
servers | array |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
getopenapi | SELECT | name, deployment_name | Get the query schema of the serving endpoint in OpenAPI format. The schema contains information for the supported paths, input and output format and datatypes. |
SELECT
examples
SELECT
info,
openapi,
paths,
servers
FROM databricks_workspace.realtimeserving.schemas
WHERE name = '{{ name }}' AND
deployment_name = '{{ deployment_name }}';