Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
`true` : canonical Lucee pse when creating or editing a config (e.g. in an IDE). `false` : also includes compatibility aliases for other CFML engines (e.g. ACF's componentPaths alonroperty names only — ugside Lucee's componentMappings) — use when reading/validating an existing config that may originate from another engine.
Empty file.
Empty file.
9 changes: 9 additions & 0 deletions docs/03.reference/01.functions/ConfigSchema/examples.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
```luceescript+trycf

schema = ConfigSchema(); // strict=true

schema = ConfigSchema(false);

dump(serializeJson(schema));

```
9 changes: 9 additions & 0 deletions docs/03.reference/01.functions/ConfigSchema/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: ConfigSchema
id: function-configSchema
related:
- function-configSchema
categories:
- server
---
It returns the JSON Schema (Draft 2020-12) describing all supported Lucee configuration properties (.CFConfig.json), including types, defaults, and allowed values. Useful for validation and IDE autocompletion.
Loading