policyType element

Type: imbPolicyTypeContainerBean
Namespace: http://www.ibm.com/iib/apiv1/responseObject/container
XML Schema: ns0.xsd

Description of policies available on the broker.

Example XML

<?xml version="1.0" encoding="UTF-8"?> <policyType xmlns="http://www.ibm.com/iib/apiv1/responseObject/container" type="..." policyType="..." uri="..." hasChildren="..." internal="..."> <policy type="..." uri="..." policyType="..." name="..."> <ns1:documentURI xmlns:ns1="http://www.ibm.com/iib/apiv1/responseObject">...</ns1:documentURI> <ns1:data xmlns:ns1="http://www.ibm.com/iib/apiv1/responseObject"> <ns1:data name="..." value="..." owner="..." type="..." /> <ns1:data name="..." value="..." owner="..." type="..."> <!--...--> </ns1:data> <!--...more "data" elements...--> </ns1:data> </policy> <policy type="..." uri="..." policyType="..." name="..."> <!--...--> </policy> <!--...more "policy" elements...--> </policyType>

Example JSON

{ "type" : "...", "policyType" : "...", "policy" : [ { "type" : "...", "uri" : { "value" : "..." }, "policyType" : "...", "name" : "...", "documentURI" : "...", "data" : [ { "name" : "...", "value" : "...", "owner" : "...", "type" : "..." }, ... ] }, ... ], "uri" : { "value" : "..." }, "hasChildren" : "...", "internal" : "..." }