如何定义具有嵌套值的请求表示参数?
<param name="foo[bar]" required="true" type="xsd:string" style="query" default="baz">
结果“字符串值 'foo[bar]' 与 xs:NMTOKEN 的模式不匹配”
这就是我最终解决它的方式,根据http://support.apigee.com/apigee/topics/how_do_i_define_a_request_representation_with_nested_values_e_g_foo_bar_baz
<request>
<representation>
<param name="foo_bar" apigee:paramName="foo[bar]" required="true" type="xsd:string" style="query" default="baz">
</representation>
</request>