V2 Resource Descriptor Types

The following sections show the name and attributes of each descriptor for repositry resources used by the v2/resources service.

Common Attributes

All resource types contain the following attributes. Of these common attributes, only the label and description fields are writable.

In general, writable fields are ones that can be set by the client when sending a descriptor for a write or update operation (PUT or POST). The other fields are read-only fields that the server sets automatically.

application/repository.{resourceType}+json

application/repository.{resourceType}+xml

{
    "uri" :"/sample/resource/uri", 
    "label":"Sample Label", 
    "description":"Sample Description", 
    "permissionMask":"0",
    "creationDate": "2013-07-04T12:18:47",
    "updateDate": "2013-07-04T12:18:47", 
    "version":"0"
    ... 
}
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<{resourceType}>
    <uri>/sample/resource/uri</uri>
    <label>Sample Label</label>
    <description>Sample Description
        </description>
    <permissionMask>0</permissionMask>
    <creationDate>2013-07-04T12:18:47
        </creationDate>
    <updateDate>2013-07-04T12:18:47
        </updateDate>
    <version>0</version>
    ...
</{resourceType}>

Throughout the rest of the resource type sections, the common attributes are included in every descriptor as {commonAttributes}.

Folder

Folder types do not contain any additional fields beyond the common attributes shown above.

application/repository.folder+json

application/repository.folder+xml

{
    "uri" :"{resourceUri}", 
    "label":"Sample Label", 
    "description":"Sample Description", 
    "permissionMask":"0",
    "creationDate": "2013-07-04T12:18:47",
    "updateDate": "2013-07-04T12:18:47", 
    "version":"0" 
}
<folder>
    <uri>/sample/resource/uri</uri>
    <label>Sample Label</label>
    <description>Sample Description
      </description>
    <permissionMask>0</permissionMask>
    <creationDate>2013-07-04T12:18:47
      </creationDate>
    <updateDate>2013-07-04T12:18:47
       </updateDate>
    <version>0</version>
</folder>

Only the label and description fields are writable.

JNDI Data Source

application/repository.jndiJdbcDataSource+json

application/repository.jndiJdbcDataSource+xml

{
    {commonAttributes}, 
    "jndiName":"{jndiName}",
    "timezone":"{timezone}"
}
<jndiDataSource>
    {commonAttributes}
    <jndiName>{jndiName}</jndiName>
    <timezone>{timezone}</timezone>
</jndiDataSource>

JDBC Data Source

application/repository.jdbcDataSource+json

application/repository.jdbcDataSource+xml

{
    {commonAttributes}, 
    "driverClass":"{driverClass}", 
    "password":"{password}", 
    "username":"{username}", 
    "connectionUrl":"{connectionUrl}",
    "timezone":"{timezone}"
}
<jdbcDataSource>
    {commonAttributes}
    <driverClass>{driverClass}</driverClass>
    <password>{password}</password>
    <username>{username}</username>
    <connectionUrl>
         {connectionUrl}
    </connectionUrl>
    <timezone>{timezone}</timezone>
</jdbcDataSource>

AWS Data Source

application/repository.awsDataSource+json

application/repository.awsDataSource+xml

{
    {commonAttributes}, 
    "driverClass":"{driverClass}", 
    "password":"{password}", 
    "username":"{username}", 
    "connectionUrl":"{connectionUrl}",
    "timezone":"{timezone}",
    "accessKey":"{accessKey}", 
    "secretKey":"{secretKey}", 
    "roleArn":"{roleArn}", 
    "region":"{region}", 
    "dbName":"{dbName}", 
    "dbInstanceIdentifier":"{dbInstanceIdentifier}", 
    "dbService":"{dbService}"
}
<awsDataSource>
    {commonAttributes}
    <driverClass>{driverClass}</driverClass>
    <password>{password}</password>
    <username>{username}</username>
    <connectionUrl>
         {connectionUrl}
    </connectionUrl>
    <timezone>{timezone}</timezone>
    <accessKey>{accessKey}</accessKey> 
    <secretKey>{secretKey}</secretKey> 
    <roleArn>{roleArn}</roleArn> 
    <region>{region}</region> 
    <dbName>{dbName}</dbName> 
    <dbInstanceIdentifier> 
        {dbInstanceIdentifier}
    </dbInstanceIdentifier> 
    <dbService>{dbService}</dbService>
