Properties
| Name | Type | Description |
|---|---|---|
| created_at | string | |
| enabled | boolean | |
| id | string | |
| name | string | |
| profile_id | string | |
| updated_at | string | |
| word_list | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/dlp_WordListEntry",
"title": "dlp_WordListEntry",
"properties": {
"created_at": {
"format": "date-time",
"type": "string"
},
"enabled": {
"type": "boolean"
},
"id": {
"format": "uuid",
"type": "string"
},
"name": {
"type": "string"
},
"profile_id": {
"format": "uuid",
"nullable": true,
"type": "string"
},
"updated_at": {
"format": "date-time",
"type": "string"
},
"word_list": {}
},
"required": [
"id",
"name",
"created_at",
"updated_at",
"word_list",
"enabled"
],
"type": "object"
}