Toolsanalyzer

Contentful for Content Platforms & CMS

Validates content model structures against best practices for scalability and maintainability in headless CMS environments.

Try the tool

client runner

Validation Results

Run the tool to see output.

Examples

Basic Blog Model Validation

{
  "modelStructure": "{ \"type\": \"document\", \"name\": \"blogPost\", \"fields\": [{ \"name\": \"title\", \"type\": \"string\" }, { \"name\": \"body\", \"type\": \"text\" }] }",
  "cmsPlatform": "Contentful",
  "includeSEO": true
}

Expected output

{ "valid": true, "issues": [], "score": 95, "recommendations": ["Add metaDescription field for SEO"] }

Complex E-commerce Model Check

{
  "modelStructure": "{ \"type\": \"document\", \"name\": \"product\", \"fields\": [{ \"name\": \"name\", \"type\": \"string\" }, { \"name\": \"variants\", \"type\": \"array\", \"items\": { \"type\": \"object\", \"fields\": [{ \"name\": \"sku\", \"type\": \"string\" }] } }] }",
  "cmsPlatform": "Sanity",
  "includeSEO": false
}

Expected output

{ "valid": false, "issues": [{ "type": "relationship", "message": "Missing reference for category" }], "score": 68 }

How it works

Analyzes provided content model definitions against platform-specific best practices for scalability, relationship management, and SEO. Evaluates field types, nesting patterns, and relationship structures to identify potential bottlenecks or optimization opportunities.