> For the complete documentation index, see [llms.txt](https://riseclients-organization.gitbook.io/rise-6-scripting-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://riseclients-organization.gitbook.io/rise-6-scripting-api/api-documentation/scripting-metadata.md).

# Scripting metadata

Metadata item starts with a //@. Example:&#x20;

{% hint style="info" %}
This is optional and not required, as there are default values.
{% endhint %}

```javascript
//@ author Codera
//@ version 1.0
//@ description A script for testing the API. Includes a test module and a test command.
//@ noSecurity /* Disabling the security mesaures,     */
               /* script might not load due to         */
               /* Unsafe Script support being disabled */
```

<table><thead><tr><th width="134">Key</th><th width="164">Type</th><th width="297">Description</th><th width="154">Default value</th></tr></thead><tbody><tr><td>author</td><td>String</td><td>The script author, will be displayed in the GUI.</td><td>Unknown author</td></tr><tr><td>version</td><td>String</td><td>Version of the script.</td><td>Unknown version</td></tr><tr><td>description</td><td>String</td><td>Description of what the script does.</td><td>No description provided</td></tr><tr><td>noSecurity</td><td>No value passed</td><td>Allows you to call unsafe functions. <strong>You need to disable Security Measures in the client first, before loading the script, or it will not be loaded.</strong></td><td><code>false</code></td></tr></tbody></table>
