capability element
Type: | capability |
Namespace: | http://sonatype.org/xsd/nexus-capabilities-plugin/rest/1.0 |
XML Schema: | ns0.xsd |
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<capability xmlns="http://sonatype.org/xsd/nexus-capabilities-plugin/rest/1.0">
<id xmlns="">...</id>
<notes xmlns="">...</notes>
<enabled xmlns="">...</enabled>
<typeId xmlns="">...</typeId>
<properties xmlns="">
<key>...</key>
<value>...</value>
</properties>
<properties xmlns="">
<!--...-->
</properties>
<!--...more "properties" elements...-->
</capability>
Example JSON
{
"id" : "...",
"notes" : "...",
"enabled" : false,
"typeId" : "...",
"properties" : [ {
"key" : "...",
"value" : "..."
}, ... ]
}