Rapid7 · Schema
EntityModelTarget
SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The ID of the Target |
| domain | string | The fully qualified domain name of the Target |
| enabled | boolean | The enabled property of the Target |
| archived | boolean | The archived property of the Target |
| links | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EntityModelTarget",
"title": "EntityModelTarget",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "The ID of the Target",
"readOnly": true
},
"domain": {
"type": "string",
"description": "The fully qualified domain name of the Target"
},
"enabled": {
"type": "boolean",
"description": "The enabled property of the Target"
},
"archived": {
"type": "boolean",
"description": "The archived property of the Target"
},
"links": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Link"
},
"readOnly": true
}
},
"required": [
"domain"
]
}