{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/teams-devices_firewall_input_request", "title": "Firewall", "properties": { "enabled": { "description": "Enabled", "example": true, "type": "boolean" }, "operating_system": { "description": "Operating System", "enum": [ "windows", "mac" ], "example": "windows", "type": "string" } }, "required": [ "operating_system", "enabled" ], "type": "object" }