GOV.UK Pay · Schema

Outcome

A structure representing the outcome of a 3DS exemption, if known.

PaymentsGovernmentUKPublic SectorRESTPCI DSSRefundsRecurring PaymentsWebhooks

Properties

Name Type Description
result string The outcome of the requested exemption
View JSON Schema on GitHub

JSON Schema

Outcome.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://github.com/api-evangelist/gov-uk-pay/blob/main/json-schema/Outcome.json",
  "title": "Outcome",
  "type": "object",
  "description": "A structure representing the outcome of a 3DS exemption, if known.",
  "properties": {
    "result": {
      "type": "string",
      "description": "The outcome of the requested exemption",
      "example": "honoured",
      "readOnly": true
    }
  },
  "readOnly": true
}