{"id":4925,"date":"2021-07-03T09:00:00","date_gmt":"2021-07-03T07:00:00","guid":{"rendered":"https:\/\/wata.es\/?p=4925"},"modified":"2025-04-14T16:52:38","modified_gmt":"2025-04-14T14:52:38","slug":"sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process","status":"publish","type":"post","link":"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/","title":{"rendered":"SonarQube: How to maintain the quality of your code during a CI\/CD process"},"content":{"rendered":"\n<p>In previous articles we have seen different testing procedures that we can use to ensure the quality and correctness of the final product to be delivered. In this article we will talk about SonarQube, a tool that we can also use <strong>to ensure our internal quality<\/strong>.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>So we can check whether the development process, the architecture used or the algorithms employed follow a suitable structure, a pattern that allows us to maintain the product easily.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What is <strong>SonarQube<\/strong>?<\/h3>\n\n\n\n<p>SonarQube is one of the most used tools <strong>to check codes, detect bugs, vulnerabilities and other problems in our project<\/strong>. It allows the analysis of a code written in the most common programming languages (Java, PHP, JavaScript, C#, HTML, etc.).<\/p>\n\n\n\n<p>SonarQube is integrated as another file in the project to be analysed, and if the pipeline in which the tasks are started is configured correctly, <strong>the code inspection is performed automatically<\/strong>every time we make a change in any part of the project.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"311\" src=\"https:\/\/wata.es\/wp-content\/uploads\/2021\/05\/dev-cycle-sonarqube-wata-factory.png\" alt=\"\" class=\"wp-image-4889\" srcset=\"https:\/\/wata.es\/wp-content\/uploads\/2021\/05\/dev-cycle-sonarqube-wata-factory.png 750w, https:\/\/wata.es\/wp-content\/uploads\/2021\/05\/dev-cycle-sonarqube-wata-factory-300x124.png 300w\" sizes=\"auto, (max-width: 750px) 100vw, 750px\" \/><figcaption>The image is from the <a rel=\"noreferrer noopener\" href=\"https:\/\/docs.sonarqube.org\/latest\/\" target=\"_blank\">official documentation of SonarQube<\/a> <\/figcaption><\/figure>\n\n\n\n<p>As you can see in the image, the typical scenario in which utility can best be understood is one with three clear phases: <\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Development<\/strong> &#8211; The code is updated by the developers in the repository. Before they ask the SonarQube service to analyse the changes, they can get immediate feedback thanks to the <a rel=\"noreferrer noopener\" href=\"https:\/\/www.sonarlint.org\/\" target=\"_blank\">SonarLint<\/a> tool, which can be integrated into the IDEs.<\/li><li><strong>CI\/CD<\/strong> &#8211; When the new changes are added to the repository, the Continuous Integration tools check and build the code and run the tests. Then the SonarQube scanner is launched to analyse the results of some of these tests and the code as such. <\/li><li><strong>SonarQube platform<\/strong> &#8211; Once the analysis of the project is completed, the results are stored in the platform and depending on the configured quality conditions, team members can be informed if they need to fix a defect.<\/li><\/ul>\n\n\n\n<p>For the various projects carried out at <a href=\"https:\/\/wata.es\">WATA Factory<\/a>, we have opted for the <a rel=\"noreferrer noopener\" href=\"https:\/\/www.sonarqube.org\/downloads\/\" target=\"_blank\">Community-Edition<\/a>, which is free and open source. However, there are also paid alternatives that facilitate the installation and maintenance of the SonarQube service by the same company. The community version can be installed in two ways:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Local<\/strong> &#8211; The developer can set up the SonarQube service on their <em>localhost<\/em> to be able to analyse their code without having to host it on an external or remote server. <\/li><li><strong>Remote<\/strong> &#8211; The SonarQube service is hosted on a remote server that can be accessed using credentials generated by the service administrator. <\/li><\/ul>\n\n\n\n<p>Depending on the needs and size of the project (members, resources or services to be used), one can choose the most appropriate option.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>General concepts<\/strong> <\/h3>\n\n\n\n<p>To understand a little more about the relevance of using this tool, we will detail the general concepts that appear on the platform: <\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><strong>Users and groups<\/strong>: As in any environment, we can define users that are managed in groups. Each of these users has a set of permissions that allow them to request the analysis of a project, validate false positives of the analysis performed or even cancel it. <\/li><li><strong>Projects<\/strong>: To carry out the analysis of our code, we need to create a project on the platform with the necessary parameters that identify our software project. hese parameters should be specified in one way or another, depending on the language we use in our project. Within these projects we find the analysis of each project, which contains the following data: <\/li><li><strong>Bugs<\/strong>: errors in the code that need to be fixed ASAP. <\/li><li><strong>Vulnerabilities<\/strong>: Places in the code that are open to external attack and can threaten the integrity and security of the project. <\/li><li><strong>Hotspots<\/strong>: Parts of the code that should be checked to avoid major problems, they do not necessarily compromise the security of the project. <\/li><li><strong>Code smells<\/strong>: elements that make the code poorly readabla or difficult to maintain. <\/li><li><strong>Coverage<\/strong>: From the reports of the executed unit tests, SonarQube imports the results and displays the coverage. <\/li><li><strong>Duplicates<\/strong>: number of detected duplicated blocks, files and rows. <\/li><li><strong>Total lines<\/strong>: Total number of lines of code in the project. <\/li><li><strong>Languages<\/strong>: programming languages used in the project. <\/li><li><strong>Current status<\/strong>: Failed\/Passed, depending on the values set in the associated quality profile. <\/li><li><strong>Tags<\/strong>: tags that have been assigned to the project. <\/li><li><strong>Time<\/strong> of last analysis: record of each analysis performed. <\/li><li><strong>Quality profiles<\/strong>: They depend directly on the conditions defined in the Quality Gates, which indicate the rules to be followed in each of the languages available in SonarQube. The conditions of the quality profiles reflect the limits of the minimum coverage, duplicated lines, safety index or maintainability index. <\/li><\/ol>\n\n\n\n<p>As we can see, the report and the information generated are very comprehensive, giving us a very accurate overview of the status of our project.<\/p>\n\n\n\n<p>At WATA Factory, we have established SonarQube, another tool that enables code quality improvement and also indirect learning among developers. Because <strong>with each of the reports, one learns which bad practices to avoid and how to solve them<\/strong>with the suggestions offered by the same tool, thanks to the rules defined in the <em>Quality Gates<\/em>. In future articles we will see how we configure our project to be able to analyse it automatically from a <em>pipeline<\/em> with SonarQube. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>In previous articles we have seen different testing procedures that we can use to ensure the quality and correctness of the final product to be delivered. In this article we will talk about SonarQube, a tool that we can also use to ensure our internal quality.<\/p>\n","protected":false},"author":23,"featured_media":4444,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[2,180],"tags":[157,230,154],"class_list":["post-4925","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-news","category-technology","tag-quality-2","tag-sonarqube-3","tag-testing-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SonarQube: How to maintain the quality of your code during a CI\/CD process - WATA Factory<\/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:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SonarQube: How to maintain the quality of your code during a CI\/CD process - WATA Factory\" \/>\n<meta property=\"og:description\" content=\"In previous articles we have seen different testing procedures that we can use to ensure the quality and correctness of the final product to be delivered. In this article we will talk about SonarQube, a tool that we can also use to ensure our internal quality.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/\" \/>\n<meta property=\"og:site_name\" content=\"WATA Factory\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/watafactory\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-03T07:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-14T14:52:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wata.es\/wp-content\/uploads\/2020\/10\/manual-testing-wata-factory-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1969\" \/>\n\t<meta property=\"og:image:height\" content=\"1108\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Azahara Camacho\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@watafactory\" \/>\n<meta name=\"twitter:site\" content=\"@watafactory\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Azahara Camacho\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/\"},\"author\":{\"name\":\"Azahara Camacho\",\"@id\":\"https:\/\/wata.es\/#\/schema\/person\/a28afaf1e1c18fb9c85bae7175b8a841\"},\"headline\":\"SonarQube: How to maintain the quality of your code during a CI\/CD process\",\"datePublished\":\"2021-07-03T07:00:00+00:00\",\"dateModified\":\"2025-04-14T14:52:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/\"},\"wordCount\":879,\"publisher\":{\"@id\":\"https:\/\/wata.es\/#organization\"},\"image\":{\"@id\":\"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/wata.es\/wp-content\/uploads\/2020\/10\/manual-testing-wata-factory-1.jpg\",\"keywords\":[\"quality\",\"sonarqube\",\"testing\"],\"articleSection\":[\"News\",\"Technology\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/\",\"url\":\"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/\",\"name\":\"SonarQube: How to maintain the quality of your code during a CI\/CD process - WATA Factory\",\"isPartOf\":{\"@id\":\"https:\/\/wata.es\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/wata.es\/wp-content\/uploads\/2020\/10\/manual-testing-wata-factory-1.jpg\",\"datePublished\":\"2021-07-03T07:00:00+00:00\",\"dateModified\":\"2025-04-14T14:52:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#primaryimage\",\"url\":\"https:\/\/wata.es\/wp-content\/uploads\/2020\/10\/manual-testing-wata-factory-1.jpg\",\"contentUrl\":\"https:\/\/wata.es\/wp-content\/uploads\/2020\/10\/manual-testing-wata-factory-1.jpg\",\"width\":1969,\"height\":1108},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/wata.es\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SonarQube: How to maintain the quality of your code during a CI\/CD process\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/wata.es\/#website\",\"url\":\"https:\/\/wata.es\/\",\"name\":\"WATA Factory\",\"description\":\"IT Consulting &amp; Outsourcing for your company\",\"publisher\":{\"@id\":\"https:\/\/wata.es\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/wata.es\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/wata.es\/#organization\",\"name\":\"WATA Factory\",\"url\":\"https:\/\/wata.es\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wata.es\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/wata.es\/wp-content\/uploads\/2019\/12\/logowata.png\",\"contentUrl\":\"https:\/\/wata.es\/wp-content\/uploads\/2019\/12\/logowata.png\",\"width\":688,\"height\":176,\"caption\":\"WATA Factory\"},\"image\":{\"@id\":\"https:\/\/wata.es\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/watafactory\/\",\"https:\/\/x.com\/watafactory\",\"https:\/\/www.linkedin.com\/company\/wata\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/wata.es\/#\/schema\/person\/a28afaf1e1c18fb9c85bae7175b8a841\",\"name\":\"Azahara Camacho\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wata.es\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0de2628fe514c40b14a86a7ed324e891b56293a9e72df673d2505d8a11f69b17?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0de2628fe514c40b14a86a7ed324e891b56293a9e72df673d2505d8a11f69b17?s=96&d=mm&r=g\",\"caption\":\"Azahara Camacho\"},\"url\":\"https:\/\/wata.es\/author\/acamacho\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SonarQube: How to maintain the quality of your code during a CI\/CD process - WATA Factory","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:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/","og_locale":"en_US","og_type":"article","og_title":"SonarQube: How to maintain the quality of your code during a CI\/CD process - WATA Factory","og_description":"In previous articles we have seen different testing procedures that we can use to ensure the quality and correctness of the final product to be delivered. In this article we will talk about SonarQube, a tool that we can also use to ensure our internal quality.","og_url":"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/","og_site_name":"WATA Factory","article_publisher":"https:\/\/www.facebook.com\/watafactory\/","article_published_time":"2021-07-03T07:00:00+00:00","article_modified_time":"2025-04-14T14:52:38+00:00","og_image":[{"width":1969,"height":1108,"url":"https:\/\/wata.es\/wp-content\/uploads\/2020\/10\/manual-testing-wata-factory-1.jpg","type":"image\/jpeg"}],"author":"Azahara Camacho","twitter_card":"summary_large_image","twitter_creator":"@watafactory","twitter_site":"@watafactory","twitter_misc":{"Written by":"Azahara Camacho","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#article","isPartOf":{"@id":"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/"},"author":{"name":"Azahara Camacho","@id":"https:\/\/wata.es\/#\/schema\/person\/a28afaf1e1c18fb9c85bae7175b8a841"},"headline":"SonarQube: How to maintain the quality of your code during a CI\/CD process","datePublished":"2021-07-03T07:00:00+00:00","dateModified":"2025-04-14T14:52:38+00:00","mainEntityOfPage":{"@id":"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/"},"wordCount":879,"publisher":{"@id":"https:\/\/wata.es\/#organization"},"image":{"@id":"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#primaryimage"},"thumbnailUrl":"https:\/\/wata.es\/wp-content\/uploads\/2020\/10\/manual-testing-wata-factory-1.jpg","keywords":["quality","sonarqube","testing"],"articleSection":["News","Technology"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/","url":"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/","name":"SonarQube: How to maintain the quality of your code during a CI\/CD process - WATA Factory","isPartOf":{"@id":"https:\/\/wata.es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#primaryimage"},"image":{"@id":"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#primaryimage"},"thumbnailUrl":"https:\/\/wata.es\/wp-content\/uploads\/2020\/10\/manual-testing-wata-factory-1.jpg","datePublished":"2021-07-03T07:00:00+00:00","dateModified":"2025-04-14T14:52:38+00:00","breadcrumb":{"@id":"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#primaryimage","url":"https:\/\/wata.es\/wp-content\/uploads\/2020\/10\/manual-testing-wata-factory-1.jpg","contentUrl":"https:\/\/wata.es\/wp-content\/uploads\/2020\/10\/manual-testing-wata-factory-1.jpg","width":1969,"height":1108},{"@type":"BreadcrumbList","@id":"https:\/\/wata.es\/sonarqube-how-to-maintain-the-quality-of-your-code-during-a-ci-cd-process\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wata.es\/"},{"@type":"ListItem","position":2,"name":"SonarQube: How to maintain the quality of your code during a CI\/CD process"}]},{"@type":"WebSite","@id":"https:\/\/wata.es\/#website","url":"https:\/\/wata.es\/","name":"WATA Factory","description":"IT Consulting &amp; Outsourcing for your company","publisher":{"@id":"https:\/\/wata.es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wata.es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/wata.es\/#organization","name":"WATA Factory","url":"https:\/\/wata.es\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wata.es\/#\/schema\/logo\/image\/","url":"https:\/\/wata.es\/wp-content\/uploads\/2019\/12\/logowata.png","contentUrl":"https:\/\/wata.es\/wp-content\/uploads\/2019\/12\/logowata.png","width":688,"height":176,"caption":"WATA Factory"},"image":{"@id":"https:\/\/wata.es\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/watafactory\/","https:\/\/x.com\/watafactory","https:\/\/www.linkedin.com\/company\/wata\/"]},{"@type":"Person","@id":"https:\/\/wata.es\/#\/schema\/person\/a28afaf1e1c18fb9c85bae7175b8a841","name":"Azahara Camacho","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wata.es\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0de2628fe514c40b14a86a7ed324e891b56293a9e72df673d2505d8a11f69b17?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0de2628fe514c40b14a86a7ed324e891b56293a9e72df673d2505d8a11f69b17?s=96&d=mm&r=g","caption":"Azahara Camacho"},"url":"https:\/\/wata.es\/author\/acamacho\/"}]}},"_links":{"self":[{"href":"https:\/\/wata.es\/wp-json\/wp\/v2\/posts\/4925","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wata.es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wata.es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wata.es\/wp-json\/wp\/v2\/users\/23"}],"replies":[{"embeddable":true,"href":"https:\/\/wata.es\/wp-json\/wp\/v2\/comments?post=4925"}],"version-history":[{"count":5,"href":"https:\/\/wata.es\/wp-json\/wp\/v2\/posts\/4925\/revisions"}],"predecessor-version":[{"id":11942,"href":"https:\/\/wata.es\/wp-json\/wp\/v2\/posts\/4925\/revisions\/11942"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wata.es\/wp-json\/wp\/v2\/media\/4444"}],"wp:attachment":[{"href":"https:\/\/wata.es\/wp-json\/wp\/v2\/media?parent=4925"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wata.es\/wp-json\/wp\/v2\/categories?post=4925"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wata.es\/wp-json\/wp\/v2\/tags?post=4925"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}