{"id":5902,"date":"2024-04-06T12:02:43","date_gmt":"2024-04-06T16:02:43","guid":{"rendered":"https:\/\/www.cloudsurph.com\/?p=5902"},"modified":"2024-04-06T12:03:50","modified_gmt":"2024-04-06T16:03:50","slug":"understanding-django-models-building-the-data-structure","status":"publish","type":"post","link":"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/","title":{"rendered":"Understanding Django Models: Building the Data Structure"},"content":{"rendered":"<h2>Building data structures in Django models<\/h2>\n<p>Building data structures in Django models is a fundamental aspect of developing web applications. Django models define the structure of your application&#8217;s data and how it is stored in the database. Let&#8217;s walk through the process of creating Django models.<\/p>\n<p><strong>Set up your Django project<\/strong>: If you haven&#8217;t already, create a Django project using the <code>django-admin<\/code> command:<\/p>\n<pre class=\"prettyprint\">\r\ndjango-admin startproject myproject\r\n<\/pre>\n<h3>Create a Django app<\/h3>\n<p>Apps in Django are modular components that encapsulate related functionality. Create a new app using the following command:<\/p>\n<pre class=\"prettyprint\">\r\npython manage.py startapp myapp\r\n<\/pre>\n<h3>Define your models<\/h3>\n<p>Open the <code>models.py<\/code> file inside your app directory (<code>myapp\/models.py<\/code>). This is where you define your Django models. Each model is a Python class that subclasses <code>django.db.models.Model<\/code>.<\/p>\n<pre class=\"prettyprint\">\r\nfrom django.db import models\r\n\r\nclass Author(models.Model):\r\n\u00a0 \u00a0 name = models.CharField(max_length=100)\r\n\u00a0 \u00a0 bio = models.TextField()\r\n\u00a0 \u00a0 birth_date = models.DateField()\r\n\r\n\u00a0 \u00a0 def __str__(self):\r\n\u00a0 \u00a0 \u00a0 \u00a0 return self.name\r\n\r\nclass Book(models.Model):\r\n\u00a0 \u00a0 title = models.CharField(max_length=200)\r\n\u00a0 \u00a0 author = models.ForeignKey(Author, on_delete=models.CASCADE)\r\n\u00a0 \u00a0 published_date = models.DateField()\r\n\u00a0 \u00a0 isbn = models.CharField(max_length=13)\r\n\r\n\u00a0 \u00a0 def __str__(self):\r\n \u00a0 \u00a0 \u00a0 return self.title\r\n<\/pre>\n<p>In this example, we have two models: <code>Author<\/code> and <code>Book<\/code>. The <code>Author<\/code> model has fields for the author&#8217;s name, biography, and birth date. The <code>Book<\/code> model has fields for the book&#8217;s title, publication date, ISBN, and a foreign key to the <code>Author<\/code> model.<\/p>\n<p><strong>Make migrations<\/strong>: After defining your models, you need to create migrations. Migrations are files that Django uses to propagate changes you make to your models (like adding a field or deleting a model) into your database schema.<\/p>\n<pre class=\"prettyprint\">\r\npython manage.py makemigrations\r\n<\/pre>\n<p><strong>Apply migrations<\/strong>: Once you&#8217;ve created the migrations, you need to apply them to your database.<\/p>\n<pre class=\"prettyprint\">\r\npython manage.py migrate\r\n<\/pre>\n<p><strong>Interact with your models<\/strong>: Now that your models are defined and the database schema is set up, you can interact with your models through Django&#8217;s admin interface, shell, or views.<\/p>\n<pre class=\"prettyprint\">\r\nfrom myapp.models import Author, Book\r\n\r\n# Create an author\r\nauthor = Author.objects.create(name='John Doe', bio='Some bio', birth_date='1990-01-01')\r\n\r\n# Create a book associated with the author\r\nbook = Book.objects.create(title='My Book', author=author, published_date='2020-01-01', isbn='1234567890123')\r\n\r\n# Query books by the author\r\nauthor_books = Book.objects.filter(author=author)\r\n\r\n<\/pre>\n<p><strong>Admin interface<\/strong>: To manage your models via Django&#8217;s admin interface, you need to register your models in the <code>admin.py<\/code> file of your app.<\/p>\n<pre class=\"prettyprint\">\r\nfrom django.contrib import admin\r\nfrom .models import Author, Book\r\n\r\nadmin.site.register(Author)\r\nadmin.site.register(Book)\r\n\r\n<\/pre>\n<h4>Now you can access the admin interface (<code>\/admin<\/code>) and manage your models through it.<\/h4>\n<p>This is a basic overview of creating Django models. As you progress, you may need to handle more complex relationships, validation, and queries, but these fundamentals will get you started.<\/p>\n<h4>Recent Posts<\/h4>\n<ul>\n<li><a href=\"https:\/\/www.cloudsurph.com\/creating-a-crud-application-with-django\/\" aria-current=\"page\">Creating a CRUD Application with Django<\/a><\/li>\n<li><a href=\"https:\/\/www.cloudsurph.com\/django-fundamentals-setting-up-your-first-project\/\">Django Fundamentals: Setting Up Your First Project<\/a><\/li>\n<li><a href=\"https:\/\/www.cloudsurph.com\/building-real-time-features-with-laravel-and-websockets\/\">Building Real-Time Features with Laravel and WebSockets<\/a><\/li>\n<li><a href=\"https:\/\/www.cloudsurph.com\/how-to-test-internet-speed-from-the-command-line-on-linux\/\">How to Test Internet Speed from the Command Line on Linux<\/a><\/li>\n<li><a href=\"https:\/\/www.cloudsurph.com\/authentication-and-authorization-in-laravel-implementing-user-management-2\/\">Authentication and Authorization in Laravel<\/a><\/li>\n<li><a href=\"https:\/\/www.cloudsurph.com\/authentication-and-authorization-in-laravel-implementing-user-management\/\">Authentication and Authorization in Laravel: Implementing User Management<\/a><\/li>\n<\/ul>\n<h5><em><strong>If you want then buy a good, reliable, secure web\u00a0<a href=\"https:\/\/www.cloudsurph.com\/windows-vps-hosting\/\">hosting<\/a>\u00a0service \u00a0from here:\u00a0<a href=\"https:\/\/hosting.cloudsurph.com\/\">click here<\/a><\/strong><\/em><\/h5>\n<p>In Conclusion,\u00a0 If you enjoyed reading this article and have more questions please reach out to our\u00a0<a href=\"https:\/\/hosting.cloudsurph.com\/submitticket.php?step=2&amp;deptid=1\">support team<\/a>\u00a0via live chat or\u00a0<a href=\"mailto:support@cloudsurph.com\">email<\/a>\u00a0and we would be glad to help you.\u00a0In Other Words, we provide server\u00a0<a href=\"https:\/\/hosting.cloudsurph.com\/\">hosting<\/a>\u00a0for all types of need and we can even get your\u00a0<a href=\"https:\/\/hosting.cloudsurph.com\/\">server<\/a>\u00a0up and running with the service of your choice.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Building data structures in Django models Building data structures in Django models is a fundamental aspect of developing web applications. Django models define the structure of your application&#8217;s data and how it is stored in the database. Let&#8217;s walk through the process of creating Django models. Set up your Django project: If you haven&#8217;t already, [&hellip;]<\/p>\n","protected":false},"author":8,"featured_media":5876,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[157,25,163,158,159,44,1],"tags":[54,47,105,103,48,113],"class_list":["post-5902","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos-7","category-web-hosting-virtualization","category-django","category-linux-basics","category-linux-server","category-kvm-xen","category-virtual-private-servers","tag-best-vps-hosting-server-maryland","tag-cheap-cloud-servers","tag-cheap-storage-server-hosting","tag-cheapest-vps","tag-dedicated-server-hosting-in-washington-d-c","tag-speed-test-vps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Building data structures in Django models<\/title>\n<meta name=\"description\" content=\"Building data structures in Django models\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Building data structures in Django models\" \/>\n<meta property=\"og:description\" content=\"Building data structures in Django models\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloudsurph Web Hosting Washington D.C.\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/CloudSurph\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-04-06T16:02:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-06T16:03:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2024\/03\/Django-Fundamentals-Setting-Up-Your-First-Project.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Rony\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@cloudsurph\" \/>\n<meta name=\"twitter:site\" content=\"@Cloud_Surph\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rony\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/understanding-django-models-building-the-data-structure\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/understanding-django-models-building-the-data-structure\\\/\"},\"author\":{\"name\":\"Rony\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#\\\/schema\\\/person\\\/ac9b4dd136d96e50d5f29c560191e7ed\"},\"headline\":\"Understanding Django Models: Building the Data Structure\",\"datePublished\":\"2024-04-06T16:02:43+00:00\",\"dateModified\":\"2024-04-06T16:03:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/understanding-django-models-building-the-data-structure\\\/\"},\"wordCount\":432,\"publisher\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/understanding-django-models-building-the-data-structure\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.cloudsurph.com\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/Django-Fundamentals-Setting-Up-Your-First-Project.png\",\"keywords\":[\"Best VPS hosting server Maryland\",\"Cheap Cloud Servers\",\"Cheap Storage Server Hosting\",\"Cheapest VPS\",\"Dedicated Server Hosting in Washington D.C\",\"Speed test VPS\"],\"articleSection\":[\"CentOS 7\",\"Cloud Hosting\",\"Django\",\"Linux Basics\",\"Linux Server\",\"Virtualization\",\"VPS Servers\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/understanding-django-models-building-the-data-structure\\\/\",\"url\":\"https:\\\/\\\/www.cloudsurph.com\\\/understanding-django-models-building-the-data-structure\\\/\",\"name\":\"Building data structures in Django models\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/understanding-django-models-building-the-data-structure\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/understanding-django-models-building-the-data-structure\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.cloudsurph.com\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/Django-Fundamentals-Setting-Up-Your-First-Project.png\",\"datePublished\":\"2024-04-06T16:02:43+00:00\",\"dateModified\":\"2024-04-06T16:03:50+00:00\",\"description\":\"Building data structures in Django models\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/understanding-django-models-building-the-data-structure\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.cloudsurph.com\\\/understanding-django-models-building-the-data-structure\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/understanding-django-models-building-the-data-structure\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.cloudsurph.com\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/Django-Fundamentals-Setting-Up-Your-First-Project.png\",\"contentUrl\":\"https:\\\/\\\/www.cloudsurph.com\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/Django-Fundamentals-Setting-Up-Your-First-Project.png\",\"width\":1280,\"height\":720,\"caption\":\"Implementing Internationalization and Localization in Django\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/understanding-django-models-building-the-data-structure\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.cloudsurph.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding Django Models: Building the Data Structure\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#website\",\"url\":\"https:\\\/\\\/www.cloudsurph.com\\\/\",\"name\":\"Cloudsurph Web Hosting Washington D.C.\",\"description\":\"Dedicated Server Hosting\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.cloudsurph.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#organization\",\"name\":\"CloudSurph Technology Solutions\",\"url\":\"https:\\\/\\\/www.cloudsurph.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.cloudsurph.com\\\/wp-content\\\/uploads\\\/2016\\\/04\\\/cloudsurph-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.cloudsurph.com\\\/wp-content\\\/uploads\\\/2016\\\/04\\\/cloudsurph-logo.png\",\"width\":2348,\"height\":1692,\"caption\":\"CloudSurph Technology Solutions\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/CloudSurph\\\/\",\"https:\\\/\\\/x.com\\\/Cloud_Surph\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#\\\/schema\\\/person\\\/ac9b4dd136d96e50d5f29c560191e7ed\",\"name\":\"Rony\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/40163fe1eb49d5eddd81954e8ad5122633e141df15b0733d07fbe4a156688ba5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/40163fe1eb49d5eddd81954e8ad5122633e141df15b0733d07fbe4a156688ba5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/40163fe1eb49d5eddd81954e8ad5122633e141df15b0733d07fbe4a156688ba5?s=96&d=mm&r=g\",\"caption\":\"Rony\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/cloudsurph\"],\"url\":\"https:\\\/\\\/www.cloudsurph.com\\\/author\\\/ron\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Building data structures in Django models","description":"Building data structures in Django models","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:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/","og_locale":"en_US","og_type":"article","og_title":"Building data structures in Django models","og_description":"Building data structures in Django models","og_url":"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/","og_site_name":"Cloudsurph Web Hosting Washington D.C.","article_publisher":"https:\/\/www.facebook.com\/CloudSurph\/","article_published_time":"2024-04-06T16:02:43+00:00","article_modified_time":"2024-04-06T16:03:50+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2024\/03\/Django-Fundamentals-Setting-Up-Your-First-Project.png","type":"image\/png"}],"author":"Rony","twitter_card":"summary_large_image","twitter_creator":"@cloudsurph","twitter_site":"@Cloud_Surph","twitter_misc":{"Written by":"Rony","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/#article","isPartOf":{"@id":"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/"},"author":{"name":"Rony","@id":"https:\/\/www.cloudsurph.com\/#\/schema\/person\/ac9b4dd136d96e50d5f29c560191e7ed"},"headline":"Understanding Django Models: Building the Data Structure","datePublished":"2024-04-06T16:02:43+00:00","dateModified":"2024-04-06T16:03:50+00:00","mainEntityOfPage":{"@id":"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/"},"wordCount":432,"publisher":{"@id":"https:\/\/www.cloudsurph.com\/#organization"},"image":{"@id":"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/#primaryimage"},"thumbnailUrl":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2024\/03\/Django-Fundamentals-Setting-Up-Your-First-Project.png","keywords":["Best VPS hosting server Maryland","Cheap Cloud Servers","Cheap Storage Server Hosting","Cheapest VPS","Dedicated Server Hosting in Washington D.C","Speed test VPS"],"articleSection":["CentOS 7","Cloud Hosting","Django","Linux Basics","Linux Server","Virtualization","VPS Servers"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/","url":"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/","name":"Building data structures in Django models","isPartOf":{"@id":"https:\/\/www.cloudsurph.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/#primaryimage"},"image":{"@id":"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/#primaryimage"},"thumbnailUrl":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2024\/03\/Django-Fundamentals-Setting-Up-Your-First-Project.png","datePublished":"2024-04-06T16:02:43+00:00","dateModified":"2024-04-06T16:03:50+00:00","description":"Building data structures in Django models","breadcrumb":{"@id":"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/#primaryimage","url":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2024\/03\/Django-Fundamentals-Setting-Up-Your-First-Project.png","contentUrl":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2024\/03\/Django-Fundamentals-Setting-Up-Your-First-Project.png","width":1280,"height":720,"caption":"Implementing Internationalization and Localization in Django"},{"@type":"BreadcrumbList","@id":"https:\/\/www.cloudsurph.com\/understanding-django-models-building-the-data-structure\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.cloudsurph.com\/"},{"@type":"ListItem","position":2,"name":"Understanding Django Models: Building the Data Structure"}]},{"@type":"WebSite","@id":"https:\/\/www.cloudsurph.com\/#website","url":"https:\/\/www.cloudsurph.com\/","name":"Cloudsurph Web Hosting Washington D.C.","description":"Dedicated Server Hosting","publisher":{"@id":"https:\/\/www.cloudsurph.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.cloudsurph.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.cloudsurph.com\/#organization","name":"CloudSurph Technology Solutions","url":"https:\/\/www.cloudsurph.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudsurph.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2016\/04\/cloudsurph-logo.png","contentUrl":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2016\/04\/cloudsurph-logo.png","width":2348,"height":1692,"caption":"CloudSurph Technology Solutions"},"image":{"@id":"https:\/\/www.cloudsurph.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/CloudSurph\/","https:\/\/x.com\/Cloud_Surph"]},{"@type":"Person","@id":"https:\/\/www.cloudsurph.com\/#\/schema\/person\/ac9b4dd136d96e50d5f29c560191e7ed","name":"Rony","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/40163fe1eb49d5eddd81954e8ad5122633e141df15b0733d07fbe4a156688ba5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/40163fe1eb49d5eddd81954e8ad5122633e141df15b0733d07fbe4a156688ba5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/40163fe1eb49d5eddd81954e8ad5122633e141df15b0733d07fbe4a156688ba5?s=96&d=mm&r=g","caption":"Rony"},"sameAs":["https:\/\/x.com\/cloudsurph"],"url":"https:\/\/www.cloudsurph.com\/author\/ron\/"}]}},"_links":{"self":[{"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/posts\/5902","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/comments?post=5902"}],"version-history":[{"count":1,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/posts\/5902\/revisions"}],"predecessor-version":[{"id":5903,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/posts\/5902\/revisions\/5903"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/media\/5876"}],"wp:attachment":[{"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/media?parent=5902"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/categories?post=5902"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/tags?post=5902"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}