{
  "$schema": "http://localhost:3040/schemas/JobV1.json#",
  "name": "simple-job",
  "displayName": "Simple job",
  "version": "1.0.22",
  "mainFunction": "main",
  "description": "some-description",
  "concurrency": 1,
  "timeout": 10000,
  "functions": [
    {
      "entry": "main.js",
      "name": "main",
      "input": {
        "type": "object",
        "properties": {
          "something": {
            "type": "wrongType"
          }
        },
        "required": ["something"]
      }
    }
  ]
}
