{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/magic_acls_add_single_request", "title": "magic_acls_add_single_request", "description": "Bidirectional ACL policy for local network traffic within a site.", "properties": { "description": { "description": "Description for the ACL.", "example": "Allows local traffic between PIN pads and cash register.", "type": "string" }, "forward_locally": { "$ref": "#/components/schemas/magic_forward_locally" }, "lan_1": { "$ref": "#/components/schemas/magic_lan-acl-configuration" }, "lan_2": { "$ref": "#/components/schemas/magic_lan-acl-configuration" }, "name": { "description": "The name of the ACL.", "example": "PIN Pad - Cash Register", "type": "string" }, "protocols": { "items": { "description": "Array of allowed communication protocols between configured LANs. If no protocols are provided, all protocols are allowed.", "enum": [ "tcp", "udp", "icmp" ], "type": "string" }, "type": "array" } }, "required": [ "name", "lan_1", "lan_2" ], "type": "object" }