diff --git a/docs/sources/developers/plugins/plugin.schema.json b/docs/sources/developers/plugins/plugin.schema.json index 358c159a590..60ce5cff900 100644 --- a/docs/sources/developers/plugins/plugin.schema.json +++ b/docs/sources/developers/plugins/plugin.schema.json @@ -438,6 +438,24 @@ } } } + }, + "urlParams": { + "type": "array", + "description": "Add URL parameters to a proxy route", + "items": { + "type": "object", + "additionalProperties": false, + "properties": { + "name": { + "type": "string", + "description": "Name of the URL parameter" + }, + "content": { + "type": "string", + "description": "Value of the URL parameter" + } + } + } } } }