{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PolicyClient", "title": "PolicyClient", "type": "object", "properties": { "clientName": { "type": "string", "description": "Hostname of the client", "example": "example_value" }, "hardware": { "type": "string", "description": "Hardware type of the client", "example": "example_value" }, "operatingSystem": { "type": "string", "description": "Operating system of the client", "example": "example_value" }, "priority": { "type": "integer", "description": "Client priority within the policy", "example": 10 } } }