Files
marka/registry/schema-org/TechArticle.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

24 lines
940 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:TechArticle",
"title": "TechArticle",
"description": "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.",
"type": "object",
"allOf": [
{
"description": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
"$ref": "schema:Article"
}
],
"properties": {
"dependencies": {
"description": "Prerequisites needed to fulfill steps in article.",
"type": "string"
},
"proficiencyLevel": {
"description": "Proficiency needed for this content; expected values: 'Beginner', 'Expert'.",
"type": "string"
}
}
}