{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NetworkAclRule", "title": "NetworkAclRule", "type": "object", "additionalProperties": false, "required": [ "action", "scope" ], "properties": { "action": { "$ref": "#/components/schemas/NetworkAclAction" }, "match": { "$ref": "#/components/schemas/NetworkAclMatch" }, "not_match": { "$ref": "#/components/schemas/NetworkAclMatch" }, "scope": { "$ref": "#/components/schemas/NetworkAclRuleScopeEnum" } } }