{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConfigurablePropAirtableViewId", "title": "ConfigurablePropAirtableViewId", "allOf": [ { "$ref": "#/components/schemas/ConfigurablePropBase" }, { "type": "object", "description": "This prop is used to select an Airtable view.", "required": [ "type", "tableIdProp" ], "properties": { "type": { "type": "string", "enum": [ "$.airtable.viewId" ] }, "tableIdProp": { "type": "string", "description": "The name of the prop that provides the Airtable table ID" } } } ] }