VatPayment

GovernmentMaking Tax DigitalRegulatoryTaxUK

Properties

Name Type Description
amount number Payment amount in GBP
received string Date payment received by HMRC
View JSON Schema on GitHub

JSON Schema

hmrc-vatpayment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VatPayment",
  "title": "VatPayment",
  "type": "object",
  "properties": {
    "amount": {
      "type": "number",
      "description": "Payment amount in GBP"
    },
    "received": {
      "type": "string",
      "format": "date",
      "description": "Date payment received by HMRC"
    }
  }
}