{
  "$schema": "http://json-schema.org/draft-04/schema",
  "id": "campaign-shipping.json",
  "type": "object",
  "properties": {
    "shippingId": {
      "readOnly": true,
      "type": [ "string", "null" ]
    },
    "type": {
      "type": "string",
      "enum": [ "immediate", "scheduled" ]
    },
    "scheduledDate": {
      "type": [ "string", "null" ],
      "format": "date-time"
    },
    "status": {
      "readOnly": true,
      "type": [ "string", "null" ],
      "enum": [
        "waiting",
        "processing",
        "sending",
        "sent",
        "closed"
      ]
    }
  },
  "required": [ "type" ]
}
