{
  "$id": "https://schemas.binaryedge.io/minion/modules/rsync",
  "title": "RSYNC Module Output Body",
  "type": "object",
  "properties": {
    "banner": {
      "type": "string"
    },
    "error": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "modules": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/module"
      }
    }
  },
  "required": [
    "status"
  ],
  "additionalProperties": false,
  "$defs": {
    "module": {
      "type": "object",
      "properties": {
        "module": {
          "type": "string"
        },
        "status": {
          "type": "string"
        }
      },
      "required": [
        "module",
        "status"
      ],
      "additionalProperties": false
    }
  }
}
