{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProfileSuppressionDeleteQueryResourceObject", "title": "ProfileSuppressionDeleteQueryResourceObject", "type": "object", "properties": { "type": { "$ref": "#/components/schemas/ProfileEnum" }, "attributes": { "type": "object", "properties": { "email": { "description": "The email of the profile to unsuppress.", "type": "string", "example": "matt-kemp@klaviyo-demo.com" } }, "required": [ "email" ] } }, "required": [ "type", "attributes" ] }