ITENCTYPE: IT encryption type
Encryption type classification with algorithm, key length, and category for security compliance tracking.
Default definition. This article describes the default
ITENCTYPE definition shipped with DemandFlow. Administrators can add, remove, rename, or re-type fields, change which ones are required, and alter the layout from the Definitions screen in Settings. Your tenant's current schema may differ from what is shown here. To read the current definition at any time, GET the DEFINITION object whose id matches ITENCTYPE.Entity properties
| Property | Value |
|---|---|
| Entity code | ITENCTYPE |
| Display name | IT encryption type |
| Plural | IT encryption types |
| Level | 250 |
Use cases
ITENCTYPE defines encryption type classifications referenced by ITASSET and other security-related entities. The encryptionCategory field categorises by scope: Full Disk Encryption, File/Folder Encryption, Database Encryption, Network/Transport Encryption, Application Encryption, Hardware Encryption, or No Encryption. The algorithm field links to ENCALG for the specific cryptographic algorithm (e.g., AES-256, RSA), while keyLength captures the key size.
Fields
IT encryption type
| Field | Type | Required | Notes |
|---|---|---|---|
ref | text | Ref. | |
name | text | Yes | Name. |
description | text (multi-line) | Description. | |
encryptionCategory | enum | Yes | Valid ids: 1 (Full Disk Encryption), 2 (File/Folder Encryption), 3 (Database Encryption), 4 (Network/Transport Encryption), 5 (Application Encryption), 6 (Hardware Encryption), 7 (No Encryption). |
algorithm | reference → ENCALG | Encryption Algorithm. | |
keyLength | text | Key Length. | |
active | enum | Yes | Valid ids: 1 (Yes), 0 (No). |
Relationships
- Lookups:
algorithmpoints at aENCALGrecord.
Creating a IT encryption type via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "ITENCTYPE",
"level": 250,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example",
"encryptionCategory": "1",
"active": "1",
"ref": "..."
}
Listing IT encryption types
# All records in your tenant
GET /v1/entities/ITENCTYPE/SUB:<your-sub-id>