{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AgentOS", "title": "AgentOS", "type": "object", "description": "Operating system information for an agent", "properties": { "family": { "type": "string", "enum": [ "WINDOWS", "LINUX", "MACOSX", "SOLARIS" ], "example": "WINDOWS" }, "arch": { "type": "string", "enum": [ "X86", "X64", "ARM", "ARM64" ], "example": "X64" }, "name": { "type": "string", "example": "Windows 11 Pro" }, "version": { "type": "string", "example": "10.0.22621" } } }