{
  "source": "session.js",
  "method": "setSession",
  "input-schema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "data": {
        "label": "Data",
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "key": {
              "label": "Key",
              "type": "string"
            },
            "value": {
              "label": "Value",
              "type": "any"
            }
          }
        }
      },
      "expires": {
        "label" : "Expires (seconds)",
        "type" : "number"
      }
    }
  }  ,
  "meta": {
    "name": "set",
    "description": "Sets data to session"
  }
}