{
  "create": {
    "id": "data.Arrivals.create",
    "type": "object",
    "properties": {
      "domain": {
        "type": "string",
        "enum": [
          "Arrivals"
        ]
      },
      "action": {
        "type": "string",
        "enum": [
          "create"
        ]
      },
      "key": {
        "type": "string"
      },
      "values": {
        "type": "object",
        "properties": {
          "arrivedAt": {
            "type": "number"
          },
          "ownerProfileKey": {
            "type": "string"
          },
          "profileKey": {
            "type": "string"
          },
          "projectKey": {
            "type": "string"
          },
          "projectKeyProfileKey": {
            "type": "string"
          }
        },
        "required": [
          "ownerProfileKey",
          "profileKey",
          "projectKey"
        ],
        "additionalProperties": false
      }
    },
    "required": [
      "domain",
      "action",
      "key",
      "values"
    ],
    "additionalProperties": false
  },
  "update": {
    "id": "data.Arrivals.update",
    "type": "object",
    "properties": {
      "domain": {
        "type": "string",
        "enum": [
          "Arrivals"
        ]
      },
      "action": {
        "type": "string",
        "enum": [
          "update"
        ]
      },
      "key": {
        "type": "string"
      },
      "values": {
        "type": "object",
        "properties": {
          "arrivedAt": {
            "type": "number"
          }
        },
        "additionalProperties": false
      }
    },
    "required": [
      "domain",
      "action",
      "key",
      "values"
    ],
    "additionalProperties": false
  },
  "remove": {
    "id": "data.Arrivals.remove",
    "type": "object",
    "properties": {
      "domain": {
        "type": "string",
        "enum": [
          "Arrivals"
        ]
      },
      "action": {
        "type": "string",
        "enum": [
          "remove"
        ]
      },
      "key": {
        "type": "string"
      }
    },
    "required": [
      "domain",
      "action",
      "key"
    ],
    "additionalProperties": false
  }
}