Overview
WaveAssist supports storing and retrieving JSON-compatible Python objects (dictionaries and lists).Working with JSON Data
Supported Data Types
- Dictionaries
- Lists
- Strings
- Numbers (int, float)
- Boolean
- Null
- Nested structures
JSON Limitations
- Maximum size: 5MB
- Must be JSON-serializable
- Keys must be strings
- No support for custom objects
Best Practices
- Validate JSON structure before storing
- Use consistent key naming
- Handle nested data carefully
- Consider data organization