org.schema.TechArticle Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/TechArticle
* A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.
*
* @author schema.org
* @class TechArticle
* @module org.schema
* @extends Article
*/
public class TechArticle extends Article {
/**
* Schema.org/dependencies
* Prerequisites needed to fulfill steps in article.
*
* @property dependencies
* @type Text
*/
public String dependencies;
/**
* Schema.org/proficiencyLevel
* Proficiency needed for this content; expected values: 'Beginner', 'Expert'.
*
* @property proficiencyLevel
* @type Text
*/
public String proficiencyLevel;
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public TechArticle() {
context = "http://schema.org/";
type = "TechArticle";
}
}