We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Elements can be handled a number of ways...
One example is to bind a namespace to a pattern
<rax:json-element namespace="http://rackspace.com/" path="$_?type"/>
That means that if I see
<wadl:representation mediaType="application/json" element="rax:widget"/>
...where rax is bound to http://rackspace.com/
then we'd expect
{ "type" : "widget", "name" : "My Widget" }
The other pattern should be to wrap...
<rax:json-element namespace="http://rackspace.com/" wrap="true"/>
Then we'd expect :
{ "widget" : { "name" : "My Widget"}}
I'd say wrap and path are mutually exclusive attributes.
wrap
path
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Elements can be handled a number of ways...
One example is to bind a namespace to a pattern
That means that if I see
...where rax is bound to http://rackspace.com/
then we'd expect
The other pattern should be to wrap...
Then we'd expect :
I'd say
wrap
andpath
are mutually exclusive attributes.The text was updated successfully, but these errors were encountered: