Schema.org · Schema

Schema.org FAQPage

A FAQPage is a WebPage presenting one or more Frequently asked questions.

Schema.orgStructured DataLinked DataJSON-LDVocabularySEOWeb StandardsRDFOntology

Properties

Name Type Description
@type string The Schema.org type.
@context string
name string The name of the FAQ page.
description string A description of the FAQ page.
url string URL of the FAQ page.
mainEntity array The list of questions and answers.
datePublished string Date of first publication.
dateModified string The date the FAQ page was most recently modified.
author object The author of this FAQ page.
publisher object The publisher of this FAQ page.
inLanguage string The language of the content.
sameAs object URL of a reference Web page that unambiguously indicates the item's identity.
View JSON Schema on GitHub

JSON Schema

schema-org-faq-page-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schema.org/schemas/faq-page.json",
  "title": "Schema.org FAQPage",
  "description": "A FAQPage is a WebPage presenting one or more Frequently asked questions.",
  "type": "object",
  "required": ["@type", "mainEntity"],
  "properties": {
    "@type": {
      "type": "string",
      "const": "FAQPage",
      "description": "The Schema.org type."
    },
    "@context": {
      "type": "string",
      "default": "https://schema.org"
    },
    "name": {
      "type": "string",
      "description": "The name of the FAQ page."
    },
    "description": {
      "type": "string",
      "description": "A description of the FAQ page."
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL of the FAQ page."
    },
    "mainEntity": {
      "type": "array",
      "description": "The list of questions and answers.",
      "items": {
        "$ref": "#/$defs/Question"
      }
    },
    "datePublished": {
      "type": "string",
      "format": "date",
      "description": "Date of first publication."
    },
    "dateModified": {
      "type": "string",
      "format": "date",
      "description": "The date the FAQ page was most recently modified."
    },
    "author": {
      "oneOf": [
        { "$ref": "schema-org-person-schema.json" },
        { "$ref": "schema-org-organization-schema.json" }
      ],
      "description": "The author of this FAQ page."
    },
    "publisher": {
      "oneOf": [
        { "$ref": "schema-org-person-schema.json" },
        { "$ref": "schema-org-organization-schema.json" }
      ],
      "description": "The publisher of this FAQ page."
    },
    "inLanguage": {
      "type": "string",
      "description": "The language of the content."
    },
    "sameAs": {
      "oneOf": [
        { "type": "string", "format": "uri" },
        { "type": "array", "items": { "type": "string", "format": "uri" } }
      ],
      "description": "URL of a reference Web page that unambiguously indicates the item's identity."
    }
  },
  "$defs": {
    "Question": {
      "type": "object",
      "description": "A specific question.",
      "required": ["@type", "name", "acceptedAnswer"],
      "properties": {
        "@type": { "type": "string", "const": "Question" },
        "name": { "type": "string", "description": "The full text of the question." },
        "acceptedAnswer": {
          "$ref": "#/$defs/Answer",
          "description": "The answer that has been accepted as best."
        },
        "suggestedAnswer": {
          "oneOf": [
            { "$ref": "#/$defs/Answer" },
            { "type": "array", "items": { "$ref": "#/$defs/Answer" } }
          ],
          "description": "An answer that is not accepted as best."
        },
        "answerCount": { "type": "integer", "description": "The number of answers." },
        "upvoteCount": { "type": "integer", "description": "The number of upvotes." },
        "dateCreated": { "type": "string", "format": "date", "description": "The date the question was created." },
        "author": {
          "oneOf": [
            { "$ref": "schema-org-person-schema.json" },
            { "$ref": "schema-org-organization-schema.json" }
          ],
          "description": "The author of the question."
        }
      }
    },
    "Answer": {
      "type": "object",
      "description": "An answer offered to a question.",
      "required": ["@type", "text"],
      "properties": {
        "@type": { "type": "string", "const": "Answer" },
        "text": { "type": "string", "description": "The textual content of the answer." },
        "dateCreated": { "type": "string", "format": "date", "description": "The date the answer was created." },
        "upvoteCount": { "type": "integer", "description": "The number of upvotes." },
        "url": { "type": "string", "format": "uri", "description": "URL of the answer." },
        "author": {
          "oneOf": [
            { "$ref": "schema-org-person-schema.json" },
            { "$ref": "schema-org-organization-schema.json" }
          ],
          "description": "The author of the answer."
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/schema-org-faq-page"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.