A document store is a type of NoSQL database that manages data as self-describing JSON, BSON, or XML documents. Unlike relational databases with rigid schemas, it stores each record as a complete document, often with embedded structures. This model provides high flexibility for evolving data and is optimized for horizontal scaling and high-volume operations. In AI systems, it serves as a foundational persistence layer for raw, unstructured content before semantic processing.
