Document-Oriented Storage
NoSQL databases often store data in flexible, semi-structured documents (e.g., JSON) rather than rigid tables.
📜
The statement of the theorem
Let be the set of documents. A document is modeled as a recursive structure, , where is the set of keys and is the value type. The value type can be an atomic element (e.g., ) or a nested document, . Formally, can be represented as a set of pairs , where itself adheres to the structure . This allows for arbitrary nesting and heterogeneous data types within a single record.
Source: Wikipedia