is it possible to require at least one value for a...
# ask-community
g
is it possible to require at least one value for a list config? I’d like to require at least one value for the
models_to_include
Copy code
@op(
    config_schema={
        "models_to_include": Field(
            [str],
            description="List of Models to include. e.g) 'my_dbt_model+', 'path.to.models', 'tag:nightly'",
        ),
    },
)
🤖 1
j
g
@johann ic. Thank you.