Data
- Default Namespace
- XML Schema File: ns0.xsd
The data in this namespace is divided into elements and types. Types define the structure of the data. Elements define specific instances of the types, and are therefore more relevant to REST endpoints, which generally consume and/or produce elements.
The following elements are members of this namespace:
The following types are members of this namespace:
Element PGPConfigurationDTO
- Type: PGPConfigurationDTO
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<PGPConfigurationDTO>
<data>
<!--content of type 'PGPConfigurationDataDTO'-->
<serverUrls>
<!--content of type 'string'-->
...
</serverUrls>
<serverUrls>
<!--(another 'string' type)-->
</serverUrls>
<!--...more "serverUrls" elements...-->
</data>
</PGPConfigurationDTO>
Example JSON
{
"data" : {
"serverUrls" : [ "...", ... ]
}
}
Type PGPConfigurationDataDTO
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
serverUrls (string) | 0/unbounded | (no documentation provided) |
Type PGPConfigurationDTO
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
data (PGPConfigurationDataDTO) | 0/1 | (no documentation provided) |