Api Key Auth
Api Key Auth resource type schema.
| 1 | { |
| 2 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 3 | "properties": { |
| 4 | "api_key_header": { |
| 5 | "type": "string", |
| 6 | "description": "", |
| 7 | "default": "", |
| 8 | "nullable": false |
| 9 | }, |
| 10 | "api_key_secret": { |
| 11 | "type": "string", |
| 12 | "description": "", |
| 13 | "default": "", |
| 14 | "nullable": false |
| 15 | } |
| 16 | }, |
| 17 | "required": [ |
| 18 | "api_key_header", |
| 19 | "api_key_secret" |
| 20 | ], |
| 21 | "type": "object", |
| 22 | "order": [ |
| 23 | "api_key_header", |
| 24 | "api_key_secret" |
| 25 | ] |
| 26 | } |