{
  "source": "../assert.js",
  "method": "assertNotEmpty",
  "input-schema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "value": {
        "type": "any",
        "description": "Value. If the value is not empty, assertion passes otherwise it fails.",
        "required": true
      },
      "message": {
        "type": "string",
        "description": "Optional label for this assertion."
      }
    }
  },
  "output-schema": {
    "type": "object"
  },
  "meta": {
    "name": "assertNotEmpty",
    "icon": {
        "type": "fa",
        "name": "check-square-o"
    },
    "description": "Assert if the given value is not empty."
  }
}