Summary 
          Creates an automation
          Description 
          Creates an automation with optional description. An automation's root structure is based off the agendajs library, with any custom data falling into the 'data' array
          Route 
          POST /automation_catalog/automations
          Roles 
          
            admin 
other 
apiread 
          
          Parameters 
          
            Details Example Schema 
          
          
            
              
                Name 
                Type 
                Required 
                Description 
               
             
            
              
    name 
    string 
    yes 
    Unique name of the automation 
   
    description 
    string 
    yes 
    Short description of the automation. 
   
             
          
          
            Copied to Clipboard 
            {
  "name": "My fancy automation name",
  "description": "dolor voluptate velit"
}
           
          
            Copied to Clipboard 
            {
  "type": "object",
  "properties": {
    "name": {
      "title": "name",
      "type": "string",
      "minLength": 1,
      "examples": [
        "My fancy automation name"
      ],
      "description": "Name of the automation. Two automations may not share the same name."
    },
    "description": {
      "title": "description",
      "type": "string",
      "example": [
        "My optional description"
      ]
    }
  },
  "required": [
    "name",
    "description"
  ],
  "additionalProperties": false
}
           
          Return 
          
            Details Example Schema 
          
          
            
              
                Name 
                Type 
                Description 
               
             
            
              
                result 
                object 
                Automation document that was created by the request 
               
             
          
          
            Copied to Clipboard 
            {
  "_id": "273b44c01eead00220d9a361",
  "name": "test",
  "data": {
    "gbac": {
      "write": [
        "53c13ccf9ad397fd80bfdddb",
        "5ffc9deacfec99d07ae1a8c5"
      ],
      "read": [
        "cf4139d7ef01daece0ba030c",
        "a8900af632d9853292cbadc0",
        "10f411ecada300203f4a5878"
      ]
    },
    "lastUpdated": "2019-11-25T22:51:39.201Z",
    "description": "laboris Duis elit",
    "workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
    "formId": "827167973cceedf49e3ae031"
  },
  "lastModifiedBy": "adipisicing",
  "lastRunAt": "2019-11-25T22:51:39.201Z",
  "nextRunAt": "2019-11-25T22:51:39.201Z",
  "repeatInterval": "1 day"
}