CREATE VIEW surveilr_osquery_ms_node_boundary AS
SELECT
json_extract(l.content, '$.surveilrOsQueryMsNodeKey') AS node_key,
l.updated_at,
json_extract(l.content, '$.hostIdentifier') AS host_identifier,
json_extract(l.content, '$.columns.value') AS boundary
FROM uniform_resource AS l
WHERE l.uri = 'osquery-ms:query-result'
AND (
json_extract(l.content, '$.name') = 'osquery-ms Boundary (Linux and Macos)' OR
json_extract(l.content, '$.name') = 'osquery-ms Boundary (Windows)'
)