diff --git a/src/protocol/Component.coffee b/src/protocol/Component.coffee index a3cc3cf..236858c 100644 --- a/src/protocol/Component.coffee +++ b/src/protocol/Component.coffee @@ -106,6 +106,7 @@ class ComponentProtocol inPorts.push id: portName type: port.getDataType() if port.getDataType + schema: port.getSchema() if port.getSchema required: port.isRequired() if port.isRequired addressable: port.isAddressable() if port.isAddressable description: port.getDescription() if port.getDescription @@ -116,6 +117,7 @@ class ComponentProtocol outPorts.push id: portName type: port.getDataType() if port.getDataType + schema: port.getSchema() if port.getSchema required: port.isRequired() if port.isRequired addressable: port.isAddressable() if port.isAddressable description: port.getDescription() if port.getDescription