[Crawl-Date: 2026-04-16]
[Source: DataJelly Visibility Layer]
[URL: https://whymetadata.com/schema-templates]
---
title: Schema Markup Templates: Copy-Paste JSON-LD for Article, FAQ, HowTo, Product, Organization
description: Ready-to-use JSON-LD schema markup templates for Article, FAQ, HowTo, Product, and Organization. Copy, customize, and implement structured data in minutes.
url: https://whymetadata.com/schema-templates
canonical: https://whymetadata.com/
og_title: WhyMetadata.com - Every Website Tells a Story
og_description: Learn how metadata powers SEO, social previews, and AI understanding. Free analyzer tool, best practices, and expert guidance for optimizing your website metadata.
og_image: https://whymetadata.com/og/home.png
twitter_card: summary_large_image
twitter_image: https://whymetadata.com/og/home.png
---

# Schema Markup Templates: Copy-Paste JSON-LD for Article, FAQ, HowTo, Product, Organization
> Ready-to-use JSON-LD schema markup templates for Article, FAQ, HowTo, Product, and Organization. Copy, customize, and implement structured data in minutes.

---

Schema.org Templates
## Schema Markup Templates: Copy‑Paste JSON‑LD for Article, FAQ, HowTo, Product, Organization

Ready-to-use structured data templates that boost visibility in search results, enable rich snippets, and improve compatibility with AI assistants. Copy, customize, and deploy in minutes.

## Article Schema Markup Example
## JSON-LD Template
Copy

{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "Your Article Title Here",
  "description": "A brief summary of your article content.",
  "image": "https://example.com/image.jpg",
  "author": {
    "@type": "Person",
    "name": "Author Name",
    "url": "https://example.com/author"
  },
  "publisher": {
    "@type": "Organization",
    "name": "Publisher Name",
    "logo": {
      "@type": "ImageObject",
      "url": "https://example.com/logo.png"
    }
  },
  "datePublished": "2025-01-12",
  "dateModified": "2025-01-12",
  "mainEntityOfPage": {
    "@type": "WebPage",
    "@id": "https://example.com/article"
  }
}
## Key Properties

- headlineThe article's main title (recommended under 110 characters)
- authorPerson or Organization who wrote the article
- publisherOrganization that published the content
- datePublishedISO 8601 date when first published
- dateModifiedISO 8601 date of last significant update
- imageRepresentative image URL (min 1200px wide recommended)

## FAQ Schema Markup Example
## JSON-LD Template
Copy

{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "What is your first question?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "This is the answer to the first question."
      }
    },
    {
      "@type": "Question",
      "name": "What is your second question?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "This is the answer to the second question."
      }
    },
    {
      "@type": "Question",
      "name": "What is your third question?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "This is the answer to the third question."
      }
    }
  ]
}
## Key Properties

- @type: FAQPageDeclares the page as a FAQ collection
- mainEntityArray of Question objects
- nameThe question text exactly as displayed
- acceptedAnswerAnswer object containing the response text
- textThe full answer content (can include HTML)

## HowTo Schema Markup Example
## JSON-LD Template
Copy

{
  "@context": "https://schema.org",
  "@type": "HowTo",
  "name": "How to Complete This Task",
  "description": "A step-by-step guide to completing this task.",
  "image": "https://example.com/howto-image.jpg",
  "totalTime": "PT30M",
  "estimatedCost": {
    "@type": "MonetaryAmount",
    "currency": "USD",
    "value": "0"
  },
  "supply": [
    {
      "@type": "HowToSupply",
      "name": "First supply item"
    }
  ],
  "tool": [
    {
      "@type": "HowToTool",
      "name": "Required tool"
    }
  ],
  "step": [
    {
      "@type": "HowToStep",
      "name": "Step 1",
      "text": "Description of the first step.",
      "url": "https://example.com/step1",
      "image": "https://example.com/step1.jpg"
    },
    {
      "@type": "HowToStep",
      "name": "Step 2",
      "text": "Description of the second step.",
      "url": "https://example.com/step2",
      "image": "https://example.com/step2.jpg"
    },
    {
      "@type": "HowToStep",
      "name": "Step 3",
      "text": "Description of the third step.",
      "url": "https://example.com/step3",
      "image": "https://example.com/step3.jpg"
    }
  ]
}
## Key Properties

- nameTitle of the how-to guide
- totalTimeISO 8601 duration (PT30M = 30 minutes)
- stepArray of HowToStep objects in order
- supplyMaterials needed to complete the task
- toolTools required for the process
- estimatedCostApproximate cost to complete

## Product Schema Markup Example
## JSON-LD Template
Copy

{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "Product Name",
  "description": "Detailed product description.",
  "image": [
    "https://example.com/product1.jpg",
    "https://example.com/product2.jpg"
  ],
  "sku": "SKU12345",
  "brand": {
    "@type": "Brand",
    "name": "Brand Name"
  },
  "offers": {
    "@type": "Offer",
    "url": "https://example.com/product",
    "priceCurrency": "USD",
    "price": "99.99",
    "priceValidUntil": "2025-12-31",
    "availability": "https://schema.org/InStock",
    "seller": {
      "@type": "Organization",
      "name": "Seller Name"
    }
  },
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "4.5",
    "reviewCount": "127"
  }
}
## Key Properties

- nameProduct name as sold
- offersPrice, availability, and seller information
- skuUnique product identifier
- brandBrand or manufacturer
- aggregateRatingAverage rating and review count
- imageArray of product image URLs

## Organization Schema Markup Example
## JSON-LD Template
Copy

{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Your Organization Name",
  "url": "https://example.com",
  "logo": "https://example.com/logo.png",
  "description": "Brief description of your organization.",
  "foundingDate": "2020",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "123 Main Street",
    "addressLocality": "City",
    "addressRegion": "State",
    "postalCode": "12345",
    "addressCountry": "US"
  },
  "contactPoint": {
    "@type": "ContactPoint",
    "telephone": "+1-555-555-5555",
    "contactType": "customer service",
    "availableLanguage": ["English"]
  },
  "sameAs": [
    "https://twitter.com/yourhandle",
    "https://linkedin.com/company/yourcompany",
    "https://facebook.com/yourpage"
  ]
}
## Key Properties

- nameOfficial organization name
- logoURL to organization logo image
- urlOfficial website URL
- contactPointCustomer service contact details
- sameAsArray of official social profile URLs
- addressPhysical location details

## Validate Your Implementation

Test your schema markup with our analyzer to ensure it's correctly implemented and ready for search engines and AI systems.

[Analyze Your Schema](https://whymetadata.com/analyzer) [Explore Best Practices](https://whymetadata.com/#best-practices)

Bookmark this page for quick access to schema templates

## Structured Data (JSON-LD)
```json
{"@context":"https://schema.org","@type":"WebSite","name":"WhyMetadata.com","description":"Learn how website metadata powers SEO, social media, and AI understanding. Free analyzer tool and best practices guide.","url":"https://whymetadata.com/","potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://whymetadata.com/analyzer?url={search_term_string}"},"query-input":"required name=search_term_string"},"publisher":{"@type":"Organization","name":"WhyMetadata.com","url":"https://whymetadata.com/"}}
```


## Discovery & Navigation
> Semantic links for AI agent traversal.

* [WhyMetadata](https://whymetadata.com/)
* [What Is Metadata?](https://whymetadata.com/#home)
* [How It Works](https://whymetadata.com/#how-it-works)
* [Resources](https://whymetadata.com/#resources)
* [Analyzer](https://whymetadata.com/analyzer)
* [DataJelly](https://whymetadata.com/datajelly)
* [About](https://whymetadata.com/about)
* [What Is Metadata?](#home)
* [How It Works](#how-it-works)
* [Best Practices](#best-practices)
* [Metadata & AI](#ai)
* [Tools](#tools)
* [DataJelly](https://datajelly.com/)