</awsDataSource>

Virtual Data Source

The id of each subDataSource must be unique. The server does not prevent duplicates, and the last one to be defined silently overwrites the previous definition.

application/repository.virtualDataSource+json

application/repository.virtualDataSource+xml

{
    {commonAttributes}, 
    "subDataSources":[ 
        { 
            "id":"{subDataSourceId}", 
            "uri":"{subDataSourceUri}" 
        }, 
        ...
    ] 
}
<virtualDataSource>
    {commonAttributes}
    <subDataSources>
        <subDataSource>
            <id>{subDataSourceId}</id>
            <uri>{subDataSourceUri}</uri>
        </subDataSource>
        ...
    </subDataSources>
</virtualDataSource>

Custom Data Source

The value of the serviceClass attribute is read-only and depends on the specific type of the custom data source, as defined in the server's applicationContext configuration files.

application/repository.customDataSource+json

application/repository.customDataSource+xml

{
    {commonAttributes}, 
    "serviceClass":"{serviceClass}",   
    "dataSourceName":"{dataSourceName}", 
    "properties":[ 
        {
            "key":"{key}",
            "value":"{value}"
        }, 
        ...
    ] 
}
<customDataSource>
    {commonAttributes}
    <serviceClass>
        {serviceClass}
    </serviceClass>
    <dataSourceName>
        {dataSourceName}
    </dataSourceName>
    <properties>
        <property>
            <key>{key}</key>
            <value>{value}</value>
        </property>
        ...
    </properties>
</customDataSource>

Bean Data Source

application/repository.beanDataSource+json

application/repository.beanDataSource+xml

{
    {commonAttributes}, 
    "beanName":"{beanName}", 
    "beanMethod":"{beanMethod}"
}
<beanDataSource>
    {commonAttributes}
    <beanName>{beanName}<beanName>
    <beanMethod>{beanMethod}</beanMethod>
</beanDataSource>

XML/A Connection

application/repository.xmlaConnection+json

application/repository.xmlaConnection+xml

{
    {commonAttributes}, 
    "url":"{xmlaServiceUrl}", 
    "xmlaDataSource":"{xmlaDataSource}", 
    "catalog":"{catalog}", 
    "username":"{username}", 
    "password":"{password}"
}
<xmlaConnection>
    {commonAttributes}
    <url>{xmlaServiceUrl}</url>
    <xmlaDataSource>
        {xmlaDataSource}
    </xmlaDataSource>
    <catalog>{catalog}</catalog>
    <username>{username}</username>
    <password>{password}</password>
</xmlaConnection>

Datatypes

application/repository.dataType+json

application/repository.dataType+xml

{
    {commonAttributes}, 
    "type":"text|number|date|dateTime|time", 
    "pattern":"{pattern}", 
    "maxValue":"{maxValue}", 
    "strictMax":"true|false", 
    "minValue":"{minValue}", 
    "strictMin":"true|false"   
    "maxLength":"{maxLengthInteger}"
}
<dataType>
    {commonAttributes}
    <type>text|number|date|dateTime|time</type>
    <pattern>{pattern}</pattern>
    <maxValue>{maxValue}</maxValue>
    <strictMax>true|false</strictMax>
    <minValue>{minValue}</minValue>
    <strictMin>true|false</strictMin>
    <maxLength>{maxLengthInteger}</maxLength>
</dataType>

List of Values

application/repository.listOfValues+json

application/repository.listOfValues+xml

{
    {commonAttributes}, 
    "items":[
        {
            "label":"{label}",
            "value":"{value}"
        },
        ...
    ]
}
<listOfValues>
    {commonAttributes}
    <items>
        <item>
            <label>{label}</label>
            <value>{value}</value>
        </item>
        ...
    </items>
</listOfValues>

Query

The dataSource field of the query is nullable. Set an empty dataSource field when you want to remove a local datasource, either a reference or a local definition. When the data source of a query is not defined, the query uses the data source of its parent, for example its JRXML report (reportUnit).

application/repository.query+json

application/repository.query+xml

{
    {commonAttributes}, 
    "value":"{query}", 
    "language":"{language}",
    "dataSource":{
        "dataSourceReference": {
            "uri":"{dataSourceUri}"
        }
    } 
}
<query>
    {commonAttributes}
    <value>{query}</value> 
    <language>{language}</language>
    <dataSourceReference>
        <uri>{dataSourceUri}</uri>
    </dataSourceReference>
