Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(): cfgu props hidden and labels #77

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions content/Concepts/cfgu.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,14 @@ The `Cfgu` format represents a set of properties that define essential character
- This property is optional.
- **options**: Specifies a list of values that the configuration value must match.
- This property is optional.
- **labels**: Specifies a list of labels that can be used to categorize the configuration.
- This property is optional.
- Labels can be leveraged as filters in export operations, allowing for selective inclusion or exclusion of configurations based on specified them.
- **schema**: Specifies a [JSON-schema](https://json-schema.org/specification) that the configuration value must match.
- This property is optional and applicable when the type is set to JSONSchema.
- **hidden**: Specifies that a configuration key should be hidden from the export results.
- This property is optional.
- Hidden keys will be excluded from export results but can still be utilized within the context for evaluations and other internal operations.
- **lazy**: Specifies that a value for a given configuration key should only be set during the [eval command](../commands/#eval-and-export) execution.
- This property is optional.
- Existing store values are omitted during evaluations.
Expand Down