3 dépôts
Recursive data structures used to represent and manipulate JSON data without a predefined schema.
Distinguishing note: Existing candidates focus on searching or rendering trees; this is the fundamental data representation itself.
Explore 3 awesome GitHub repositories matching data & databases · Recursive JSON Value Trees. Refine with filters or upvote what's useful.
This is a Rust serialization library for converting data structures to and from JSON strings and byte streams. It is built as a framework within the Serde ecosystem, providing both a strongly typed parser for compile-time safety and a recursive value tree for manipulating JSON data without a predefined schema. The project supports both typed and untyped processing. It can map JSON data into specific Rust types for schema conformity or parse input into a flexible, schemaless representation. It also includes macro-based utilities for the dynamic construction of JSON objects.
Provides a recursive enum-based tree representation for manipulating schemaless JSON data.
jless est un explorateur JSON interactif et une visionneuse en ligne de commande conçue pour lire et naviguer dans des structures de données hiérarchiques au sein d'un terminal. Il fonctionne comme un formateur JSON de terminal qui affiche joliment les données provenant de fichiers ou de l'entrée standard, avec un support pour les formats délimités par des retours à la ligne. L'outil sert d'extracteur de chemin JSON, permettant aux utilisateurs d'identifier et de copier les chemins en notation pointée ou entre crochets depuis la racine jusqu'à des nœuds spécifiques. Il inclut également un utilitaire de recherche par regex pour localiser des clés et des valeurs spécifiques dans des jeux de données JSON en utilisant des expressions régulières plein texte. L'application offre des capacités de navigation hiérarchique, permettant aux utilisateurs de développer et réduire les objets et tableaux. Elle propose la coloration syntaxique, la numérotation de lignes configurable et la possibilité d'extraire directement les valeurs ou clés de nœuds ciblés vers le presse-papier système.
Uses recursive value trees to represent JSON, enabling the selective expansion and collapse of nodes.
go-simplejson is a JSON manipulation library for Go that provides schemaless parsing and modification of arbitrary JSON data. It serves as a wrapper for interacting with JSON structures without requiring the definition of predefined structs or schemas. The library enables dynamic processing of JSON payloads through a recursive tree structure and a mutable node hierarchy. This allows for the extraction and modification of values from complex, nested objects where the data format may be unknown or change dynamically. The project covers arbitrary JSON parsing and the retrieval of data from dyna
Represents nested JSON objects and arrays as a recursive tree of nodes for dynamic traversal without schemas.