Google Apps Script · Schema

Process

Apps ScriptAutomationDeploymentsGoogleGoogle WorkspaceScripting

Properties

Name Type Description
projectName string
functionName string
processType string
processStatus string
startTime string
duration string
View JSON Schema on GitHub

JSON Schema

openapi-process-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Process",
  "type": "object",
  "properties": {
    "projectName": {
      "type": "string"
    },
    "functionName": {
      "type": "string"
    },
    "processType": {
      "type": "string"
    },
    "processStatus": {
      "type": "string"
    },
    "startTime": {
      "type": "string"
    },
    "duration": {
      "type": "string"
    }
  }
}