{
  "$id": "sale.createDynamic",
  "title": "sale.createDynamic",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "owner",
    "amount",
    "cart",
    "type"
  ],
  "properties": {
    "owner": {
      "$ref": "common#/definitions/owner"
    },
    "amount": {
      "type": "number",
      "minimum": 0,
      "maximum": 999999
    },
    "type": {
      "type": "integer",
      "const": 2
    },
    "cart": { "$ref": "common#/definitions/cart" }
  }
}
