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

org.schema.SportsOrganization Maven / Gradle / Ivy

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

/**
 * Schema.org/SportsOrganization
 * Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.
 *
 * @author schema.org
 * @class SportsOrganization
 * @module org.schema
 * @extends Organization
 */
public class SportsOrganization extends Organization {
	/**
	 * Schema.org/sport
	 * A type of sport (e.g. Baseball).
	 *
	 * @property sport
	 * @type Text
	 */
	public String sport;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy