{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateNetworkAclRequestContent",
"title": "UpdateNetworkAclRequestContent",
"type": "object",
"additionalProperties": false,
"properties": {
"description": {
"type": "string",
"maxLength": 255
},
"active": {
"type": "boolean",
"description": "Indicates whether or not this access control list is actively being used"
},
"priority": {
"type": "number",
"description": "Indicates the order in which the ACL will be evaluated relative to other ACL rules.",
"minimum": 1,
"maximum": 100
},
"rule": {
"$ref": "#/components/schemas/NetworkAclRule"
}
}
}