Properties
| Name | Type | Description |
|---|---|---|
| id | string | The machine ID. |
| computerDnsName | string | The fully qualified domain name of the machine. |
| osPlatform | string | The operating system platform. |
| rbacGroupName | stringnull | The RBAC group name. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MachineReference",
"title": "MachineReference",
"type": "object",
"description": "A reference to a machine affected by a vulnerability.",
"properties": {
"id": {
"type": "string",
"description": "The machine ID."
},
"computerDnsName": {
"type": "string",
"description": "The fully qualified domain name of the machine."
},
"osPlatform": {
"type": "string",
"description": "The operating system platform."
},
"rbacGroupName": {
"type": [
"string",
"null"
],
"description": "The RBAC group name."
}
}
}