Properties
| Name | Type | Description |
|---|---|---|
| created_at | string | |
| description | string | The description of the profile |
| entries | array | |
| id | string | |
| name | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/dlp_IntegrationProfile",
"title": "dlp_IntegrationProfile",
"properties": {
"created_at": {
"format": "date-time",
"type": "string"
},
"description": {
"description": "The description of the profile",
"nullable": true,
"type": "string"
},
"entries": {
"items": {
"$ref": "#/components/schemas/dlp_Entry"
},
"type": "array"
},
"id": {
"format": "uuid",
"type": "string"
},
"name": {
"type": "string"
},
"updated_at": {
"format": "date-time",
"type": "string"
}
},
"required": [
"id",
"name",
"entries",
"created_at",
"updated_at"
],
"type": "object"
}