--- title: Auth --- ## Encrypted credentials The authentication type. The name of the credentials. I.e. `Twitter account`, `OpenAI account`, `Stripe keys`, etc. The schema of the data that needs to be stored. See [Options](./options) for more information. Example: ```ts option.object({ apiKey: option.string.layout({ isRequired: true, label: 'API key', withVariableButton: false, }), }) ```