FacetedMetadata Data Type
Base class for metadata that is contains facets for storing extensions by various plugins.
| name | data type | description |
|---|---|---|
| facetIds | array of string | Get all the keys of the facets available on this metadata. |
| facetList | array of object | Get all the facets available on this metadata. |
| facets | object | Get all available facets as a Map (typically used by bean rendering, such as in Archiva's JSPs). |
Example
{
"facetList" : [ { }, { } ],
"facetIds" : [ "...", "..." ],
"facets" : {
"property1" : "...",
"property2" : "..."
}
}