{"id":401,"date":"2024-05-27T12:31:21","date_gmt":"2024-05-27T15:31:21","guid":{"rendered":"https:\/\/www.isacaguiar.com.br\/blog\/?p=401"},"modified":"2024-06-05T18:30:51","modified_gmt":"2024-06-05T21:30:51","slug":"ora-01422-exact-fetch-returns-more-than-requested-number-of-rows","status":"publish","type":"post","link":"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/","title":{"rendered":"ORA-01422: exact fetch returns more than requested number of rows"},"content":{"rendered":"<p>O erro <code>ORA-01422: exact fetch returns more than requested number of rows<\/code> ocorre quando uma instru\u00e7\u00e3o <code>SELECT ... INTO<\/code> em PL\/SQL retorna mais de uma linha. Em PL\/SQL, a instru\u00e7\u00e3o <code>SELECT ... INTO<\/code> \u00e9 usada para buscar um \u00fanico registro. Se a consulta retornar mais de uma linha, o erro <code>ORA-01422<\/code> ser\u00e1 gerado.<\/p>\n<h2>Como Diagnosticar e Corrigir<\/h2>\n<p><strong>1. Verifique a Consulta:<\/strong> Certifique-se de que a consulta usada com SELECT &#8230; INTO est\u00e1 estruturada para retornar exatamente uma linha. Adicione condi\u00e7\u00f5es apropriadas na cl\u00e1usula WHERE para garantir isso.<\/p>\n<p><strong>2. Use Cursos para M\u00faltiplas Linhas:<\/strong> Se a consulta puder retornar v\u00e1rias linhas, considere usar um cursor expl\u00edcito ou um loop com SELECT &#8230; BULK COLLECT INTO.<\/p>\n<h2>Exemplo de C\u00f3digo com Erro<\/h2>\n<p>Aqui est\u00e1 um exemplo de c\u00f3digo que pode gerar o erro ORA-01422:<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"wp-block-preformatted prism line-numbers lang-sql\" data-lang=\"SQL\"><code class=\"language-sql\">DECLARE\r\n    v_job_name VARCHAR2(30);\r\nBEGIN\r\n    SELECT job_name\r\n    INTO v_job_name\r\n    FROM dcl_clean_table\r\n    WHERE table_name = 'MINHA_TABELA';\r\n    \r\n    DBMS_OUTPUT.PUT_LINE('Job Name: ' || v_job_name);\r\nEND;<\/code><\/pre>\n<\/div>\n<p>Se a consulta SELECT job_name FROM dcl_clean_table WHERE table_name = &#8216;MINHA_TABELA&#8217; retornar mais de uma linha, o erro ORA-01422 ser\u00e1 gerado.<\/p>\n<h2>Solu\u00e7\u00f5es<\/h2>\n<h3>1. Certifique-se de que a Consulta Retorne Apenas uma Linha<\/h3>\n<p>Voc\u00ea pode ajustar a consulta para garantir que ela retorne apenas uma linha, usando a cl\u00e1usula ROWNUM ou uma fun\u00e7\u00e3o agregada, como MIN ou MAX.<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"wp-block-preformatted prism line-numbers lang-sql\" data-lang=\"SQL\"><code class=\"language-sql\">DECLARE\r\n    v_job_name VARCHAR2(30);\r\nBEGIN\r\n    SELECT job_name\r\n    INTO v_job_name\r\n    FROM (SELECT job_name FROM dcl_clean_table WHERE table_name = 'MINHA_TABELA' AND ROWNUM = 1);\r\n    \r\n    DBMS_OUTPUT.PUT_LINE('Job Name: ' || v_job_name);\r\nEND;\r\n<\/code><\/pre>\n<\/div>\n<h3>2. Use um Cursor Expl\u00edcito<\/h3>\n<p>Se a consulta puder retornar v\u00e1rias linhas e voc\u00ea quiser processar cada linha, use um cursor expl\u00edcito.<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"wp-block-preformatted prism line-numbers lang-sql\" data-lang=\"SQL\"><code class=\"language-sql\">DECLARE\r\n    CURSOR c_jobs IS\r\n        SELECT job_name\r\n        FROM dcl_clean_table\r\n        WHERE table_name = 'MINHA_TABELA';\r\n        \r\n    v_job_name VARCHAR2(30);\r\nBEGIN\r\n    OPEN c_jobs;\r\n    LOOP\r\n        FETCH c_jobs INTO v_job_name;\r\n        EXIT WHEN c_jobs%NOTFOUND;\r\n        \r\n        DBMS_OUTPUT.PUT_LINE('Job Name: ' || v_job_name);\r\n    END LOOP;\r\n    CLOSE c_jobs;\r\nEND;\r\n<\/code><\/pre>\n<\/div>\n<h3>3. Use BULK COLLECT e LOOP<\/h3>\n<p>Outra abordagem \u00e9 usar BULK COLLECT INTO com um loop para processar v\u00e1rias linhas.<\/p>\n<div class=\"hcb_wrap\">\n<pre class=\"wp-block-preformatted prism line-numbers lang-sql\" data-lang=\"SQL\"><code class=\"language-sql\">DECLARE\r\n    TYPE job_name_table IS TABLE OF VARCHAR2(30);\r\n    v_job_names job_name_table;\r\nBEGIN\r\n    SELECT job_name\r\n    BULK COLLECT INTO v_job_names\r\n    FROM dcl_clean_table\r\n    WHERE table_name = 'MINHA_TABELA';\r\n    \r\n    FOR i IN 1..v_job_names.COUNT LOOP\r\n        DBMS_OUTPUT.PUT_LINE('Job Name: ' || v_job_names(i));\r\n    END LOOP;\r\nEND;\r\n<\/code><\/pre>\n<\/div>\n<h3>Conclus\u00e3o<\/h3>\n<p>Para evitar o erro ORA-01422, certifique-se de que sua consulta SELECT &#8230; INTO retorne exatamente uma linha, ou alterne para m\u00e9todos que possam lidar com m\u00faltiplas linhas, como cursores ou cole\u00e7\u00f5es.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>O erro ORA-01422: exact fetch returns more than requested number of rows ocorre quando uma instru\u00e7\u00e3o SELECT &#8230; INTO em PL\/SQL retorna\u2026<\/p>\n","protected":false},"author":1,"featured_media":426,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7,17],"tags":[],"class_list":["post-401","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bd","category-oracle"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>ORA-01422: exact fetch returns more than requested number of rows - Blog do Aguiar<\/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:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ORA-01422: exact fetch returns more than requested number of rows - Blog do Aguiar\" \/>\n<meta property=\"og:description\" content=\"O erro ORA-01422: exact fetch returns more than requested number of rows ocorre quando uma instru\u00e7\u00e3o SELECT ... INTO em PL\/SQL retorna\u2026\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog do Aguiar\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/isac.velozo.aguiar\" \/>\n<meta property=\"article:published_time\" content=\"2024-05-27T15:31:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-05T21:30:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.isacaguiar.com.br\/blog\/wp-content\/uploads\/2024\/05\/DALL\u00b7E-2024-05-30-17.23.03-An-abstract-and-professional-image-illustrating-a-database-error.-A-computer-screen-displays-an-error-message-in-red-text_-ORA-01422_-exact-fetch-ret.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"isacaguiar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"isacaguiar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/\"},\"author\":{\"name\":\"isacaguiar\",\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/#\/schema\/person\/78719359439f068d8b1e5e0bcb9d934d\"},\"headline\":\"ORA-01422: exact fetch returns more than requested number of rows\",\"datePublished\":\"2024-05-27T15:31:21+00:00\",\"dateModified\":\"2024-06-05T21:30:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/\"},\"wordCount\":271,\"image\":{\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.isacaguiar.com.br\/blog\/wp-content\/uploads\/2024\/05\/DALL\u00b7E-2024-05-30-17.23.03-An-abstract-and-professional-image-illustrating-a-database-error.-A-computer-screen-displays-an-error-message-in-red-text_-ORA-01422_-exact-fetch-ret.webp\",\"articleSection\":[\"Banco de Dados\",\"Oracle\"],\"inLanguage\":\"pt-BR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/\",\"url\":\"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/\",\"name\":\"ORA-01422: exact fetch returns more than requested number of rows - Blog do Aguiar\",\"isPartOf\":{\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.isacaguiar.com.br\/blog\/wp-content\/uploads\/2024\/05\/DALL\u00b7E-2024-05-30-17.23.03-An-abstract-and-professional-image-illustrating-a-database-error.-A-computer-screen-displays-an-error-message-in-red-text_-ORA-01422_-exact-fetch-ret.webp\",\"datePublished\":\"2024-05-27T15:31:21+00:00\",\"dateModified\":\"2024-06-05T21:30:51+00:00\",\"author\":{\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/#\/schema\/person\/78719359439f068d8b1e5e0bcb9d934d\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#primaryimage\",\"url\":\"https:\/\/www.isacaguiar.com.br\/blog\/wp-content\/uploads\/2024\/05\/DALL\u00b7E-2024-05-30-17.23.03-An-abstract-and-professional-image-illustrating-a-database-error.-A-computer-screen-displays-an-error-message-in-red-text_-ORA-01422_-exact-fetch-ret.webp\",\"contentUrl\":\"https:\/\/www.isacaguiar.com.br\/blog\/wp-content\/uploads\/2024\/05\/DALL\u00b7E-2024-05-30-17.23.03-An-abstract-and-professional-image-illustrating-a-database-error.-A-computer-screen-displays-an-error-message-in-red-text_-ORA-01422_-exact-fetch-ret.webp\",\"width\":1024,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"http:\/\/www.isacaguiar.com.br\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ORA-01422: exact fetch returns more than requested number of rows\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/#website\",\"url\":\"https:\/\/www.isacaguiar.com.br\/blog\/\",\"name\":\"Blog do Aguiar\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.isacaguiar.com.br\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.isacaguiar.com.br\/blog\/#\/schema\/person\/78719359439f068d8b1e5e0bcb9d934d\",\"name\":\"isacaguiar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/e22bb054d1154f07e6c91b82f0d68a219b6b04b58e5e3692c30cf457b51a9e9f?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e22bb054d1154f07e6c91b82f0d68a219b6b04b58e5e3692c30cf457b51a9e9f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e22bb054d1154f07e6c91b82f0d68a219b6b04b58e5e3692c30cf457b51a9e9f?s=96&d=mm&r=g\",\"caption\":\"isacaguiar\"},\"url\":\"https:\/\/www.isacaguiar.com.br\/blog\/author\/isacaguiar\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ORA-01422: exact fetch returns more than requested number of rows - Blog do Aguiar","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.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/","og_locale":"pt_BR","og_type":"article","og_title":"ORA-01422: exact fetch returns more than requested number of rows - Blog do Aguiar","og_description":"O erro ORA-01422: exact fetch returns more than requested number of rows ocorre quando uma instru\u00e7\u00e3o SELECT ... INTO em PL\/SQL retorna\u2026","og_url":"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/","og_site_name":"Blog do Aguiar","article_publisher":"https:\/\/www.facebook.com\/isac.velozo.aguiar","article_published_time":"2024-05-27T15:31:21+00:00","article_modified_time":"2024-06-05T21:30:51+00:00","og_image":[{"width":1024,"height":1024,"url":"https:\/\/www.isacaguiar.com.br\/blog\/wp-content\/uploads\/2024\/05\/DALL\u00b7E-2024-05-30-17.23.03-An-abstract-and-professional-image-illustrating-a-database-error.-A-computer-screen-displays-an-error-message-in-red-text_-ORA-01422_-exact-fetch-ret.webp","type":"image\/webp"}],"author":"isacaguiar","twitter_card":"summary_large_image","twitter_misc":{"Escrito por":"isacaguiar","Est. tempo de leitura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#article","isPartOf":{"@id":"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/"},"author":{"name":"isacaguiar","@id":"https:\/\/www.isacaguiar.com.br\/blog\/#\/schema\/person\/78719359439f068d8b1e5e0bcb9d934d"},"headline":"ORA-01422: exact fetch returns more than requested number of rows","datePublished":"2024-05-27T15:31:21+00:00","dateModified":"2024-06-05T21:30:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/"},"wordCount":271,"image":{"@id":"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#primaryimage"},"thumbnailUrl":"https:\/\/www.isacaguiar.com.br\/blog\/wp-content\/uploads\/2024\/05\/DALL\u00b7E-2024-05-30-17.23.03-An-abstract-and-professional-image-illustrating-a-database-error.-A-computer-screen-displays-an-error-message-in-red-text_-ORA-01422_-exact-fetch-ret.webp","articleSection":["Banco de Dados","Oracle"],"inLanguage":"pt-BR"},{"@type":"WebPage","@id":"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/","url":"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/","name":"ORA-01422: exact fetch returns more than requested number of rows - Blog do Aguiar","isPartOf":{"@id":"https:\/\/www.isacaguiar.com.br\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#primaryimage"},"image":{"@id":"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#primaryimage"},"thumbnailUrl":"https:\/\/www.isacaguiar.com.br\/blog\/wp-content\/uploads\/2024\/05\/DALL\u00b7E-2024-05-30-17.23.03-An-abstract-and-professional-image-illustrating-a-database-error.-A-computer-screen-displays-an-error-message-in-red-text_-ORA-01422_-exact-fetch-ret.webp","datePublished":"2024-05-27T15:31:21+00:00","dateModified":"2024-06-05T21:30:51+00:00","author":{"@id":"https:\/\/www.isacaguiar.com.br\/blog\/#\/schema\/person\/78719359439f068d8b1e5e0bcb9d934d"},"breadcrumb":{"@id":"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#primaryimage","url":"https:\/\/www.isacaguiar.com.br\/blog\/wp-content\/uploads\/2024\/05\/DALL\u00b7E-2024-05-30-17.23.03-An-abstract-and-professional-image-illustrating-a-database-error.-A-computer-screen-displays-an-error-message-in-red-text_-ORA-01422_-exact-fetch-ret.webp","contentUrl":"https:\/\/www.isacaguiar.com.br\/blog\/wp-content\/uploads\/2024\/05\/DALL\u00b7E-2024-05-30-17.23.03-An-abstract-and-professional-image-illustrating-a-database-error.-A-computer-screen-displays-an-error-message-in-red-text_-ORA-01422_-exact-fetch-ret.webp","width":1024,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/www.isacaguiar.com.br\/blog\/ora-01422-exact-fetch-returns-more-than-requested-number-of-rows\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"http:\/\/www.isacaguiar.com.br\/blog\/"},{"@type":"ListItem","position":2,"name":"ORA-01422: exact fetch returns more than requested number of rows"}]},{"@type":"WebSite","@id":"https:\/\/www.isacaguiar.com.br\/blog\/#website","url":"https:\/\/www.isacaguiar.com.br\/blog\/","name":"Blog do Aguiar","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.isacaguiar.com.br\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Person","@id":"https:\/\/www.isacaguiar.com.br\/blog\/#\/schema\/person\/78719359439f068d8b1e5e0bcb9d934d","name":"isacaguiar","image":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/secure.gravatar.com\/avatar\/e22bb054d1154f07e6c91b82f0d68a219b6b04b58e5e3692c30cf457b51a9e9f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e22bb054d1154f07e6c91b82f0d68a219b6b04b58e5e3692c30cf457b51a9e9f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e22bb054d1154f07e6c91b82f0d68a219b6b04b58e5e3692c30cf457b51a9e9f?s=96&d=mm&r=g","caption":"isacaguiar"},"url":"https:\/\/www.isacaguiar.com.br\/blog\/author\/isacaguiar\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.isacaguiar.com.br\/blog\/wp-json\/wp\/v2\/posts\/401","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.isacaguiar.com.br\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.isacaguiar.com.br\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.isacaguiar.com.br\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.isacaguiar.com.br\/blog\/wp-json\/wp\/v2\/comments?post=401"}],"version-history":[{"count":4,"href":"https:\/\/www.isacaguiar.com.br\/blog\/wp-json\/wp\/v2\/posts\/401\/revisions"}],"predecessor-version":[{"id":663,"href":"https:\/\/www.isacaguiar.com.br\/blog\/wp-json\/wp\/v2\/posts\/401\/revisions\/663"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.isacaguiar.com.br\/blog\/wp-json\/wp\/v2\/media\/426"}],"wp:attachment":[{"href":"https:\/\/www.isacaguiar.com.br\/blog\/wp-json\/wp\/v2\/media?parent=401"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.isacaguiar.com.br\/blog\/wp-json\/wp\/v2\/categories?post=401"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.isacaguiar.com.br\/blog\/wp-json\/wp\/v2\/tags?post=401"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}