2 dépôts
A layer that transforms application objects into primitive formats for network transmission.
Distinct from Object-Relational Mapping: Distinct from ORM: maps objects to JSON/primitives for APIs, not to database records.
Explore 2 awesome GitHub repositories matching data & databases · Object-Primitive Mapping. Refine with filters or upvote what's useful.
Marshmallow is a Python data serialization library and validation framework. It functions as a bridge that transforms complex application objects into primitive data types for storage or network transmission and vice versa. The library utilizes a schema-based approach to validate that incoming data conforms to specific types and constraints. It employs a two-way transformation pipeline consisting of separate load and dump phases to handle deserialization and serialization. The framework supports class-based schema definitions with declarative field validation and recursive schema nesting for
Functions as a bridge that transforms complex application objects into primitive data types.
Rest-assured is a Java-based REST API testing framework and HTTP client library designed for automating web service tests. It provides a fluent domain-specific language and assertion library to send HTTP requests and validate response metadata, including status codes, headers, cookies, and bodies. The framework is distinguished by a method-chaining DSL that creates readable specifications for API interactions. It features a filter-based request interception pipeline, object-mapping serialization for converting Java objects to JSON or XML, and a path-based parsing system to isolate specific fi
Provides a layer that transforms Java objects into JSON or XML formats for API request transmission.