{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "/triggers/Push/1",
  "type": "object",
  "title": "Schedule Trigger",
  "description": "A schedule trigger causes a workflow run to start on a schedule that you define",
  "properties": {
    "Type": {
      "type": "string",
      "const": "SCHEDULE"
    },
    "Expression": {
      "type": "String",
      "description": "A CRON expression representing the schedule the workflow runs on"
    },
    "Branches": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": ["Type", "Expression"],
  "additionalProperties": false
}
