## Summary of Changes
### Sequence Configuration Language
- You can now use `"""` to indicate a multiline string with no escapes.
```scl
"""
{
"Json" : "Value"
}
"""
```
- Entity Properties can now be accessed using dot notation
```scl
- <entity> = (foo: (bar: 1, baz: 2))
- Print <entity>.foo.bar
# Returns: 1
```
- Added code completion for entity property access by dot notation
- Entity type references now optionally have an associated schema which can be set by the steps which create entities and checked by steps which use those entities.
- SCL like `(foo: 1)['bar']` now results in an error when the SCL is validated, rather than when it's running
For more details see the changelog: https://gitlab.com/reductech/sequence/core/-/blob/v0.15.0/CHANGELOG.md