{
  "$id": "https://schemas.sand.binaryedge.io/minion/modules/noop",
  "title": "NoOp Module Output Body",
  "type": "object",
  "$comment": "This module is used for testing. We make no guarantees about the long-term stability of its output. We may overhaul it at any time.",
  "properties": {
    "args": {
      "$comment": "All command-line arguments passed to the module.",
      "type": "array",
      "items": {
        "type": "string"
      },
      "additionalProperties": false
    },
    "dummy_payload": {
      "$comment": "A generated payload of printable non-whitespace bytes that are safe inside a JSON string.",
      "type": "string",
      "maxLength": 10000000
    },
    "env": {
      "$comment": "All environment variables available to the module.",
      "type": "object",
      "patternProperties": {
        ".*": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
  },
  "additionalProperties": false,
  "required": [
    "args",
    "env"
  ]
}
