{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/teams-devices_domain_joined_input_request", "title": "Domain Joined", "properties": { "domain": { "description": "Domain", "example": "example.com", "type": "string" }, "operating_system": { "description": "Operating System", "enum": [ "windows" ], "example": "windows", "type": "string" } }, "required": [ "operating_system" ], "type": "object" }