{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Acl", "title": "Acl", "type": "object", "description": "An ACL container that holds a list of IP address and CIDR range entries used for access control at the edge.", "properties": { "id": { "type": "string", "description": "The alphanumeric string identifying the ACL." }, "name": { "type": "string", "description": "The name of the ACL." }, "service_id": { "type": "string", "description": "The alphanumeric string identifying the service." }, "version": { "type": "integer", "description": "The version number the ACL is associated with." }, "created_at": { "type": "string", "format": "date-time", "description": "The date and time the ACL was created." }, "updated_at": { "type": "string", "format": "date-time", "description": "The date and time the ACL was last updated." }, "deleted_at": { "type": "string", "format": "date-time", "nullable": true, "description": "The date and time the ACL was deleted." } } }