</query>

Input Control

Input controls come in several types that require different fields. The following table shows all possible fields, not all of which are mutually compatible.

application/repository.inputControl+json

application/repository.inputControl+xml

{
    {commonAttributes}, 
    "mandatory":"{true|false}",  
    "readOnly":"{true|false}",  
    "visible":"{true|false}",  
    "type":"{inputControlTypeByteValue}",
    "usedFields":"{field1;field2;...}",
    "dataType": {
        "dataTypeReference": {
            "uri": "{dataTypeResourceUri}"
        }
    },  
    "listOfValues": {
        "listOfValuesReference": {
            "uri": "listOfValuesResourceUri"
        }
    }  
    "visibleColumns":["column1", "colum2", ...],  
    "valueColumn":"{valueColumn}",  
    "query": {
        "queryReference": {
            "uri": "{queryResourceUri}"
        }
    }
}
<inputControl>
    {commonAttributes}
    <mandatory>true|false</mandatory>
    <readOnly>true|false</readOnly>
    <visible>true|false</visible>
    <type>{inputControlTypeByteValue}</type>
    <usedFields>{field1;field2;...}</usedFields>
    <dataTypeReference>
        <uri>{dataTypeResourceUri}</uri>
    </dataTypeReference>
    <listOfValuesReference>
        <uri>{listOfValuesResourceUri}</uri>
    </listOfValuesReference>
    <queryReference>
        <uri>{queryResourceUri}</uri>
    </queryReference>
    <visibleColumns>
        <column>{column1}</column>
        <column>{column2}</column>
        <column>...</column>
    </visibleColumns>
    <valueColumn>{valueColumn}</valueColumn>
</inputControl>

The following list shows the numerical code and meaning for the {inputControlTypeByteValue}. The input control type determines the other fields that are required. The list of required fields may appear in a field named usedFields, separated by semi-colons (;).

"type"

Type of Input Control

Other Fields Required (usedFields)

1

Boolean

None

2

Single value

dataType

3

Single-select list of values

listOfValues

4

Single-select query

query; queryValueColumn

5

Not used

6

Multi-select list of values

listOfValues

7

Multi-select query

query; queryValueColumn

8

Single-select list of values radio buttons

listOfValues

9

Single-select query radio buttons

query; queryValueColumn

10

Multi-select list of values check boxes

listOfValues

11

Multi-select query check boxes

query; queryValueColumn

File

The repository.file+<format> descriptor is used to identify the file type. The content field is used only when uploading a file resource as base-64 encoded content. For other ways to upload file contents, see Uploading File Resources. The content field is absent when requesting a file resource descriptor. For more information, see Downloading File Resources.

application/repository.file+json

application/repository.file+xml

{
    {commonAttributes}, 
    "type":"pdf|html|xls|rtf|csv|odt|txt
            |docx|ods|xlsx|img|font|jrxml
            |jar|prop|jrtx|xml|css
            |olapMondrianSchema
            |accessGrantSchema
            |unspecified}",
    // content is write-only;
    // it is not included in a response
    "content":"{base64EncodedContent}"
}
<file>
    {commonAttributes}
    <type>pdf|html|xls|rtf|csv|odt|txt
        |docx|ods|xlsx|img|font|jrxml
        |jar|prop|jrtx|xml|css
        |olapMondrianSchema
        |accessGrantSchema|unspecified}
    </type>
    <content>{base64EncodedContent}</content>
</file>

Report Unit (JRXML Report)

A report unit contains mostly references to the files that make up a report within the server. A report unit is a composite resource that may contain other local resources. In this case, the URIs that it references include a URI in the following format:

<reportUnitURI>_files/<localResourceID>

For example, the main JRXML of a sample report is referenced as follows:

/reports/samples/Cascading_multi_select_report_files/Cascading_multi_select_report

For more information, see V2 Resource Descriptor Types.

application/repository.reportUnit+json

application/repository.reportUnit+xml

