# Permission

### Example item permission

```yaml
  my_armor_simple_helmet:
    display_name: my_armor_simple helmet
    permission_suffix: my_armor_simple
    resource:
      generate: true
    durability:
      max_custom_durability: 275
    specific_properties:
      armor:
        slot: head
        color: '#ff0001'
    attribute_modifiers:
      head:
        armor: 9
        armorToughness: 1
```

## How to make the item visible in the `/ia` gui

To allow your players to **see** this item in `/ia` GUI you have to give them permission: `ia.user.ia.seeitem.my_armor_simple`

{% hint style="info" %}
Remember to give them permission `ia.user.ia` to let them use `/ia` command
{% endhint %}

{% hint style="warning" %}
Remember to create a [category ](/japanese/plugin-usage/ia.md)for the `/ia` GUI.
{% endhint %}

## Recipes permissions

### Example

**Permission**: `ia.user.recipe.iasurvival.cooked_sausage`

```yaml
info:
  namespace: iasurvival
recipes:
  cooking:
    cooked_sausage:
      permission: iasurvival.cooked_sausage
      ingredient:
        item: iasurvival:sausage
      machines:
        - FURNACE
        - BLAST_FURNACE
      exp: 1
      cook_time: 200
      result:
        item: iasurvival:cooked_sausage
        amount: 1
```

## Read more about permissions

{% content-ref url="/pages/ioRCLKrqJxa9y0Jc03Po" %}
[Permissions](/japanese/plugin-usage/permissions.md)
{% endcontent-ref %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://itemsadder.devs.beer/japanese/plugin-usage/adding-content/item-properties/permission.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
