> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SkillParameter

> Provides access to skill parameter values.

`SkillParameter` represents a single skill parameter — its name, type, value, and whether it can be modified.

## Properties

| Name           | Type                                                                                                        | Access level | Description                           |
| :------------- | :---------------------------------------------------------------------------------------------------------- | :----------- | :------------------------------------ |
| **IsReadOnly** | bool                                                                                                        | Read-write   | `true` if the parameter is read-only. |
| **Name**       | string                                                                                                      | Read-only    | The name of the skill parameter.      |
| **Type**       | [SkillParameterType](/vantage/documentation/skill-designer/document/rule-verification/skill-parameter-type) | Read-only    | The type of the skill parameter.      |
| **Value**      | string                                                                                                      | Read-write   | The value of the skill parameter.     |

<Warning>
  Writing to a parameter whose `IsReadOnly` is `true` interrupts rule execution with an error.
</Warning>

## Related topics

<CardGroup cols={2}>
  <Card title="Context" icon="braces" href="/vantage/documentation/skill-designer/document/rule-verification/context">
    The Context global object — access the document, fields, and skill parameters from inside a rule.
  </Card>

  <Card title="SkillParameterType" icon="list" href="/vantage/documentation/skill-designer/document/rule-verification/skill-parameter-type">
    Enumeration of the possible skill parameter types.
  </Card>

  <Card title="Parameter" icon="square-code" href="/vantage/documentation/skill-designer/document/rule-verification/parameter">
    A single transaction parameter value.
  </Card>

  <Card title="Object model" icon="diagram-project" href="/vantage/documentation/skill-designer/document/rule-verification/object-model">
    Full JavaScript object reference for use in Advanced Script Rules.
  </Card>
</CardGroup>
