{
  "$id": "https://schema.nfh.global/NackBadRequest/v2.0",
  "x-iri": "https://schema.nfh.global/NackBadRequest/v2.0",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "NACK — Bad Request: Malformed or invalid request; the server could not parse or validate the payload.",
  "allOf": [
    {
      "$ref": "https://schema.nfh.global/Ack/v2.0/schema.json"
    },
    {
      "type": "object",
      "properties": {
        "status": {
          "type": "string",
          "const": "NACK"
        },
        "error": {
          "$ref": "https://schema.nfh.global/Error/v2.0/schema.json"
        }
      }
    }
  ]
}
