Doesn't seem to support OAS 3.0 security and securitySchema objects. I've tried various configuration, but never seems to validate.
Components object:
securitySchemes: ApiKeyAuth: type: apiKey in: header name: x-api-key headers: 'x-api-key': description: API access key schema: type: "string" required: true
Operation object:
'/channels/{channelUuid}/groups/{groupUuid}': get: summary: Get a single group for a channel organization operationId: getGroup tags: - Groups security: - x-api-key: - apiKey