{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HogFunctionMappingTemplate", "title": "HogFunctionMappingTemplate", "type": "object", "properties": { "name": { "type": "string", "description": "Name of this mapping template." }, "include_by_default": { "type": "boolean", "nullable": true, "description": "Whether this mapping is enabled by default." }, "use_all_events_by_default": { "type": "boolean", "nullable": true, "description": "Whether this mapping should match all events by default, hiding the event filter UI." }, "filters": { "nullable": true, "description": "Event filters specific to this mapping." }, "inputs": { "nullable": true, "description": "Input values specific to this mapping." }, "inputs_schema": { "nullable": true, "description": "Additional input schema fields specific to this mapping." } }, "required": [ "name" ] }