{
    {commonAttributes}, 
    "alwaysPromptControls":
        "{true|false}",
    // default is "popupScreen"
    "controlsLayout":
        "{popupScreen|separatePage
          |topOfPage|inPage}",
    "inputControlRenderingView":
        "{inputControlRenderingView}",    
    "reportRenderingView":
        "{reportRenderingView}",
    "dataSource":{
        "dataSourceReference": {
            "uri":"{dataSourceUri}"
        }
    },
    // "query" is nullable
    "query:" {
        "queryReference": {
            uri: "{queryResourceUri}"
        }
    },  
    "jrxml": {
        "jrxmlFileReference": {
            "uri": "{jrxmlFileResourceUri}"
        } or
        "jrxmlFile": {
            "label": "Main jrxml",
            "type": "jrxml"
        }
    }
    "inputControls": [
        {
            "inputControlReference": {
                "uri": "{inputControlUri}"
            }
        },
        ...
    ],
    "resources": [
        "resource": {
            "name": "{resourceName}",
            "file": {contents} <*>
            }
        },
        ...
    ]
}
<*> or "fileReference": {
          "uri": "{fileResourceUri}"
       }
<reportUnit>
    {commonAttributes}
    <alwaysPromptControls>true|false
        </alwaysPromptControls>
    <!-- default is "popupScreen" -->
    <controlsLayout>
        popupScreen|separatePage
        |topOfPage|inPage
    </controlsLayout>
    <inputControlRenderingView>
        {inputControlRenderingView}
    </inputControlRenderingView>
    <reportRenderingView>
        {reportRenderingView}
    </reportRenderingView>
    <dataSource>
        <dataSourceReference>
            <uri>{dataSourceUri}</uri>
        </dataSourceReference>
    </dataSource>
    <query>
        <queryReference>
            <uri>{queryResourceUri}</uri>
        </queryReference>
    </query>
    <jrxml>  
        <jrxmlFileReference>
            <uri>{jrxmlFileResourceUri}</uri>
        </jrxmlFileReference>
    </jrxml>
    <inputControls>
        <inputControlReference>
            <uri>{inputControlUri}</uri>
        </inputControlReference>
        ...
    </inputControls>
    <resources>
        <resource>
            <name>{resourceName}</name>
            <file>contents</file> {*}
        </resource>
        ...
    </resources>    
</reportUnit>
 
{*} or <fileReference>
          <uri>{fileResourceUri}</uri>
       </fileReference>

Report Options

application/repository.reportOptions+json

application/repository.reportOptions+xml

{
    {commonAttributes}, 
    "reportUri":"{reportUri}",   
    "reportParameters":[  
        { 
            "name":"{parameterName}", 
            "value":[ 
                "value_1", 
                "value_2", 
                ...
            ] 
        },  
        ...    
    ]  
}
<reportOptions>
    {commonAttributes}
    <reportUri>{reportUri}</reportUri>
    <reportParameters>
        <reportParameter>
            <name>{parameterName}</name>
            <value>value_1</value>
            <value>value_2</value>
            ...
        </reportParameter>
        ...
    </reportParameters>
</reportOptions>

Domain (semanticLayerDataSource)

For more information about accessing the schema of a Domain, see The v2/domains/metadata Service.

application/repository.semanticLayerDataSource+json

application/repository.semanticLayerDataSource+xml

{
    {commonAttributes}, 
    "dataSource":{
        "dataSourceReference": {
            "uri":"{dataSourceUri}"
        }
    }, 
    "schema": {
        "schemaFileReference": {
            "uri": "{schemaFileResourceUri}"
        }
    }, 
    "bundles": [
        {
            // empty localeString indicates default bundle
            "locale": "{localeString}",
            "file": {
                "fileReference": {
                    "uri": "{propertiesFileResourceUri}"
                }
            }
        }, 
        ...
    ], 
    "securityFile": {
        "securityFileReference": {
            "uri": "{securityFileResourceUri}"
        }
    }
}
<semanticLayerDataSource>
    {commonAttributes}
    <dataSourceReference>
        <uri>{dataSourceUri}</uri>
    </dataSourceReference>
    <schemaFileReference>
        <uri>{schemaFileResourceUri}</uri>
    </schemaFileReference>
    <bundles>
        <bundle>
            <!-- <locale/> indicates default bundle -->
            <locale>{localeString}</locale>
            <fileReference>
                <uri>{propertiesFileResourceUri}</uri>
            </fileReference>
        </bundle> 
        ...
    </bundles> 
    <securityFileReference>
        <uri>{securityFileResourceUri}</uri>
    </securityFileReference>
