{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PartialGuild", "title": "PartialGuild", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "icon": { "type": "string", "nullable": true }, "owner": { "type": "boolean" }, "permissions": { "type": "string" }, "features": { "type": "array", "items": { "type": "string" } } } }