A newer version of this documentation is available.

View Latest

Documents

      +

      Description — Couchbase Lite concepts — Data model — Documents
      Related Content — Databases | Blobs | Indexing |

      Overview

      Document Structure

      In Couchbase Lite the term 'document' refers to an entry in the database. You can compare it to a record, or a row in a table.

      Each document has an ID or unique identifier. This ID is similar to a primary key in other databases.

      You can specify the ID programmatically. If you omit it, it will be automatically generated as a UUID.

      the ID must be unique within the database. You cannot change it after you have written the document.

      The document also has a value which contains the actual application data. This value is stored as a dictionary collection of key-value (k-v) pairs. The values can be made of up several different Data Types such as numbers, strings, arrays, and nested objects.

      Data Encoding

      The document body is stored in an internal, efficient, binary form called Fleece. This internal form can be easily converted into a manageable native dictionary format for manipulation in applications.

      Fleece data is stored in the smallest format that will hold the value whilst maintaining the integrity of the value.

      Data Types

      The Document class offers a set of property accessors for various scalar types, such as:

      • Boolean

      • Date

      • Double

      • Float

      • Int

      • Long

      • String

      These accessors take care of converting to/from JSON encoding, and make sure you get the type you expect.

      In addition to these basic data types Couchbase Lite provides for the following:

      Dictionary

      represents a read-only key-value pair collection

      MutableDictionary

      represents a writeable key-value pair collection

      Array

      represents a readonly ordered collection of objects

      MutableArray

      represents a writeable collection of objects

      Blob

      represents an arbitrary piece of binary data

      JSON

      Couchbase Lite also provides for the direct handling of JSON data implemented in most cases by the provision of a ToJSON() method on appropriate API classes (for example, on MutableDocument, Dictionary, Blob and Array) — see Working with JSON Data.

      Constructing a Document

      An individual document often represents a single instance of an object in application code.

      You can consider a document as the equivalent of a 'row' in a relational table, with each of the document’s attributes being equivalent to a 'column'.

      Documents can contain nested structures. This allows developers to express many-to-many relationships without requiring a reference or join table, and is naturally expressive of hierarchical data.

      Most apps will work with one or more documents, persisting them to a local database and optionally syncing them, either centrally or to the cloud.

      In this section we provide an example of how you might create a hotel document, which provides basic contact details and price data.

      Data Model
      hotel: {
        type: string (value = `hotel`)
        name: string
        address: dictionary {
          street: string
          city: string
          state: string
          country: string
          code: string
        }
        phones: array
        rate: float
      }

      Open a Database

      First open your database. If the database does not already exist, Couchbase Lite will create it for you.

      // Get the database (and create it if it doesn’t exist).
      var database = new Database("hoteldb");

      See Databases for more information

      Create a Document

      Now create a new document to hold your application’s data.

      Use the mutable form, so that you can add data to the document.

      // Create your new document
      
      // Add the dictionary to a document's properties and save the document
      var doc = new MutableDocument("hoteldoc");

      For more on using Documents, see Document Initializers and Mutability.

      Create a Dictionary

      Now create a mutable dictionary (address).

      Each element of the dictionary value will be directly accessible via its own key.

      // Create and populate mutable dictionary
      var address = new MutableDictionaryObject();
      address.SetString("street", "1 Main st.");
      address.SetString("city", "San Francisco");
      address.SetString("state", "CA");
      address.SetString("country", "USA");
      address.SetString("code", "90210");

      Learn more about Using Dictionaries.

      Create an Array

      Since the hotel may have multiple contact numbers, provide a field (phones) as a mutable array.

      // Create and populate mutable array
      var phones = MutableArrayObject();
      phones.AddString("650-000-0000");
      phones.AddString("650-000-0001");

      Learn more about Using Arrays

      Populate a Document

      Now add your data to the mutable document created earlier. Each data item is stored as a key-value pair.

      // Initialize and populate the document
      
      // Add document type and hotel name as string
      doc.SetString("type", "hotel");
      doc.SetString("name", "Hotel Java Mo");
      
      // Add average room rate (float)
      doc.SetFloat("room_rate", 121.75);
      
      // Add address (dictionary)
      doc.SetDictionary("address", address);
      
      // Add phone numbers(array)
      doc.SetArray("phones", phones);
      Couchbase recommend using a type attribute to define each logical document type.

      Save a Document

      Now persist the populated document to your Couchbase Lite database. This will auto-generate the document id.

      database.Save(doc);

      Close the Database

      With your document saved, you can now close our Couchbase Lite database.

      database.Close();

      Working with Data

      Checking a Document’s Properties

      To check whether a given property exists in the document, use the Document.Contains(String key) method.

      If you try to access a property which doesn’t exist in the document, the call will return the default value for that getter method (0 for Document.GetInt() 0.0 for Document.GetFloat() etc.).

      Date accessors

      Couchbase Lite offers Date accessors as a convenience. Dates are a common data type, but JSON doesn’t natively support them, so the convention is to store them as strings in ISO-8601 format.

      Example 1. Date Getter

      This example sets the date on the createdAt property and reads it back using the Document.GetDate() accessor method.

      newTask.SetValue("createdAt", DateTimeOffset.UtcNow);
      var date = newTask.GetDate("createdAt");

      Using Dictionaries

      Example 2. Read Only
      var document = database.GetDocument("doc1");
      
      // Getting a dictionary from the document's properties
      var dict = document.GetDictionary("address");
      
      // Access a value with a key from the dictionary
      var street = dict.GetString("street");
      
      // Iterate dictionary
      foreach (var key in dict.Keys)
      {
          Console.WriteLine($"Key {key} = {dict.GetValue(key)}");
      }
      
      // Create a mutable copy
      var mutDict = dict.ToMutable();
      Example 3. Mutable
      // Create a new mutable dictionary and populate some keys/values
      var mutable_dict = new MutableDictionaryObject();
      mutable_dict.SetString("street", "1 Main st.");
      mutable_dict.SetString("city", "San Francisco");
      
      // Add the dictionary to a document's properties and save the document
      var doc = new MutableDocument("doc1");
      doc.SetDictionary("address", mutable_dict);
      database.Save(doc);

      Using Arrays

      Example 4. Read Only
      var document = database.GetDocument("doc1");
      
      // Getting a phones array from the document's properties
      var array = document.GetArray("phones");
      
      // Get element count
      var count = array.Count();
      
      // Access an array element by index
      if (count >= 0) { var phone = array[1]; }
      
      // Iterate dictionary
      for (int i = 0; i < count; i++)
      {
          Console.WriteLine($"Item {i.ToString()} = {array[i]}");
      }
      
      // Create a mutable copy
      var mutable_array = array.ToMutable();
      Example 5. Mutable
      // Create a new mutable array and populate data into the array
      var mutable_array = new MutableArrayObject();
      mutable_array.AddString("650-000-0000");
      mutable_array.AddString("650-000-0001");
      
      // Set the array to document's properties and save the document
      var doc = new MutableDocument("doc1");
      doc.SetArray("phones", mutable_array);
      database.Save(doc);

      Using Blobs

      For more on working with blobs, see Blobs

      Document Initializers

      You can use the following methods/initializers:

      • Use the MutableDocument() initializer to create a new document where the document ID is randomly generated by the database.

      • Use the MutableDocument(String id) initializer to create a new document with a specific ID.

      • Use the Database.GetDocument() method to get a document. If the document doesn’t exist in the database, the method will return null. You can use this behavior to check if a document with a given ID already exists in the database.

      Example 6. Persist a document

      The following code example creates a document and persists it to the database.

      using (var newTask = new MutableDocument("xyz")) {
          newTask.SetString("type", "task")
              .SetString("owner", "todo")
              .SetDate("createdAt", DateTimeOffset.UtcNow);
      
          db.Save(newTask);
      }

      Mutability

      By default, a document is immutable when it is read from the database. Use the Document.ToMutable() to create an updatable instance of the document.

      Example 7. Make a mutable document

      Changes to the document are persisted to the database when the save method is called.

      using(var document = db.GetDocument("xyz"))
      using (var mutableDocument = document.ToMutable()) {
          mutableDocument.SetString("name", "apples");
          db.Save(mutableDocument);
      }
      Any user change to the value of reserved keys (_id, _rev or _deleted) will be detected when a document is saved and will result in an exception (Error Code 5 — CorruptRevisionData) — see also Document Constraints.

      Batch operations

      If you’re making multiple changes to a database at once, it’s faster to group them together. The following example persists a few documents in batch.

      Example 8. Batch operations
      db.InBatch(() =>
      {
          for (var i = 0; i < 10; i++) {
              using (var doc = new MutableDocument()) {
                  doc.SetString("type", "user");
                  doc.SetString("name", $"user {i}");
                  doc.SetBoolean("admin", false);
                  db.Save(doc);
                  Console.WriteLine($"Saved user document {doc.GetString("name")}");
              }
          }
      });

      At the local level this operation is still transactional: no other Database instances, including ones managed by the replicator can make changes during the execution of the block, and other instances will not see partial changes. But Couchbase Mobile is a distributed system, and due to the way replication works, there’s no guarantee that Sync Gateway or other devices will receive your changes all at once.

      Document change events

      You can register for document changes. The following example registers for changes to the document with ID user.john and prints the verified_account property when a change is detected.

      Example 9. Document change events
      db.AddDocumentChangeListener("user.john", (sender, args) =>
      {
          using (var doc = Db.GetDocument(args.DocumentID)) {
              Console.WriteLine($"Status :: {doc.GetString("verified_account")}");
          }
      });

      Document Expiration

      Document expiration allows users to set the expiration date for a document. When the document expires, it is purged from the database. The purge is not replicated to Sync Gateway.

      Example 10. Set document expiration

      This example sets the TTL for a document to 5 minutes from the current time.

      // Purge the document one day from now
      var ttl = DateTimeOffset.UtcNow.AddDays(1);
      db.SetDocumentExpiration("doc123", ttl);
      
      // Reset expiration
      db.SetDocumentExpiration("doc1", null);
      
      // Query documents that will be expired in less than five minutes
      var fiveMinutesFromNow = DateTimeOffset.UtcNow.AddMinutes(5).ToUnixTimeMilliseconds();
      var query = QueryBuilder
          .Select(SelectResult.Expression(Meta.ID))
          .From(DataSource.Database(db))
          .Where(Meta.Expiration.LessThan(Expression.Double(fiveMinutesFromNow)));

      Document Constraints

      Couchbase Lite APIs do not explicitly disallow the use of attributes with the underscore prefix at the top level of document. This is to facilitate the creation of documents for use either in local only mode where documents are not synced, or when used exclusively in peer-to-peer sync.

      "_id", :"_rev" and "_sequence" are reserved keywords and must not be used as top-level attributes — see Example 11.

      Users are cautioned that any attempt to sync such documents to Sync Gateway will result in an error. To be future proof, you are advised to avoid creating such documents. Use of these attributes for user-level data may result in undefined system behavior.

      For more guidance — see: Sync Gateway - data modeling guidelines

      Example 11. Reserved Keys List
      • _attachments

      • _deleted [1]

      • _id [1]

      • _removed

      • _rev [1]

      • _sequence

      Working with JSON Data

      The ToJSON() typed-accessor means you can easily work with JSON data, native and Couchbase Lite objects.

      Arrays

      Convert an ArrayObject to and from JSON using the ToJSON() and toArray methods — see Example 4.

      Additionally you can:

      • Initialize a 'MutableArrayObject' using data supplied as a JSON string. This is done using the init(json) constructor — see: Example 4

      • Convert an ArrayFragment object to a JSON String

      • Set data with a JSON string using setJSON()

      Example 12. Arrays as JSON strings
      
      Database dbNew = new Database(ourdbname);
      
      // JSON String -- an Array (3 elements. including embedded arrays)
      var thisJSONstring = "[{'id':'1000','type':'hotel','name':'Hotel Ted','city':'Paris','country':'France','description':'Undefined description for Hotel Ted'},{'id':'1001','type':'hotel','name':'Hotel Fred','city':'London','country':'England','description':'Undefined description for Hotel Fred'},                        {'id':'1002','type':'hotel','name':'Hotel Ned','city':'Balmain','country':'Australia','description':'Undefined description for Hotel Ned','features':['Cable TV','Toaster','Microwave']}]".Replace("'", "\"");
      
      // Get JSON Array from JSON String
      JArray myJsonObj = JArray.Parse(thisJSONstring);
      
      // Create mutable array using JSON String Array
      var myArray = new MutableArrayObject();
      myArray.SetJSON(thisJSONstring); 
      
      
      // Create a new document for each array element
      for (int i = 0; i < myArray.Count; i++)
      {
          var dict = myArray.GetDictionary(i);
          var docid = myArray[i].Dictionary.GetString("id");
          var newdoc = new MutableDocument(docid, dict.ToDictionary());
      }
      
      // Get one of the created docs and iterate through one of the embedded arrays
      var extendedDoc = dbNew.GetDocument("1002");
      var features = extendedDoc.GetArray("features");
      
      // Print its elements
      foreach (string feature in features) {
          System.Console.Write(feature);
          //process array item as required
      }
      var featuresJSON = extendedDoc.GetArray("features").ToJSON();

      Blobs

      Convert a Blob to JSON using the toJSON method — see Example 13.

      You can use isBlob() to check whether a given dictionary object is a blob or not — see Example 13.

      Note that the blob object must first be saved to the database (generating the required metadata) before you can use the toJSON method.

      Example 13. Blobs as JSON strings
      
      // Initialize base document for blob from a JSON string
      var docId = "1002";
      var aJSONstring = "{'ref':'hotel_1002','type':'hotel','name':'Hotel Ned'," +
          "'city':'Balmain','country':'Australia'," +
          "'description':'Undefined description for Hotel Ned'," +
          "'features':['Cable TV','Toaster','Microwave']}".Replace("'", "\"");
      var myDoc = new MutableDocument(docId, aJSONstring);
      
      
      // Get the content (an image), create blob and add to doc)
      var defaultDirectory =
          Path.Combine(Service.GetInstance<IDefaultDirectoryResolver>()
                      .DefaultDirectory(),
                          userName);
      var myImagePath = Path.Combine(defaultDirectory, "avatarimage.jpg");
      var myImageUri = new Uri(myImagePath.ToString());
      var myBlob = new Blob("image/jpg", myImageUri);
      myDoc.SetBlob("avatar", myBlob);
      
      
      // This example generates a 'blob not saved' exception
      try { Console.WriteLine("myBlob (unsaved) as JSON = {0}", myBlob.ToJSON());}
          catch (Exception e)
              {Console.WriteLine("Exception = {0}", e.Message);}
      
      dbNew.Save(myDoc);
      
      // Alternatively -- depending on use case
      dbNew.SaveBlob(new Blob("image/jpg", myImageUri));
      
      
      // Retrieve saved doc, get blob as JSON andheck its still a 'blob'
      var sameDoc = dbNew.GetDocument(docId);
      var reconstitutedBlob = new MutableDictionaryObject().
          SetDictionary("blobCOPY", new MutableDictionaryObject(sameDoc.GetBlob("avatar").ToJSON()));
      
      if (Blob.IsBlob(
              reconstitutedBlob.GetDictionary("blobCOPY").ToDictionary()))
      {
         //... process accordingly
         Console.WriteLine("Its a Blob!!");
      }

      See also: Blobs

      Dictionaries

      Convert a DictionaryObject to and from JSON using the toJSON and toDictionary methods — see Example 14.

      Additionally you can:

      • Initialize a 'MutableDictionaryObject' using data supplied as a JSON string. This is done using the init(json) constructor-- see: Example 14

      • Set data with a JSON string using setJSON()

      Example 14. Dictionaries as JSON strings
      
      // Get dictionary from JSONstring
      var aJSONstring = "{'id':'1002','type':'hotel','name':'Hotel Ned','city':'Balmain','country':'Australia','description':'Undefined description for Hotel Ned','features':['Cable TV','Toaster','Microwave']}".Replace("'", "\"");
      var myDict = new MutableDictionaryObject(json: aJSONstring);
      
      // use dictionary to get name value
      var name = myDict.GetString("name");
      
      
      // Iterate through keys
      foreach (string key in myDict.Keys)
      {
          System.Console.WriteLine("Data -- {0} = {1}", key, myDict.GetValue(key).ToString());
      
      }

      Documents

      Convert a Document to and from JSON strings using the ToJSON() and SetJSON() methods — see Example 15.

      Additionally you can:

      • Initialize a 'MutableDocument' using data supplied as a JSON string. This is done using the init(json) or init(id: json:) constructor — see: Example 15

      • Set data with a JSON string using setJSON()

      Example 15. Documents as JSON strings
      Database this_DB = new Database("travel-sample");
      Database newDb = new Database("ournewdb");
      
      // Get a document
      var thisDoc = this_Db.GetDocument("hotel_10025");
      
      // Get document data as JSON String
      var thisDocAsJsonString = thisDoc?.ToJSON();
      
      // Get Json Object from the Json String
      JObject myJsonObj = JObject.Parse(thisDocAsJsonString);
      
      // Get Native Object (anhotel) from JSON String
      List<Hotel> thehotels = new List<Hotel>();
      
      Hotel anhotel = new Hotel();
      anhotel = JsonConvert.DeserializeObject<Hotel>(thisDocAsJsonString);
      thehotels.Add(anhotel);
      
      // Update the retrieved native object
      anhotel.Name = "A Copy of " + anhotel.Name;
      anhotel.Id = "2001";
      
      // Convert the updated object back to a JSON string
      var newJsonString = JsonConvert.SerializeObject(anhotel);
      
      // Update new document with JSOn String
      MutableDocument newhotel =
          new MutableDocument(anhotel.Id, newJsonString);
      
      foreach (string key in newhotel.ToDictionary().Keys)
      {
          System.Console.WriteLine("Data -- {0} = {1}",
              key, newhotel.GetValue(key));
      }
      
      newDb.Save(newhotel);
      
      var thatDoc = newDb.GetDocument("2001").ToJSON();
      System.Console.Write(thatDoc);

      Query Results as JSON

      Convert a Query Result to JSON using its ToJSON() accessor method.

      Example 16. Using JSON Results

      Use Result.ToJson() to transform your result string into a JSON string, which can easily be serialized or used as required in your application. See <> for a working example.

      
      foreach (var result in query.Execute().AsEnumerable()) {
      
          // get the result into a JSON String
                  var thisDocsJSONString = result.ToJSON();
      
          // Get a native dictionary object using the JSON string
          var dictFromJSONstring =
                JsonConvert.
                  DeserializeObject<Dictionary<string, object>>
                    (thisDocsJSONString);
      
          // use the created dictionary
          if (dictFromJSONstring != null)
          {
              thisDocsId = dictFromJSONstring["id"].ToString();
              thisDocsName = dictFromJSONstring["name"].ToString();
              thisDocsCity = dictFromJSONstring["city"].ToString();
              thisDocsType = dictFromJSONstring["type"].ToString();
          }
      
          //Get a custom object using the JSON string
          Hotel this_hotel =
              JsonConvert.DeserializeObject<Hotel>(thisDocsJSONString);
      
          // Store this hotel object in a list of hotels
          hotels.Add(
              this_hotel.Id.ToString(),
                  this_hotel);
      
      } // end foreach result
      JSON String Format

      If your query selects ALL then the JSON format will be:

      {
        database-name: {
          key1: "value1",
          keyx: "valuex"
        }
      }

      If your query selects a sub-set of available properties then the JSON format will be:

      {
        key1: "value1",
        keyx: "valuex"
      }

      1. Any change to this reserved key will be detected when it is saved and will result in a Couchbase exception (Error Code 5 — `CorruptRevisionData`)