SMS_R_System
Represents a discovered system resource (computer or device) in Configuration Manager.
ComplianceConfiguration ManagementDevice ManagementEndpoint ManagementMobile Device ManagementPatch ManagementSoftware Deployment
Properties
| Name | Type | Description |
|---|---|---|
| ResourceID | integer | Unique resource identifier. |
| Name | string | Computer name. |
| SMSUniqueIdentifier | string | SMS unique identifier. |
| ResourceDomainORWorkgroup | string | Domain or workgroup. |
| Client | integer | Whether the Configuration Manager client is installed (1=yes). |
| Active | integer | Whether the resource is active. |
| IPAddresses | array | IP addresses of the system. |
| MACAddresses | array | MAC addresses of the system. |
| OperatingSystemNameandVersion | string | Full operating system name and version string. |
| LastLogonUserName | string | Last logged on user name. |
| LastLogonTimestamp | string | Last logon timestamp. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SMS_R_System",
"title": "SMS_R_System",
"type": "object",
"description": "Represents a discovered system resource (computer or device) in Configuration Manager.",
"properties": {
"ResourceID": {
"type": "integer",
"description": "Unique resource identifier."
},
"Name": {
"type": "string",
"description": "Computer name."
},
"SMSUniqueIdentifier": {
"type": "string",
"description": "SMS unique identifier."
},
"ResourceDomainORWorkgroup": {
"type": "string",
"description": "Domain or workgroup."
},
"Client": {
"type": "integer",
"description": "Whether the Configuration Manager client is installed (1=yes)."
},
"Active": {
"type": "integer",
"description": "Whether the resource is active."
},
"IPAddresses": {
"type": "array",
"items": {
"type": "string"
},
"description": "IP addresses of the system."
},
"MACAddresses": {
"type": "array",
"items": {
"type": "string"
},
"description": "MAC addresses of the system."
},
"OperatingSystemNameandVersion": {
"type": "string",
"description": "Full operating system name and version string."
},
"LastLogonUserName": {
"type": "string",
"description": "Last logged on user name."
},
"LastLogonTimestamp": {
"type": "string",
"format": "date-time",
"description": "Last logon timestamp."
}
}
}