{
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "image": {
      "type": "string"
    },
    "command": {
      "type": "array",
      "optional": true,
      "items": {
        "type": "string"
      }
    },
    "workdir": {
      "type": "string"
    },
    "environment": {
      "type": "array",
      "optional": true,
      "items": {
        "type": "object",
        "properties": {
          "env": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "additionalProperties": false
      }
    }
  },
  "required": ["image"],
  "additionalProperties": false
}
