X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=website%2Fmessages%2FPLMC22.md;fp=website%2Fmessages%2FPLMC22.md;h=d786a523d6bae7e32f2c3ba8af6e8cad1d63ab82;hb=b87d2f4e68281062df1913440ca5753ae63314a9;hp=0000000000000000000000000000000000000000;hpb=ab0ea530b8ac956091f17b104ab2311336cfc250;p=packages%2Fprecise%2Fmcollective.git diff --git a/website/messages/PLMC22.md b/website/messages/PLMC22.md new file mode 100644 index 0000000..d786a52 --- /dev/null +++ b/website/messages/PLMC22.md @@ -0,0 +1,30 @@ +--- +layout: default +title: Message detail for PLMC22 +toc: false +--- + +Detail for Marionette Collective message PLMC22 +=========================================== + +Example Message +--------------- + + Cannot determine what entity input 'port' belongs to + +Additional Information +---------------------- + +When writing a DDL you declare inputs into plugins using the input keyword. Each input has to belong to a wrapping entity like in the example below: + + action "get_data", :description => "Get data from a data plugin" do + input :source, + :prompt => "Data Source", + :description => "The data plugin to retrieve information from", + :type => :string, + :validation => '^\w+$', + :optional => false, + :maxlength => 50 + end + +Here the input belongs to the action entity "get_data", this error indicates that an input were found without it belonging to any specific entity