Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the restriction. |
| cidr | string | The IP address or CIDR range. |
| description | string | A description of the restriction. |
| created_at | string | The timestamp when the restriction was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IpRestriction",
"title": "IpRestriction",
"type": "object",
"description": "An IP restriction entry for controlling database access.",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the restriction."
},
"cidr": {
"type": "string",
"description": "The IP address or CIDR range."
},
"description": {
"type": "string",
"description": "A description of the restriction."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "The timestamp when the restriction was created."
}
}
}