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

org.schema.Episode Maven / Gradle / Ivy

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

/**
 * Schema.org/Episode
 * A media episode (e.g. TV, radio, video game) which can be part of a series or season.
 *
 * @author schema.org
 * @class Episode
 * @module org.schema
 * @extends CreativeWork
 */
public class Episode extends CreativeWork {
	/**
	 * Schema.org/actor
	 * An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.
	 *
	 * @property actor
	 * @type Person
	 */
	public Person actor;
	/**
	 * Schema.org/partOfSeries
	 * The series to which this episode or season belongs.
	 *
	 * @property partOfSeries
	 * @type CreativeWorkSeries
	 */
	public CreativeWorkSeries partOfSeries;
	/**
	 * Schema.org/trailer
	 * The trailer of a movie or tv/radio series, season, episode, etc.
	 *
	 * @property trailer
	 * @type VideoObject
	 */
	public VideoObject trailer;
	/**
	 * Schema.org/partOfSeason
	 * The season to which this episode belongs.
	 *
	 * @property partOfSeason
	 * @type CreativeWorkSeason
	 */
	public CreativeWorkSeason partOfSeason;
	/**
	 * Schema.org/musicBy
	 * The composer of the soundtrack.
	 *
	 * @property musicBy
	 * @type Person
	 */
	public Person musicBy;
	/**
	 * Schema.org/directors
	 * A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.
	 *
	 * @property directors
	 * @type Person
	 */
	public Person directors;
	/**
	 * Schema.org/episodeNumber
	 * Position of the episode within an ordered group of episodes.
	 *
	 * @property episodeNumber
	 * @type Integer
	 */
	public Integer episodeNumber;
	/**
	 * Schema.org/director
	 * A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip.
	 *
	 * @property director
	 * @type Person
	 */
	public Person director;
	/**
	 * Schema.org/productionCompany
	 * The production company or studio responsible for the item e.g. series, video game, episode etc.
	 *
	 * @property productionCompany
	 * @type Organization
	 */
	public Organization productionCompany;
	/**
	 * Schema.org/actors
	 * An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.
	 *
	 * @property actors
	 * @type Person
	 */
	public Person actors;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy