Adding urlparams to the routes schema (#53735)

This commit is contained in:
Timur Olzhabayev 2022-08-15 15:39:50 +02:00 committed by GitHub
parent f39f9eb053
commit 12381c74f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
}
}
}
}
}
}