Skip to content
Merged
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
11 changes: 6 additions & 5 deletions modules/concepts/pages/overrides.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ The `jsonPatch` is more complicated than the `jsonMergePatch`, but offers more f
----
configOverrides:
config.json:
jsonPatches:
- '{"op": "test", "path": "/0/name", "value": "Andrew"}'
- '{"op": "add", "path": "/0/happy", "value": true}'
- '{"op": "remove", "path": "/0/birthDate"}'
jsonPatch:
- {"op": "test", "path": "/0/name", "value": "Andrew"}
- {"op": "add", "path": "/0/happy", "value": true}
- {"op": "remove", "path": "/0/birthDate"}
----

==== User provided JSON
Expand Down Expand Up @@ -117,7 +117,8 @@ configOverrides:
config.json:
userProvided:
myString: test
myList: [test]
myList:
- test
myBool: true
my:
nested.field.with.dots: 42
Expand Down
Loading