Operation to store, update, or delete an item.
Controls how the item's fields are indexed for search operations.
Path syntax supports:
Unique identifier within the namespace. Together with namespace forms the complete path to the item.
Hierarchical path for the item.
The stored data as an object. Keys are filterable.
// Index specific fields
index: ["metadata.title", "chapters[*].content"]
// Disable indexing
index: falsekey: "user123" // For a user profile
key: "doc456" // For a document// Get a user profile
namespace: ["users", "profiles"]