NUEVOYa está disponible la primera herramienta de auditoría de visibilidad en IA para Web3.Ejecutar auditoría gratuita →
Token schema · 7 min read · Published 2026-03-06

7 errores de schema que dañan los rankings de sitios crypto

Los siete errores de validación de schema que vemos más seguido a través de auditorías crypto. Cada uno suprime elegibilidad de rich-result, tasa de citas IA o ambas. La lista está ordenada por severidad; arregla desde arriba hacia abajo y el lift acumulativo es significativo.

Chapter 01
// Severity 01

Error 1: schema genérico Producto en páginas de token

El error de schema más común individualmente en sitios crypto. Las landing pages de tokens emiten schema Producto (el default del framework) en lugar de FinancialProduct. Para Google y los modelos de extracción de IA, estos dos tipos señalan cosas completamente diferentes.

Producto posiciona la página como e-commerce. La IA extrae precio, disponibilidad, ratings y seller. Ninguno de esos mapea limpiamente sobre un token. FinancialProduct posiciona la página como instrumento monetario. La IA extrae símbolo de ticker, listings de exchange, conteo de holders, métricas de supply, historial de auditoría.

Detection. View the JSON-LD on any token landing page. If the @type is "Producto" or "Offer" without "FinancialProduct" anywhere, this error is present.

Fix. Migrate to FinancialProduct as documented in the complete schema reference. The migration is mechanical; the gain is large.

Chapter 02
// Severity 02

Error 2: schema sin propiedades requeridas

Cada tipo de schema tiene propiedades requeridas. Sáltatelos y el schema falla el Rich Resultados Test de Google, lo que significa sin elegibilidad de rich-snippet sin importar qué tan limpio sea el resto del markup.

Casos comunes en sitios crypto: FinancialProduct sin name, Organization sin url, BreadcrumbList sin itemListElement. El schema valida pero no produce rich result porque Google necesita los campos requeridos para mostrar el snippet.

Detection. Run every page-type template through the Google Rich Resultados Test. Required-property failures show up as warnings, not errors. The page renders but no rich snippet appears.

Fix. Reference Schema.org documentation for each type and confirm every required property is present. Add a CI check that runs the validator on each page-type template before deploys.

Chapter 03
// Severity 03

Error 3: formatos de fecha inválidos en schema

Las fechas en schema deben ser ISO 8601: YYYY-MM-DD o YYYY-MM-DDTHH:MM:SSZ. Otros formatos fallan la validación silenciosamente y rompen datePublished, dateModified, foundingDate y otros campos de fecha.

Vemos "April 24, 2026" o "24/04/2026" en schema de producción regularmente. El HTML se muestra correctamente porque los humanos leen la fecha en cualquier formato; el schema falla porque los validadores son estrictos.

Detection. Schema.org validator catches malformed dates. Google Rich Resultados Test usually does too, but as warnings rather than errors.

Fix. Format all dates as ISO 8601 in the schema layer regardless of how they display in the HTML. Use the framework's date serialization, never raw strings.

Chapter 04
// Severity 04

Error 4: data de tipo de cambio o precio rancia en schema

Las páginas de token que shippean data de precio en schema pero no la actualizan server-side terminan con precios días o semanas desactualizados. Los precios rancios de schema dañan más que los precios faltantes porque señalan que la structured data no se mantiene, lo cual baja el peso de confianza que los motores IA aplican a la fuente.

El patrón: el schema incluye exchangeRateSpecification con el precio de cuándo se desplegó la página por última vez. La página actualiza su precio visible vía ticker JavaScript, pero el schema no cambia. El crawler ve data rancia; la IA cita data rancia.

Detection. Comparar the schema price to the visible page price. If they diverge by more than a few percent, this error is present.

Fix. Either update schema server-side on every deploy with current price data, or omit price from schema entirely and use a separate live ticker. Stale schema is worse than missing schema.

Chapter 05
// Severity 05

