{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NetworkAclsResponseContent", "title": "NetworkAclsResponseContent", "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "description": { "type": "string" }, "active": { "type": "boolean" }, "priority": { "type": "number", "minimum": 1, "maximum": 100 }, "rule": { "$ref": "#/components/schemas/NetworkAclRule" }, "created_at": { "type": "string", "description": "The timestamp when the Network ACL Configuration was created" }, "updated_at": { "type": "string", "description": "The timestamp when the Network ACL Configuration was last updated" } } }