GOV.UK Pay · Schema

Exemption

A structure representing that 3DS exemption was requested and the outcome of the exemption, if applicable.

PaymentsGovernmentUKPublic SectorRESTPCI DSSRefundsRecurring PaymentsWebhooks

Properties

Name Type Description
outcome object
requested boolean Indicates whether an exemption was requested for the given payment.
type string Indicates the type of exemption. Only present for corporate exemption
View JSON Schema on GitHub

JSON Schema

Exemption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://github.com/api-evangelist/gov-uk-pay/blob/main/json-schema/Exemption.json",
  "title": "Exemption",
  "type": "object",
  "description": "A structure representing that 3DS exemption was requested and the outcome of the exemption, if applicable.",
  "properties": {
    "outcome": {
      "$ref": "#/components/schemas/Outcome"
    },
    "requested": {
      "type": "boolean",
      "description": "Indicates whether an exemption was requested for the given payment.",
      "example": true,
      "readOnly": true
    },
    "type": {
      "type": "string",
      "description": "Indicates the type of exemption. Only present for corporate exemption",
      "example": "corporate",
      "readOnly": true
    }
  }
}