{
  "source": "json.js",
  "method": "jsonToString",
  "input-schema": {
    "type": "object",
    "additionalProperties": false,
    "properties" : {
      "json": {
        "title": "object",
        "type": "any",
        "description": "Convert an object to a JSON string.",
        "required": true
      },
      "formatSpaces": {
        "title": "space",
        "description": "If specified, will insert white space into the output JSON string for readability purposes. If this is a number, it indicates the number of space characters to use as white space. If this is a string, the string is used as white space.",
        "type": "any"
      }
    }
  },
  "output-schema": {
    "type": "string"
  },
  "meta": {
    "name": "stringify",
    "description": "Convert an object to a JSON string."
  }
}
