Summary
Check Proposed Rule (Restrictions)
Description
Check a proposed traffic rule against a restrictions policy
Route
No Northbound API Available
Roles
admin
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
restrictionsPolicy |
object |
yes |
- |
proposedRule |
object |
yes |
- |
Copied to Clipboard
{
"restrictionsPolicy": null,
"proposedRule": null
}
Copied to Clipboard
{
"type": "object",
"properties": {
"restrictionsPolicy": {
"type": "object",
"properties": {},
"required": [
"restrictionsPolicy"
],
"additionalProperties": false
},
"proposedRule": {
"type": "object",
"properties": {},
"required": [
"proposedRule"
],
"additionalProperties": false
}
},
"required": [
"restrictionsPolicy",
"proposedRule"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
result |
object |
A JSON Object containing status, code and the result |
Copied to Clipboard
{
"result": true
}
Copied to Clipboard
{
"description": "A JSON Object containing status, code and the result",
"type": "object",
"properties": {
"result": true
},
"required": [
"result"
],
"additionalProperties": false
}