Created
February 23, 2026 16:54
-
-
Save adutra/1b6adb2c169c08bd91cd2a01ab4338d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| LoadGenericTableResponse: | |
| description: Result used when a table is successfully loaded. | |
| type: object | |
| required: | |
| - table | |
| properties: | |
| table: | |
| $ref: '#/components/schemas/GenericTable' | |
| defaults: | |
| type: object | |
| description: Default configuration for IO clients working on this table. | |
| additionalProperties: | |
| type: string | |
| overrides: | |
| type: array | |
| description: A list of storage prefix-specific overrides that apply on top of the defaults. | |
| If several overrides are applicable to a given path, clients should apply the ones having the most specific (i.e. longest) | |
| matching prefix. | |
| items: | |
| $ref: '#/components/schemas/PrefixOverrides' | |
| PrefixOverrides: | |
| type: object | |
| description: Prefix-specific overrides that apply on top of the table defaults. | |
| required: | |
| - prefix | |
| - overrides | |
| properties: | |
| prefix: | |
| type: string | |
| description: Indicates a storage location prefix where this config is relevant. | |
| overrides: | |
| type: object | |
| description: Configuration overrides that should be used when working with the given prefix. | |
| additionalProperties: | |
| type: string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment