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

org.schema.Report Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package org.schema;

/**
 * Schema.org/Report
 * A Report generated by governmental or non-governmental organization.
 *
 * @author schema.org
 * @class Report
 * @module org.schema
 * @extends Article
 */
public class Report extends Article {
	/**
	 * Schema.org/reportNumber
	 * The number or other unique designator assigned to a Report by the publishing organization.
	 *
	 * @property reportNumber
	 * @type Text
	 */
	public String reportNumber;

	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public Report() {
		context = "http://schema.org/";
		type = "Report";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy