{"id":3593,"date":"2023-04-12T15:39:33","date_gmt":"2023-04-12T15:39:33","guid":{"rendered":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/"},"modified":"2026-01-15T18:05:15","modified_gmt":"2026-01-15T18:05:15","slug":"exploring-azure-cosmos-db","status":"publish","type":"post","link":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/","title":{"rendered":"How Do I Use Azure Cosmos DB to Create a NoSQL Database and Manage Data?"},"content":{"rendered":"<p><a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/cosmos-db\/introduction\">Azure Cosmos DB<\/a> is a fully managed NoSQL database designed for modern app development.\u00a0Microsoft states that \u201c\u2026any\u00a0web, mobile, gaming, and IoT application\u00a0that needs to handle massive amounts of data, reads, and writes at a\u00a0global scale\u00a0with near-real response times for a variety of data will benefit from Cosmos DB\u2026\u201d.<\/p>\n<p>In this post I want to demonstrate how to build an Azure Cosmos DB using simple Azure CI commands and then access the database to insert some records and finally query the data.<\/p>\n<p><strong>Creating the Database<\/strong><\/p>\n<p>To create the Cosmos DB, I logged into the Azure Portal and opened <a href=\"https:\/\/docs.microsoft.com\/en-us\/cli\/azure\/webapp?view=azure-cli-latest\">Azure Cloud CLI<\/a>. Once a terminal session is established, I started by creating an <strong>environment variable<\/strong> to hold the Azure Cosmos DB account name (so I don&#8217;t have to type the same value each time in the commands). Using variables with the Azure CLI also allows reuse of commands, either part or as part of scripts.<\/p>\n<p>Since the database account name must be unique across all Azure Cosmos DB instances, I used the following command to generate a <em>random database account name<\/em>, by using <strong>Bash $RANDOM<\/strong>, and stored the value it in an environment variable to use later. The random function in bash gives you a (more or less) random\u00a0integer between 0 and 32767.<\/p>\n<p>export NAME=cosmos$RANDOM<\/p>\n<p>Next I used the Azure CLI\u00a0<a href=\"https:\/\/docs.azure.cn\/zh-cn\/cli\/cosmosdb\/database?view=azure-cli-latest#az-cosmosdb-database-create\">cosmosdb create<\/a>\u00a0command to create a new Azure Cosmos DB account.\u00a0The following command created a new Azure Cosmos DB account with the specified (random) name (it assumes that the Azure Resource Group \u201cjamesdouglasmillerRG \u201c is already created):<\/p>\n<p>az cosmosdb create<\/p>\n<p>&#8211;name $NAME<\/p>\n<p>&#8211;kind GlobalDocumentDB<\/p>\n<p>&#8211;resource-group jamesdouglasmillerRG<\/p>\n<p>The command takes a few minutes to complete then the Cloud Shell displays the resulting settings as a JSON object for the new account. JavaScript Object Notation (or JSON) is\u00a0a standard text-based format for representing structured data based on JavaScript object syntax and is commonly used for transmitting data:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2023 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS1-min.jpg\" alt=\"\" width=\"900\" height=\"402\" \/><\/p>\n<p>Now I want to create a\u00a0\u201cMotorcycles\u201d database within the Azure Cosmos DB account just created, so I can run the\u00a0cosmosdb database create\u00a0command. This command takes a\u00a0db-name\u00a0parameter that we&#8217;ll set to\u00a0<strong>&#8220;<\/strong>Motorcycles<strong>&#8220;<\/strong>\u00a0since this database will hold motorcycle inventory data.<\/p>\n<p>az cosmosdb sql database create<\/p>\n<p>&#8211;account-name $NAME<\/p>\n<p>&#8211;name &#8220;Motorcycles&#8221;<\/p>\n<p>&#8211;resource-group jamesdouglasmillerRG<\/p>\n<p>This command runs quickly and produce output something like the following:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2024 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS2-min.jpg\" alt=\"\" width=\"900\" height=\"328\" \/><\/p>\n<p>Finally, I want to create a\u00a0\u201cbikes\u201d\u00a0<strong>container<\/strong> in my Motorcycles database by running the\u00a0cosmosdb sql container create\u00a0command:<\/p>\n<p>az cosmosdb sql container create<\/p>\n<p>&#8211;account-name $NAME<\/p>\n<p>&#8211;database-name &#8220;Motorcycles&#8221;<\/p>\n<p>&#8211;name &#8220;bikes&#8221;<\/p>\n<p>&#8211;partition-key-path &#8220;\/productId&#8221;<\/p>\n<p>&#8211;throughput 1000<\/p>\n<p>&#8211;resource-group jamesdouglasmillerRG<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2014 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS3-min.jpg\" alt=\"\" width=\"900\" height=\"169\" \/><\/p>\n<p>Now that I have an Azure Cosmos DB account, database, and container, I can add some data!<\/p>\n<h1>Adding data using Data Explorer<\/h1>\n<p>The <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/cosmos-db\/data-explorer#:~:text=Azure%20Cosmos%20DB%20Explorer%20is,stored%20in%20Azure%20Cosmos%20DB.&amp;text=You%20have%20a%20full%20screen,triggers%2C%20and%20view%20their%20results.\">Azure Cosmos DB Data Explorer<\/a> is a tool included in the Azure portal that is used to manage data stored in an Azure Cosmos DB. It provides a UI for navigating and viewing data, querying and modifying data, and creating and running stored procedures. The Data Explorer is a excellent tool to get acquainted with Azure Cosmos DB. In the next few steps we\u2019ll use the Data Explorer to add data to our new Cosmos DB and then query it.<\/p>\n<p><strong>Accessing the Azure DB Data Explorer<\/strong><\/p>\n<p>To access the data explorer, first sign into the <a href=\"https:\/\/portal.azure.com\/learn.docs.microsoft.com\">Azure portal<\/a> and select <strong>All services<\/strong>. Next, click\u00a0<strong>Databases<\/strong>, then\u00a0<strong>Azure Cosmos DB<\/strong>, and then select the DB just created.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2015 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS4-min.jpg\" alt=\"\" width=\"900\" height=\"255\" \/><\/p>\n<p>Find and select\u00a0<strong>Data Explorer (you may need to search for it):<\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2016 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS5-min.jpg\" alt=\"\" width=\"637\" height=\"298\" \/><\/p>\n<p>Within the Data Explorer expand the\u00a0<strong>Motorcycles<\/strong>\u00a0database in the\u00a0<strong>SQL API<\/strong>\u00a0pane:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2017 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS6-min.jpg\" alt=\"\" width=\"900\" height=\"473\" \/><\/p>\n<p>To add some data, you need to create a new JSON document, so if you expand\u00a0<strong>bikes<\/strong>\u00a0(in the\u00a0<strong>SQL API<\/strong>\u00a0pane), select\u00a0<strong>Items<\/strong>, and then <strong>New Item<\/strong>\u00a0in the toolbar you can paste in a document (overwriting any content shown). My first motorcycle record (in JSON format) is shown below:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-2018\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS7-min.jpg\" alt=\"\" width=\"378\" height=\"298\" \/><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2019 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS8-min.jpg\" alt=\"\" width=\"900\" height=\"372\" \/><\/p>\n<p>Once you paste in the document you click\u00a0<strong>Save<\/strong> in the toolbar to commit the data. To create and save another document (add another motorcycle record) you can again select <strong>New Item <\/strong>and paste another JSON object and then save it:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-2020\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS9-min.jpg\" alt=\"\" width=\"362\" height=\"295\" \/><\/p>\n<p>Did it work? You can confirm the documents have been saved in the database by clicking\u00a0<strong>Items<\/strong>\u00a0on the left-hand menu:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2025 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS10-min.jpg\" alt=\"\" width=\"263\" height=\"214\" \/><\/p>\n<p>You should see two items listed, verifying that we\u2019ve added two documents (my two motorcycles) each representing a bike in my motorcycle inventory.<\/p>\n<p><strong>Using SQL to Query the Data<\/strong><\/p>\n<p>You can write and run queries against the Cosmos DB database using the Data Explorer by selecting\u00a0<strong>New SQL Query<\/strong>\u00a0from the toolbar as shown here:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2021 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS11-min.jpg\" alt=\"\" width=\"900\" height=\"65\" \/><\/p>\n<p>Then we can write a SQL-type query to return the data we just added:<\/p>\n<p>SELECT p.price, p.description, p.productId<\/p>\n<p>FROM bikes p<\/p>\n<p>ORDER BY p.price ASC<\/p>\n<p>To run the query, you select\u00a0<strong>Execute Query<\/strong>. This query returns all results in the database.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2022 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS12-min.jpg\" alt=\"\" width=\"900\" height=\"471\" \/><\/p>\n<p><strong>Summary<\/strong><\/p>\n<p>In this post I\u2019ve created an Azure Cosmos DB account, database, and container using the Azure CLI and then used the Azure Data Explorer to add and query data providing at least the basics of how Azure Cosmos DB works and how one might use it as a foundation for are larger database project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Azure Cosmos DB is a fully managed NoSQL database designed for modern app development.\u00a0Microsoft states that \u201c\u2026any\u00a0web, mobile, gaming, and IoT application\u00a0that needs to handle massive amounts of data, reads, and writes at a\u00a0global scale\u00a0with near-real response times for a variety of data will benefit from Cosmos DB\u2026\u201d. In this post I want to demonstrate&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[27],"tags":[34],"class_list":["post-3593","post","type-post","status-publish","format-standard","hentry","category-quebit-value","tag-data-management"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How Do I Use Azure Cosmos DB to Create a NoSQL Database and Manage Data? - QueBIT<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Do I Use Azure Cosmos DB to Create a NoSQL Database and Manage Data? - QueBIT\" \/>\n<meta property=\"og:description\" content=\"Azure Cosmos DB is a fully managed NoSQL database designed for modern app development.\u00a0Microsoft states that \u201c\u2026any\u00a0web, mobile, gaming, and IoT application\u00a0that needs to handle massive amounts of data, reads, and writes at a\u00a0global scale\u00a0with near-real response times for a variety of data will benefit from Cosmos DB\u2026\u201d. In this post I want to demonstrate&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/\" \/>\n<meta property=\"og:site_name\" content=\"QueBIT\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-12T15:39:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-15T18:05:15+00:00\" \/>\n<meta name=\"author\" content=\"agoddard\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"agoddard\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-azure-cosmos-db\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-azure-cosmos-db\\\/\"},\"author\":{\"name\":\"agoddard\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"headline\":\"How Do I Use Azure Cosmos DB to Create a NoSQL Database and Manage Data?\",\"datePublished\":\"2023-04-12T15:39:33+00:00\",\"dateModified\":\"2026-01-15T18:05:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-azure-cosmos-db\\\/\"},\"wordCount\":874,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-azure-cosmos-db\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/COS1-min.jpg\",\"keywords\":[\"Data Management\"],\"articleSection\":[\"QueBIT Value\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-azure-cosmos-db\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-azure-cosmos-db\\\/\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-azure-cosmos-db\\\/\",\"name\":\"How Do I Use Azure Cosmos DB to Create a NoSQL Database and Manage Data? - QueBIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-azure-cosmos-db\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-azure-cosmos-db\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/COS1-min.jpg\",\"datePublished\":\"2023-04-12T15:39:33+00:00\",\"dateModified\":\"2026-01-15T18:05:15+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-azure-cosmos-db\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-azure-cosmos-db\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-azure-cosmos-db\\\/#primaryimage\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/COS1-min.jpg\",\"contentUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/COS1-min.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-azure-cosmos-db\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Do I Use Azure Cosmos DB to Create a NoSQL Database and Manage Data?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\",\"name\":\"QueBIT\",\"description\":\"QueBIT\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\",\"name\":\"agoddard\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"caption\":\"agoddard\"},\"sameAs\":[\"https:\\\/\\\/quebit.com\\\/askquebit\"],\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/author\\\/agoddard\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Do I Use Azure Cosmos DB to Create a NoSQL Database and Manage Data? - QueBIT","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/","og_locale":"en_US","og_type":"article","og_title":"How Do I Use Azure Cosmos DB to Create a NoSQL Database and Manage Data? - QueBIT","og_description":"Azure Cosmos DB is a fully managed NoSQL database designed for modern app development.\u00a0Microsoft states that \u201c\u2026any\u00a0web, mobile, gaming, and IoT application\u00a0that needs to handle massive amounts of data, reads, and writes at a\u00a0global scale\u00a0with near-real response times for a variety of data will benefit from Cosmos DB\u2026\u201d. In this post I want to demonstrate&hellip;","og_url":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/","og_site_name":"QueBIT","article_published_time":"2023-04-12T15:39:33+00:00","article_modified_time":"2026-01-15T18:05:15+00:00","author":"agoddard","twitter_card":"summary_large_image","twitter_misc":{"Written by":"agoddard","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/#article","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/"},"author":{"name":"agoddard","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"headline":"How Do I Use Azure Cosmos DB to Create a NoSQL Database and Manage Data?","datePublished":"2023-04-12T15:39:33+00:00","dateModified":"2026-01-15T18:05:15+00:00","mainEntityOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/"},"wordCount":874,"commentCount":0,"image":{"@id":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS1-min.jpg","keywords":["Data Management"],"articleSection":["QueBIT Value"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/","url":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/","name":"How Do I Use Azure Cosmos DB to Create a NoSQL Database and Manage Data? - QueBIT","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/#website"},"primaryImageOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/#primaryimage"},"image":{"@id":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS1-min.jpg","datePublished":"2023-04-12T15:39:33+00:00","dateModified":"2026-01-15T18:05:15+00:00","author":{"@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"breadcrumb":{"@id":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/#primaryimage","url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS1-min.jpg","contentUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/COS1-min.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/quebit.com\/askquebit\/exploring-azure-cosmos-db\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/quebit.com\/askquebit\/"},{"@type":"ListItem","position":2,"name":"How Do I Use Azure Cosmos DB to Create a NoSQL Database and Manage Data?"}]},{"@type":"WebSite","@id":"https:\/\/quebit.com\/askquebit\/#website","url":"https:\/\/quebit.com\/askquebit\/","name":"QueBIT","description":"QueBIT","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/quebit.com\/askquebit\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084","name":"agoddard","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","caption":"agoddard"},"sameAs":["https:\/\/quebit.com\/askquebit"],"url":"https:\/\/quebit.com\/askquebit\/author\/agoddard\/"}]}},"_links":{"self":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3593","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/comments?post=3593"}],"version-history":[{"count":1,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3593\/revisions"}],"predecessor-version":[{"id":4906,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3593\/revisions\/4906"}],"wp:attachment":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/media?parent=3593"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/categories?post=3593"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/tags?post=3593"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}