{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "https://json.schemastore.org/settings.job.json",
  "minProperties": 1,
  "properties": {
    "stopping_wait_time": {
      "type": "integer",
      "description": "The graceful shutdown period for an Azure Webjob. The time specified in seconds."
    },
    "is_singleton": {
      "description": "Specify if the Webjob should be treated as a singleton. If true, the Webjob will not scale on multiple Azure Website instances like the web application itself.",
      "type": "boolean"
    }
  },
  "title": "JSON schema for Azure Webjob settings.job files",
  "type": "object"
}
