Logic Op - Comment

Overview

The Comment operation serves no functional purpose and is simply used for storage of notes and comments alongside other operations.

The comment operation is ignored when encountered within the operations sequence.

Attributes

The operation attributes are as follows.

Attribute Type Description
type String comment
arguments Object [Required] The structure of the CommentArg we expect to receive.
comment String [Required] The comment associated with the operation.

Example

This is an example entry within the operations array:

{ 
    "type": "comment", 
    "arguments": {
        "comment": "This is a comment, that will be ignored at runtime!"
    }
}