All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.schema.TechArticle Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
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";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy