node icon indicating copy to clipboard operation
node copied to clipboard

A formatted data encapsulation meant to facilitate the transformation from one object to another

Results 7 node issues
Sort by recently updated
recently updated
newest added

Feature request for Node 3.0. It would be very nice if node errors included their keys. This will probably take some work to implement since we will need to pass...

enhancement

Currently `StructuredData.Number` is limited to `int`, `uint` and `double`, which is perfectly fine for people who use 32 bit integers and 64 bit integers on 64 bit platforms. But if...

_This is an older issue I forgot to report, but still happening with the latest versions of the framework. It's easiest to reproduce with Fluent, but the underlying issue is...

bug

Would it be possible to implement a `Hashable` extension to `StructuredData` ? I see we already provide an implementation for `equals`, so this would be a nice addition, as it...

enhancement

This makes using more type-safe key names easier. ```swift foo = try json.get(Post.fooKey, Foo.barKey, Bar.idKey) ```

enhancement

### Code ```swift try json.get("permissions") as [String] ``` ### Input ```json { "userId": "xxx" } ``` ### Error ```json { "debugReason": "No value found at path '', expected 'String'", "error":...