Frequently Asked Questions
What is airheads?
airheads is a helper library for building SEO meta tags, Open Graph tags, Twitter Cards, and other social media metadata with the Air framework.
How do I install airheads?
You can install airheads using pip: pip install airheads, or with uv: uv add airheads
What schema types are supported?
airheads supports Article, Product, Person, Organization, WebSite, Breadcrumb, FAQ, HowTo, and Video schemas.
Do I need to know JSON-LD?
No! The schema helpers create properly formatted JSON-LD for you. Just call the helper functions with your data.
FAQ Schema
This page uses FAQ schema which can appear as expandable FAQ rich results in search engines.
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is airheads?",
"acceptedAnswer": {
"@type": "Answer",
"text": "airheads is a helper library for building SEO meta tags, Open Graph tags, Twitter Cards, and other social media metadata with the Air framework."
}
},
{
"@type": "Question",
"name": "How do I install airheads?",
"acceptedAnswer": {
"@type": "Answer",
"text": "You can install airheads using pip: pip install airheads, or with uv: uv add airheads"
}
},
{
"@type": "Question",
"name": "What schema types are supported?",
"acceptedAnswer": {
"@type": "Answer",
"text": "airheads supports Article, Product, Person, Organization, WebSite, Breadcrumb, FAQ, HowTo, and Video schemas."
}
},
{
"@type": "Question",
"name": "Do I need to know JSON-LD?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No! The schema helpers create properly formatted JSON-LD for you. Just call the helper functions with your data."
}
}
]
}