{
  "$id": "agreement.state",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "agreement",
    "state"
  ],
  "properties": {
    "agreement": {
      "type": "string"
    },
    "owner": {
      "$ref": "common#/definitions/owner"
    },
    "state": {
      "type": "string",
      "enum": [
        "suspend",
        "reactivate",
        "cancel"
      ]
    },
    "note": {
      "type": "string",
      "minLength": 1
    }
  }
}
