{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventSubscriptions", "title": "EventSubscriptions", "type": "object", "properties": { "items": { "type": "array", "items": { "type": "string" } }, "type": { "type": "string", "enum": [ "EVENT_TYPE", "FLOW_EVENT" ] } }, "discriminator": { "propertyName": "type" }, "x-okta-tags": [ "EventHook" ] }