{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PlatformGroup", "title": "PlatformGroup", "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "auto_join": { "type": "boolean" }, "admin_privileges": { "type": "boolean" }, "realm": { "type": "string" }, "external_id": { "type": "string" }, "members": { "type": "array", "items": { "type": "string" } } }, "required": [ "name" ] }