{
  "create": {
    "id": "data.Statuses.create",
    "type": "object",
    "properties": {
      "domain": {
        "type": "string",
        "enum": [
          "Statuses"
        ]
      },
      "action": {
        "type": "string",
        "enum": [
          "create"
        ]
      },
      "key": {
        "type": "string"
      },
      "values": {
        "type": "object",
        "properties": {
          "amount": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "transactionSource": {
            "type": "string"
          },
          "user": {
            "type": "string"
          }
        },
        "required": [
          "amount",
          "status",
          "timestamp",
          "transactionSource",
          "user"
        ],
        "additionalProperties": false
      }
    },
    "required": [
      "domain",
      "action",
      "key",
      "values"
    ],
    "additionalProperties": false
  },
  "update": {
    "id": "data.Statuses.update",
    "type": "object",
    "properties": {
      "domain": {
        "type": "string",
        "enum": [
          "Statuses"
        ]
      },
      "action": {
        "type": "string",
        "enum": [
          "update"
        ]
      },
      "key": {
        "type": "string"
      },
      "values": {
        "type": "object",
        "properties": {
          "amount": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "transactionSource": {
            "type": "string"
          },
          "user": {
            "type": "string"
          }
        },
        "additionalProperties": false
      }
    },
    "required": [
      "domain",
      "action",
      "key",
      "values"
    ],
    "additionalProperties": false
  },
  "remove": {
    "id": "data.Statuses.remove",
    "type": "object",
    "properties": {
      "domain": {
        "type": "string",
        "enum": [
          "Statuses"
        ]
      },
      "action": {
        "type": "string",
        "enum": [
          "remove"
        ]
      },
      "key": {
        "type": "string"
      }
    },
    "required": [
      "domain",
      "action",
      "key"
    ],
    "additionalProperties": false
  }
}