</semanticLayerDataSource>

Domain Topic

A Domain Topic is a Topic created by selecting database fields from a Domain. It is structurally equivalent to a JRXML report, and thus it has the same type attributes (see Report Unit (JRXML Report)). The only difference is that the data source field will reference a Domain (semanticLayerDataSource).

application/repository.domainTopic+json

application/repository.domainTopic+xml

Same attributes as
application/repository.reportUnit+json

Same attributes as
application/repository.reportUnit+xml

Mondrian Connection

Mondrian connections without the access grant schemas are used in the communuity edition of JasperReports Server.

application/repository.mondrianConnection+json

application/repository.mondrianConnection+xml

{
    {commonAttributes}, 
    "dataSource":{
        "dataSourceReference": {
            "uri":"{dataSourceUri}"
        }
    },
    "schema": {
        "schemaReference": {
            "uri": "{schemaFileResourceUri}"
        }
    }
}
<mondrianConnection>
    {commonAttributes}
    <dataSourceReference>
        <uri>{dataSourceUri}</uri>
    </dataSourceReference>
    <schemaReference>
        <uri>{schemaFileResourceUri}</uri>
    </schemaReference>
</mondrianConnection>

Secure Mondrian Connection

Secure Mondrian Connections are available only in commercial releases of JasperReports Server.

application/repository.secureMondrianConnection+json

application/repository.secureMondrianConnection+xml

{
    {commonAttributes}, 
    "dataSource":{
        "dataSourceReference": {
            "uri":"{dataSourceUri}"
        }
    }, 
    "schema": {
        "schemaReference": {
            "uri": "{schemaFileResourceUri}"
        }
    }, 
    "accessGrantSchemas": [
        {
            "accessGrantSchemaReference": {
                "uri": "{accessGrantSchemaFileResourceUri}"
            }
        },
        ...
    ]
}
<secureMondrianConnection>
    {commonAttributes}
    <dataSourceReference>
        <uri>{dataSourceUri}</uri>
    </dataSourceReference>
    <schemaReference>
        <uri>{schemaFileResourceUri}</uri>
    </schemaReference>
    <accessGrantSchemas>
        <accessGrantSchemaReference>
            <uri>{accessGrantSchemaFileResourceUri}</uri>
        </accessGrantSchemaReference>
    </accessGrantSchemas>
</secureMondrianConnection>

OLAP Unit

application/repository.olapUnit+json

application/repository.olapUnit+xml

{
    {commonAttributes}, 
    "mdxQuery":"{mdxQuery}", 
    "olapConnection": { 
        "olapConnectionReference": {         
            "uri": "{olapConnectionReferenceUri}"      
        }  
    } 
}
<olapUnit>
    {commonAttributes}
    <mdxQuery>{mdxQuery}</mdxQuery>  
    <olapConnectionReference>
      <uri>{olapConnectionReferenceUri}</uri>
    </olapConnectionReference> 
</olapUnit>

Mondrian XML/A Definition

application/repository.mondrianXmlaDefinition+json

application/repository.mondrianXmlaDefinition+xml

{
    {commonAttributes}, 
    "catalog":"{catalog}", 
    "mondrianConnection": {
        "mondrianConnectionReference": {
            "uri": "{mondrianConnectionResourceUri}"
        }
    } 
}
<mondrianXmlaDefinition>
    {commonAttributes}
    <catalog>{catalog}</catalog>
    <mondrianConnectionReference>
        <uri>{mondrianConnectionResourceUri}</uri>
    </mondrianConnectionReference>
</mondrianXmlaDefinition>

Other Types

The following types are defined in commercial editions of the server and appear in the repository. However, they are meant only to describe the corresponding resources as read-only objects in the repository. The REST API does not support services for clients to create or modify these types.

The types in the following table contain only the Common Attributes.

Type String

Description

application/repository.dashboard+json
application/repository.dashboard+xml

The dashboard resource descriptors are deprecated and subject to change.

application/repository.adhocDataView+json
application/repository.adhocDataView+xml

The Ad Hoc view type is not fully defined yet and subject to change. Ad Hoc views may be referenced as data sources in other repository types, in which case they are called advDataSource.

Feedback