DirectoryDomainSyncRequest (type)

{
  "id": "DirectoryDomainSyncRequest", 
  "module_id": "DirectoryService", 
  "properties": {
    "action": {
      "description": "Sync type could be either FULL sync or DELTA sync. The full sync fetches all the objects under the configured sync nodes while delta sync will get the changed objects from previous sync time.", 
      "enum": [
        "FULL_SYNC", 
        "DELTA_SYNC", 
        "STOP_SYNC"
      ], 
      "required": true, 
      "title": "Sync type requested", 
      "type": "string"
    }, 
    "delay": {
      "default": 0, 
      "description": "The delay can be added to execute the sync action in the future.", 
      "minimum": 0, 
      "required": false, 
      "title": "Request to execute the sync with some delay in seconds", 
      "type": "integer"
    }
  }, 
  "title": "Directory domain synchronization request", 
  "type": "object"
}