home.social

#jsonpatch — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #jsonpatch, aggregated by home.social.

  1. Just started a new project, `betterer-json`. It's like JSON Patch, except it's javascript.

    You write your script match like a JSON Patch - use JSONPath to select values to process, each value is sent to a callback, and its result is put back in the JSON document.

    This example changes '"format": "datetime"' to '"format": "date-time"' across json document

    ```
    replace('$..format', value => {
    if(value === 'datetime')
    return 'date-time';
    return value
    })
    ```

    github.com/python-lapidary/bet

    #typeScript #javaScript #JSon #JSonPath #JSonPatch #programming

  2. Announcing #dotnet 8 and #NativeAOT support in all of the json-everything libraries!!!

    blog.json-everything.net/posts

    Thanks to Jevan Saks (@jevansaks on GH) and @eiriktsarpalis for their help over the past two weeks putting this together!

    #jsonschema #jsonpath #jsonpatch #jsonlogic #jsonpointer #jsone

  3. Announcing #dotnet 8 and #NativeAOT support in all of the json-everything libraries!!!

    blog.json-everything.net/posts

    Thanks to Jevan Saks (@jevansaks on GH) and @eiriktsarpalis for their help over the past two weeks putting this together!

    #jsonschema #jsonpath #jsonpatch #jsonlogic #jsonpointer #jsone

  4. Announcing #dotnet 8 and #NativeAOT support in all of the json-everything libraries!!!

    blog.json-everything.net/posts

    Thanks to Jevan Saks (@jevansaks on GH) and @eiriktsarpalis for their help over the past two weeks putting this together!

    #jsonschema #jsonpath #jsonpatch #jsonlogic #jsonpointer #jsone

  5. Announcing #dotnet 8 and #NativeAOT support in all of the json-everything libraries!!!

    blog.json-everything.net/posts

    Thanks to Jevan Saks (@jevansaks on GH) and @eiriktsarpalis for their help over the past two weeks putting this together!

    #jsonschema #jsonpath #jsonpatch #jsonlogic #jsonpointer #jsone

  6. Announcing #dotnet 8 and #NativeAOT support in all of the json-everything libraries!!!

    blog.json-everything.net/posts

    Thanks to Jevan Saks (@jevansaks on GH) and @eiriktsarpalis for their help over the past two weeks putting this together!

    #jsonschema #jsonpath #jsonpatch #jsonlogic #jsonpointer #jsone

  7. Describing JSON Patch operations with OpenAPI

    How to describe your JSON Patch endpoints using OpenAPI.

    fed.brid.gy/r/https://www.jvt.