category
Categories are text fields on the Relativity script object that can help you define the script type. You can also create your own categories.
Hierarchy
- script
- category
Syntax
<category> <!-- string value --> </category>
Default categories
By default, all Relativity library scripts have one of the following:
- Environment Optimization scripts allow you to monitor and maintain the performance of your environment.
- Case Optimization scripts allow you to monitor and maintain the performance of your workspace.
- Case Functionality scripts perform functions against a specific workspace. For example, flag or populate a new field.
- Billing scripts perform administrative tasks providing statistics on your Relativity environment.
Example
<script> <name>Category Example</name> <description></description> <category>test</category> <input></input> <version></version> <action returns="table"> <![CDATA[ Select Top 10 * from artifact ]]> </action> </script>