> For the complete documentation index, see [llms.txt](https://chimu.gitbook.io/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://chimu.gitbook.io/api/scheme/any-custom-field.md).

# Any custom field

You can customize scheme as you want.

### Example:

Sometime you need create custom path. You can add function for you request.

```javascript
{
   ...
   setUserid(value) {
      this.meta.path = `/users/${value}/labels/favorite`;
   },
   meta: {
     method: 'delete',
     path: '',
   },
   ...
}
```
