3 रिपॉजिटरी
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 एक Ruby ऑब्जेक्ट सीरियलाइज़र है जिसे जटिल बैकएंड डेटा ऑब्जेक्ट्स को स्ट्रक्चर्ड JSON अभ्यावेदन में बदलने के लिए डिज़ाइन किया गया है। यह विशेष रूप से सर्वर और क्लाइंट के बीच कंसिस्टेंट डेटा एक्सचेंज सुनिश्चित करने के लिए JSON:API फॉर्मेट को लागू करता है। लाइब्रेरी एक कंपाउंड डॉक्यूमेंट जनरेटर के रूप में कार्य करती है, जो नेटवर्क अनुरोधों को कम करने के लिए संबंधित संसाधनों को एक ही प्रतिक्रिया के भीतर एम्बेड करने की अनुमति देती है। यह सार्वजनिक API अभ्यावेदन से आंतरिक डेटाबेस मॉडल को अलग करने के लिए क्लास-आधारित स्कीमा परिभाषा का उपयोग करती है। प्रोजेक्ट में डेटाबेस स्कीमा को स्कैन करके सीरियलाइज़र बॉयलरप्लेट उत्पन्न करने के लिए एक कमांड-लाइन टूल शामिल है। प्रदर्शन को की-आधारित आउटपुट कैशिंग और इंस्ट्रूमेंटेशन टूल के माध्यम से मैनेज किया जाता है जो सीरियलाइजेशन और एन्कोडिंग प्रक्रियाओं की निष्पादन लेटेंसी को ट्रैक करते हैं।
Generates compound documents by embedding related resources in a flat structure within a single JSON response.