{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Mappings", "title": "Mappings", "type": "object", "properties": { "name": { "type": "string" }, "inputs_schema": { "type": "array", "items": { "$ref": "#/components/schemas/InputsSchemaItem" } }, "inputs": { "type": "object", "additionalProperties": { "$ref": "#/components/schemas/InputsItem" } }, "filters": { "$ref": "#/components/schemas/HogFunctionFilters" } } }