Error 5: símbolos de ticker no coincidentes a través del sitio

Los sitios de token que usan diferentes representaciones de ticker a través de páginas confunden la extracción. La home page usa "USDC", la página de token usa "USD Coin", los docs usan "$USDC". Para la extracción de IA, estos pueden resolver a entidades diferentes.

El fix es naming canónico consistente. Escoge una representación de ticker, úsala en alternateName a través de todo el schema, y usa el nombre completo del token en la propiedad name. Los motores IA aprenden cuál representación asociar con la entidad; la representación inconsistente cuesta precisión de citas.

Detection. Audit every page that mentions the token. The schema alternateName should be identical across all pages.

Fix. Standardize on one representation per token and propagate the change through every page-type template.

Chapter 06
// Severity 06

Error 6: reseñas y calificaciones auto-agregadas

AggregateRating con reviewCount y ratingValue extraídos de data interna va en contra de las guidelines de reseñas de Google y se atrapa en revisión manual. Algunos sitios crypto añaden schema de rating fabricado en un intento de mostrar ratings de estrellas en los resultados de búsqueda.

La penalización no es solo sin estrellas. La revisión manual de Google puede marcar el sitio entero como low-quality, lo cual se propaga más allá de las páginas ofensivas. El risk-reward es malo.

Detection. AggregateRating present without an external review source like CoinGecko, audit firm reports or other authority site is the pattern.

Fix. Either pull rating data from a real external source and link to it, or remove AggregateRating entirely. Fabricated ratings are not worth the manual-review risk.

Chapter 07
// Severity 07

Error 7: schema colocado en body en lugar de head

El schema JSON-LD puede técnicamente vivir en cualquier lugar del documento y Google lo parsea bien. Pero varios crawlers de IA procesan la sección head primero y hacen timeout antes de alcanzar schema colocado profundamente. El schema colocado al fondo del body o dentro de un componente renderizado por JS puede no ser extraído por motores IA.

Detection. View the raw HTML (not the rendered DOM). The JSON-LD script tag should appear in the head section, not after the closing body tag or inside a JS-mounted component.

Fix. Move all JSON-LD into the head. Server-render the schema. If using a JS framework, ensure the schema is part of the initial HTML payload, not hydrated later.

Impacto acumulado

Each of these errors independently suppresses citation rate by 5 to 15 percentage points. Sites with three or more present can lose half their potential AI citation rate before any other AEO work is considered. Fix the schema layer first; everything else compounds on top.

Preguntas frecuentes

Preguntas frecuentes

01Which error is most important to fix first?
Error 1 (wrong type on token pages). FinancialProduct vs Producto is a binary mismatch that suppresses both rich-result eligibility and AI citation. Migrating delivers the largest measurable lift in the shortest time.
02Can I detect these errors automatically?
Most of them, yes. The Crawlux Schema de tokens Tester catches errors 1, 2, 3, 4 and 7. Error 5 (ticker mismatch) requires cross-page comparison. Error 6 (self-aggregated reviews) requires source verification.
03Will fixing these immediately move rankings?
Schema fixes propagate within 2 to 4 weeks for Google rich-result eligibility and within 4 to 8 weeks for AI citation rate. Faster than content changes; slower than technical fixes like canonicals.
04Should I use a schema generator tool?
Generic schema generators do not support FinancialProduct or CryptoExchange well. Use a crypto-aware tool or write the JSON-LD manually using the schema reference. The generic generators emit the wrong type more often than the right one.
05How do I prevent these errors from coming back?
Add a schema validation step to your CI pipeline. Run the Google Rich Resultados Test and the Schema.org validator on every page-type template before deploys. Catch regressions before they ship.

Corre una auditoría Crawlux gratuita

Leer es útil. Ver tus propios hallazgos de auditoría es más útil. El tier gratuito ofrece una auditoría SEO crypto completa en tu dominio sin costo. No se requiere tarjeta de crédito.

Browse all posts