{"id":2025,"date":"2025-06-19T03:19:08","date_gmt":"2025-06-19T03:19:08","guid":{"rendered":"https:\/\/robertoosorno.com\/?p=2025"},"modified":"2025-06-19T04:22:50","modified_gmt":"2025-06-19T04:22:50","slug":"herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion","status":"publish","type":"post","link":"https:\/\/robertoosorno.com\/en\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/","title":{"rendered":"Herramienta Cap\u00edtulo #6"},"content":{"rendered":"<h4 class=\"wp-block-heading\" id=\"h-calculadora-de-indicadores-de-innovacion\">Calculadora de Indicadores de Innovaci\u00f3n<\/h4>\n\n\n\n<p>Esta herramienta te permite calcular, de manera r\u00e1pida, los siguientes indicadores:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>N\u00famero total de ideas recibidas.<\/li>\n\n\n\n<li>Tasa de conversi\u00f3n de ideas a prototipos.<\/li>\n\n\n\n<li>Hit-rate (ideas exitosas vs. ideas recibidas).<\/li>\n\n\n\n<li>Tiempo promedio del ciclo de innovaci\u00f3n.<\/li>\n\n\n\n<li>Proporci\u00f3n de ingresos por innovaci\u00f3n.<\/li>\n<\/ol>\n\n\n\n<p><\/p>\n\n\n\n<p>Para ello necesitas saber solo 5 datos que probablemente ya tienes o puedes empezar a registrar:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Indicador<\/th><th>Qu\u00e9 necesitas ingresar<\/th><\/tr><\/thead><tbody><tr><td>Ideas recibidas<\/td><td>Total de ideas generadas<\/td><\/tr><tr><td>Ideas prototipadas<\/td><td>Ideas que pasaron a prototipo<\/td><\/tr><tr><td>Ideas exitosas (implementadas)<\/td><td>Ideas que llegaron al mercado<\/td><\/tr><tr><td>Tiempo total (en d\u00edas)<\/td><td>Tiempo total que tardaron en implementarse<\/td><\/tr><tr><td>Ingresos por innovaci\u00f3n (MXN)<\/td><td>Ingresos generados por nuevos productos<\/td><\/tr><tr><td>Ingresos totales de la organizaci\u00f3n<\/td><td>Ingresos anuales (o del periodo) general<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<!DOCTYPE html>\n<html lang=\"es\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Calculadora de Indicadores de Innovaci\u00f3n<\/title>\n  <style>\n    :root {\n      --primary-color: #0077cc;\n      --light-gray: #f8f8f8;\n      --text-gray: #333;\n      --border-radius: 8px;\n    }\n\n    body {\n      font-family: \"Segoe UI\", sans-serif;\n      background-color: var(--light-gray);\n      margin: 0;\n      padding: 20px;\n      color: var(--text-gray);\n    }\n\n    .container {\n      max-width: 600px;\n      margin: auto;\n      background-color: white;\n      padding: 30px;\n      border-radius: var(--border-radius);\n      box-shadow: 0 0 15px rgba(0,0,0,0.05);\n    }\n\n    h1 {\n      text-align: center;\n      color: var(--primary-color);\n    }\n\n    label {\n      display: block;\n      margin-top: 15px;\n      font-weight: 600;\n    }\n\n    input {\n      width: 100%;\n      padding: 10px;\n      margin-top: 5px;\n      border: 1px solid #ccc;\n      border-radius: var(--border-radius);\n      font-size: 1rem;\n    }\n\n    button {\n      width: 100%;\n      margin-top: 25px;\n      padding: 12px;\n      background-color: var(--primary-color);\n      color: white;\n      border: none;\n      font-size: 1rem;\n      border-radius: var(--border-radius);\n      cursor: pointer;\n      transition: background 0.3s ease;\n    }\n\n    button:hover {\n      background-color: #005fa3;\n    }\n\n    .resultado {\n      margin-top: 30px;\n      padding: 20px;\n      background-color: #e9f5ff;\n      border-radius: var(--border-radius);\n      border-left: 5px solid var(--primary-color);\n    }\n\n    @media screen and (max-width: 480px) {\n      .container {\n        padding: 20px;\n      }\n\n      h1 {\n        font-size: 1.5rem;\n      }\n    }\n  <\/style>\n<\/head>\n<body>\n\n  <div class=\"container\">\n    <h1>Indicadores de Innovaci\u00f3n<\/h1>\n\n    <label for=\"ideas\">Ideas recibidas:<\/label>\n    <input type=\"number\" id=\"ideas\" placeholder=\"Ej. 50\">\n\n    <label for=\"prototipos\">Ideas que llegaron a prototipo:<\/label>\n    <input type=\"number\" id=\"prototipos\" placeholder=\"Ej. 20\">\n\n    <label for=\"exitosas\">Ideas exitosas (implementadas):<\/label>\n    <input type=\"number\" id=\"exitosas\" placeholder=\"Ej. 5\">\n\n    <label for=\"tiempo\">Tiempo total del ciclo (en d\u00edas):<\/label>\n    <input type=\"number\" id=\"tiempo\" placeholder=\"Ej. 300\">\n\n    <label for=\"ingresosInnovacion\">Ingresos por innovaci\u00f3n (MXN):<\/label>\n    <input type=\"number\" id=\"ingresosInnovacion\" placeholder=\"Ej. 120000\">\n\n    <label for=\"ingresosTotales\">Ingresos totales de la organizaci\u00f3n (MXN):<\/label>\n    <input type=\"number\" id=\"ingresosTotales\" placeholder=\"Ej. 2000000\">\n\n    <button onclick=\"calcular()\">Calcular indicadores<\/button>\n\n    <div class=\"resultado\" id=\"resultado\"><\/div>\n  <\/div>\n\n  <script>\n    function calcular() {\n      const ideas = parseFloat(document.getElementById(\"ideas\").value);\n      const prototipos = parseFloat(document.getElementById(\"prototipos\").value);\n      const exitosas = parseFloat(document.getElementById(\"exitosas\").value);\n      const tiempo = parseFloat(document.getElementById(\"tiempo\").value);\n      const ingresosInnovacion = parseFloat(document.getElementById(\"ingresosInnovacion\").value);\n      const ingresosTotales = parseFloat(document.getElementById(\"ingresosTotales\").value);\n\n      if (!ideas || ideas <= 0) {\n        alert(\"Por favor ingresa al menos una idea v\u00e1lida.\");\n        return;\n      }\n\n      const tasaPrototipos = ((prototipos \/ ideas) * 100).toFixed(2);\n      const hitRate = ((exitosas \/ ideas) * 100).toFixed(2);\n      const tiempoPromedio = (tiempo \/ ideas).toFixed(1);\n      const proporci\u00f3nIngresos = ingresosTotales > 0\n        ? ((ingresosInnovacion \/ ingresosTotales) * 100).toFixed(2)\n        : \"No disponible\";\n\n      document.getElementById(\"resultado\").innerHTML = `\n        <strong>Tasa de conversi\u00f3n (ideas \u2192 prototipos):<\/strong> ${tasaPrototipos}%<br><br>\n        <strong>Hit-rate (ideas exitosas):<\/strong> ${hitRate}%<br><br>\n        <strong>Tiempo promedio por idea:<\/strong> ${tiempoPromedio} d\u00edas<br><br>\n        <strong>Ingresos por innovaci\u00f3n:<\/strong> ${proporci\u00f3nIngresos}% del total<br>\n      `;\n    }\n  <\/script>\n\n<\/body>\n<\/html>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter is-resized\"><img fetchpriority=\"high\" decoding=\"async\" width=\"800\" height=\"2000\" src=\"https:\/\/robertoosorno.com\/wp-content\/uploads\/2025\/06\/Herramienta-Articulo-6-\u00bfComo-se-calculan-estos-indicadores-1.png\" alt=\"\" class=\"wp-image-2034\" style=\"width:441px;height:auto\" srcset=\"https:\/\/robertoosorno.com\/wp-content\/uploads\/2025\/06\/Herramienta-Articulo-6-\u00bfComo-se-calculan-estos-indicadores-1.png 800w, https:\/\/robertoosorno.com\/wp-content\/uploads\/2025\/06\/Herramienta-Articulo-6-\u00bfComo-se-calculan-estos-indicadores-1-120x300.png 120w, https:\/\/robertoosorno.com\/wp-content\/uploads\/2025\/06\/Herramienta-Articulo-6-\u00bfComo-se-calculan-estos-indicadores-1-410x1024.png 410w, https:\/\/robertoosorno.com\/wp-content\/uploads\/2025\/06\/Herramienta-Articulo-6-\u00bfComo-se-calculan-estos-indicadores-1-768x1920.png 768w, https:\/\/robertoosorno.com\/wp-content\/uploads\/2025\/06\/Herramienta-Articulo-6-\u00bfComo-se-calculan-estos-indicadores-1-614x1536.png 614w, https:\/\/robertoosorno.com\/wp-content\/uploads\/2025\/06\/Herramienta-Articulo-6-\u00bfComo-se-calculan-estos-indicadores-1-5x12.png 5w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/figure><\/div>\n\n\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>Calculadora de Indicadores de Innovaci\u00f3n Esta herramienta te permite calcular, de manera r\u00e1pida, los siguientes indicadores: Para ello necesitas saber solo 5 datos que probablemente ya tienes o puedes empezar a registrar: Indicador Qu\u00e9 necesitas ingresar Ideas recibidas Total de ideas generadas Ideas prototipadas Ideas que pasaron a prototipo Ideas exitosas (implementadas) Ideas que llegaron [&hellip;]<\/p>","protected":false},"author":4,"featured_media":2027,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_eb_attr":"","footnotes":""},"categories":[9],"tags":[15],"class_list":["post-2025","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-transformacion","tag-articulos-recientes"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.9 (Yoast SEO v21.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Herramienta Cap\u00edtulo #6 - robertoosorno.com<\/title>\n<meta name=\"description\" content=\"Herramienta Cap\u00edtulo #6\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/robertoosorno.com\/en\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Roberto Osorno\" \/>\n<meta property=\"og:description\" content=\"Herramienta Cap\u00edtulo #6\" \/>\n<meta property=\"og:url\" content=\"https:\/\/robertoosorno.com\/en\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/\" \/>\n<meta property=\"og:site_name\" content=\"robertoosorno.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/roberto.o.hinojosa?mibextid=wwXIfr&amp;rdid=ZN4qwCWsy8LRrSWw&amp;share_url=httpswww.facebook.comshare18N69gECNDmibextidwwXIfr\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-19T03:19:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-19T04:22:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/robertoosorno.com\/wp-content\/uploads\/2025\/06\/Herramienta-6-1024x683.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Roberto.osorno.hinojosa@gmail.com\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Roberto.osorno.hinojosa@gmail.com\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/\"},\"author\":{\"name\":\"Roberto.osorno.hinojosa@gmail.com\",\"@id\":\"https:\/\/robertoosorno.com\/#\/schema\/person\/f66f8a5d27b7415cfea021f67c018c4d\"},\"headline\":\"Herramienta Cap\u00edtulo #6\",\"datePublished\":\"2025-06-19T03:19:08+00:00\",\"dateModified\":\"2025-06-19T04:22:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/\"},\"wordCount\":169,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/robertoosorno.com\/#organization\"},\"keywords\":[\"Art\u00edculos recientes\"],\"articleSection\":[\"Transformaci\u00f3n\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/\",\"url\":\"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/\",\"name\":\"Herramienta Cap\u00edtulo #6 - robertoosorno.com\",\"isPartOf\":{\"@id\":\"https:\/\/robertoosorno.com\/#website\"},\"datePublished\":\"2025-06-19T03:19:08+00:00\",\"dateModified\":\"2025-06-19T04:22:50+00:00\",\"description\":\"Herramienta Cap\u00edtulo #6\",\"breadcrumb\":{\"@id\":\"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Inicio\",\"item\":\"https:\/\/robertoosorno.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Herramienta Cap\u00edtulo #6\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/robertoosorno.com\/#website\",\"url\":\"https:\/\/robertoosorno.com\/\",\"name\":\"Roberto Osorno\",\"description\":\"Estamos para entender, dise\u00f1ar y resolver\",\"publisher\":{\"@id\":\"https:\/\/robertoosorno.com\/#organization\"},\"alternateName\":\"Roberto Osorno\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/robertoosorno.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/robertoosorno.com\/#organization\",\"name\":\"Roberto Osorno\",\"alternateName\":\"Roberto Osorno\",\"url\":\"https:\/\/robertoosorno.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/robertoosorno.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/robertoosorno.com\/wp-content\/uploads\/2024\/12\/Group-471.png\",\"contentUrl\":\"https:\/\/robertoosorno.com\/wp-content\/uploads\/2024\/12\/Group-471.png\",\"width\":190,\"height\":65,\"caption\":\"Roberto Osorno\"},\"image\":{\"@id\":\"https:\/\/robertoosorno.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/roberto.o.hinojosa?mibextid=wwXIfr&rdid=ZN4qwCWsy8LRrSWw&share_url=httpswww.facebook.comshare18N69gECNDmibextidwwXIfr\",\"https:\/\/www.instagram.com\/roberto.osorno.hinojosa?igsh=cWF3Znh2djkzaXdw&utm_source=qr\",\"https:\/\/www.linkedin.com\/in\/robertoosornohinojosa\/\"],\"publishingPrinciples\":\"https:\/\/robertoosorno.com\/politica-de-privacidad\/\",\"actionableFeedbackPolicy\":\"https:\/\/robertoosorno.com\/politica-de-privacidad\/\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/robertoosorno.com\/#\/schema\/person\/f66f8a5d27b7415cfea021f67c018c4d\",\"name\":\"Roberto.osorno.hinojosa@gmail.com\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/robertoosorno.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/118d28eb4c5de23f17377f3c751f6d04?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/118d28eb4c5de23f17377f3c751f6d04?s=96&d=mm&r=g\",\"caption\":\"Roberto.osorno.hinojosa@gmail.com\"},\"url\":\"https:\/\/robertoosorno.com\/en\/author\/roberto-osorno-hinojosagmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Herramienta Cap\u00edtulo #6 - robertoosorno.com","description":"Herramienta Cap\u00edtulo #6","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:\/\/robertoosorno.com\/en\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/","og_locale":"en_US","og_type":"article","og_title":"Roberto Osorno","og_description":"Herramienta Cap\u00edtulo #6","og_url":"https:\/\/robertoosorno.com\/en\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/","og_site_name":"robertoosorno.com","article_publisher":"https:\/\/www.facebook.com\/roberto.o.hinojosa?mibextid=wwXIfr&rdid=ZN4qwCWsy8LRrSWw&share_url=httpswww.facebook.comshare18N69gECNDmibextidwwXIfr","article_published_time":"2025-06-19T03:19:08+00:00","article_modified_time":"2025-06-19T04:22:50+00:00","og_image":[{"width":1024,"height":683,"url":"https:\/\/robertoosorno.com\/wp-content\/uploads\/2025\/06\/Herramienta-6-1024x683.png","type":"image\/png"}],"author":"Roberto.osorno.hinojosa@gmail.com","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Roberto.osorno.hinojosa@gmail.com","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/#article","isPartOf":{"@id":"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/"},"author":{"name":"Roberto.osorno.hinojosa@gmail.com","@id":"https:\/\/robertoosorno.com\/#\/schema\/person\/f66f8a5d27b7415cfea021f67c018c4d"},"headline":"Herramienta Cap\u00edtulo #6","datePublished":"2025-06-19T03:19:08+00:00","dateModified":"2025-06-19T04:22:50+00:00","mainEntityOfPage":{"@id":"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/"},"wordCount":169,"commentCount":0,"publisher":{"@id":"https:\/\/robertoosorno.com\/#organization"},"keywords":["Art\u00edculos recientes"],"articleSection":["Transformaci\u00f3n"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/","url":"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/","name":"Herramienta Cap\u00edtulo #6 - robertoosorno.com","isPartOf":{"@id":"https:\/\/robertoosorno.com\/#website"},"datePublished":"2025-06-19T03:19:08+00:00","dateModified":"2025-06-19T04:22:50+00:00","description":"Herramienta Cap\u00edtulo #6","breadcrumb":{"@id":"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/robertoosorno.com\/herramienta-capitulo-6-calculadora-de-indicadores-de-innovacion\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Inicio","item":"https:\/\/robertoosorno.com\/"},{"@type":"ListItem","position":2,"name":"Herramienta Cap\u00edtulo #6"}]},{"@type":"WebSite","@id":"https:\/\/robertoosorno.com\/#website","url":"https:\/\/robertoosorno.com\/","name":"Roberto Osorno","description":"Estamos para entender, dise\u00f1ar y resolver","publisher":{"@id":"https:\/\/robertoosorno.com\/#organization"},"alternateName":"Roberto Osorno","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/robertoosorno.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/robertoosorno.com\/#organization","name":"Roberto Osorno","alternateName":"Roberto Osorno","url":"https:\/\/robertoosorno.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/robertoosorno.com\/#\/schema\/logo\/image\/","url":"https:\/\/robertoosorno.com\/wp-content\/uploads\/2024\/12\/Group-471.png","contentUrl":"https:\/\/robertoosorno.com\/wp-content\/uploads\/2024\/12\/Group-471.png","width":190,"height":65,"caption":"Roberto Osorno"},"image":{"@id":"https:\/\/robertoosorno.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/roberto.o.hinojosa?mibextid=wwXIfr&rdid=ZN4qwCWsy8LRrSWw&share_url=httpswww.facebook.comshare18N69gECNDmibextidwwXIfr","https:\/\/www.instagram.com\/roberto.osorno.hinojosa?igsh=cWF3Znh2djkzaXdw&utm_source=qr","https:\/\/www.linkedin.com\/in\/robertoosornohinojosa\/"],"publishingPrinciples":"https:\/\/robertoosorno.com\/politica-de-privacidad\/","actionableFeedbackPolicy":"https:\/\/robertoosorno.com\/politica-de-privacidad\/"},{"@type":"Person","@id":"https:\/\/robertoosorno.com\/#\/schema\/person\/f66f8a5d27b7415cfea021f67c018c4d","name":"Roberto.osorno.hinojosa@gmail.com","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/robertoosorno.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/118d28eb4c5de23f17377f3c751f6d04?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/118d28eb4c5de23f17377f3c751f6d04?s=96&d=mm&r=g","caption":"Roberto.osorno.hinojosa@gmail.com"},"url":"https:\/\/robertoosorno.com\/en\/author\/roberto-osorno-hinojosagmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/robertoosorno.com\/en\/wp-json\/wp\/v2\/posts\/2025","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/robertoosorno.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/robertoosorno.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/robertoosorno.com\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/robertoosorno.com\/en\/wp-json\/wp\/v2\/comments?post=2025"}],"version-history":[{"count":4,"href":"https:\/\/robertoosorno.com\/en\/wp-json\/wp\/v2\/posts\/2025\/revisions"}],"predecessor-version":[{"id":2035,"href":"https:\/\/robertoosorno.com\/en\/wp-json\/wp\/v2\/posts\/2025\/revisions\/2035"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/robertoosorno.com\/en\/wp-json\/wp\/v2\/media\/2027"}],"wp:attachment":[{"href":"https:\/\/robertoosorno.com\/en\/wp-json\/wp\/v2\/media?parent=2025"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/robertoosorno.com\/en\/wp-json\/wp\/v2\/categories?post=2025"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/robertoosorno.com\/en\/wp-json\/wp\/v2\/tags?post=2025"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}