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

org.schema.SportsTeam Maven / Gradle / Ivy

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

/**
 * Schema.org/SportsTeam
 * Organization: Sports team.
 *
 * @author schema.org
 * @class SportsTeam
 * @module org.schema
 * @extends SportsOrganization
 */
public class SportsTeam extends SportsOrganization {
	/**
	 * Schema.org/athlete
	 * A person that acts as performing member of a sports team; a player as opposed to a coach.
	 *
	 * @property athlete
	 * @type Person
	 */
	public Person athlete;
	/**
	 * Schema.org/coach
	 * A person that acts in a coaching role for a sports team.
	 *
	 * @property coach
	 * @type Person
	 */
	public Person coach;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy