{
  "type": "object",
  "properties": {
    "ref": {
      "type": "string",
      "description": "The git reference for the workflow. The reference can be a branch or tag name."
    },
    "inputs": {
      "type": "object",
      "description": "Input keys and values configured in the workflow file. The maximum number of properties is 25. Any default properties configured in the workflow file will be used when `inputs` are omitted.",
      "additionalProperties": true,
      "maxProperties": 25
    }
  },
  "required": [
    "ref"
  ],
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}