3 Repos
Techniques for including related resources in a single response without using nested serialization.
Distinct from Document Embedding: Focuses on the 'includes' parameter pattern for flat embedding rather than traditional document nesting/denormalization.
Explore 3 awesome GitHub repositories matching data & databases · Compound Document Embeddings. Refine with filters or upvote what's useful.
JSON API is a set of industry standards for RESTful APIs that defines uniform protocols for resource serialization, error responses, and query parameters. It provides a specification for request and response payloads in JSON-based APIs to ensure consistency across endpoints. The specification focuses on reducing network requests through a structured resource serialization format and a standardized mechanism for embedding related resources into a single response. It utilizes a custom JSON media type for content negotiation and supports the definition of custom profiles to provide specialized i
Includes related resources alongside primary data in a single response using a reserved includes parameter.
NPOI is a pure .NET library for reading and writing Microsoft Office files in both legacy binary (.xls) and modern OpenXML (.xlsx, .docx) formats, operating entirely without requiring Microsoft Office or COM interop. It runs on Windows and Linux under .NET Standard and .NET Framework runtimes, using only managed code to parse and generate Office documents. The library provides comprehensive spreadsheet capabilities, including creating, editing, and reading Excel workbooks in both .xls and .xlsx formats, with support for cell formatting, styles, and formulas. It includes a streaming row-by-row
Opens legacy .xls files by reading OLE2 compound storage structures.
fast_jsonapi ist ein Ruby-Objekt-Serializer, der darauf ausgelegt ist, komplexe Backend-Datenobjekte in strukturierte JSON-Repräsentationen zu transformieren. Er implementiert spezifisch das JSON:API-Format, um einen konsistenten Datenaustausch zwischen Servern und Clients zu gewährleisten. Die Bibliothek fungiert als Generator für zusammengesetzte Dokumente, der es ermöglicht, verwandte Ressourcen in eine einzige Antwort einzubetten, um Netzwerkanfragen zu minimieren. Sie verwendet eine klassenbasierte Schemadefinition, um interne Datenbankmodelle von der öffentlichen API-Repräsentation zu entkoppeln. Das Projekt enthält ein Command-Line-Tool zur Generierung von Serializer-Boilerplate durch Scannen von Datenbankschemata. Die Performance wird durch schlüsselbasiertes Ausgabe-Caching und Instrumentierungs-Tools verwaltet, die die Ausführungslatenz der Serialisierungs- und Encoding-Prozesse verfolgen.
Generates compound documents by embedding related resources in a flat structure within a single JSON response.