-
-
Save brunerd/378def06cc7661da9ab6226eef7d8e96 to your computer and use it in GitHub Desktop.
Sample JAMF Smart Group
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"computer_group": { | |
"id": 1, | |
"name": "All 10.15.x Macs", | |
"is_smart": true, | |
"site": { | |
"id": -1, | |
"name": "None" | |
}, | |
"criteria": [ | |
{ | |
"name": "Operating System Version", | |
"priority": 0, | |
"and_or": "and", | |
"search_type": "like", | |
"value": "10.15", | |
"opening_paren": false, | |
"closing_paren": false | |
} | |
], | |
"computers": [ | |
{ | |
"id": 1, | |
"name": "mac1", | |
"mac_address": "12:34:56:78:9A:BC", | |
"alt_mac_address": "12:34:56:78:9A:BD", | |
"serial_number": "Z18D132XJTQD" | |
}, | |
{ | |
"id": 2, | |
"name": "mac2", | |
"mac_address": "12:34:56:78:9A:BE", | |
"alt_mac_address": "12:34:56:78:9A:BF", | |
"serial_number": "Z39VM86X01MZ" | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment