Webflow JSON Schema: Instance reference configuration
instance reference configuration JSON Schema
Schema for the configuration of the instance reference in a webflow
Summary
rendererViewlet: # {handler}
groupingConfigViewlet: # {handler}
Properties
Name | Required | Type | Description |
---|---|---|---|
rendererViewlet | false | string | The coldbox event to run to render the instance reference value |
groupingConfigViewlet | false | string | The coldbox event to provide custom admin grouping configuration for the instance. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "webflow.instrefconfig.schema.json",
"type": "object",
"additionalProperties": false,
"title":"Webflow instance reference configuration",
"description":"Defines the configuration of the instance reference used within an element of the webflow",
"required":[],
"properties": {
"rendererViewlet": { "type": "string", "description": "The coldbox event to run to render the instance reference value" },
"groupingConfigViewlet": { "type": "string", "description": "The coldbox event to provide custom admin grouping configuration for the instance." }
}
}