{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "schema:CommentAction", "title": "CommentAction", "description": "The act of generating a comment about a subject.", "type": "object", "allOf": [ { "description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.", "$ref": "schema:CommunicateAction" } ], "properties": { "resultComment": { "description": "A sub property of result. The Comment created or sent as a result of this action.", "oneOf": [ { "$ref": "schema:Comment" }, { "type": "array", "items": { "$ref": "schema:Comment" } } ] } } }