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

org.schema.BroadcastEvent Maven / Gradle / Ivy

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

/**
 * Schema.org/BroadcastEvent
 * An over the air or online broadcast event.
 *
 * @author schema.org
 * @class BroadcastEvent
 * @module org.schema
 * @extends PublicationEvent
 */
public class BroadcastEvent extends PublicationEvent {
	/**
	 * Schema.org/videoFormat
	 * The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).
	 *
	 * @property videoFormat
	 * @type Text
	 */
	public String videoFormat;
	/**
	 * Schema.org/isLiveBroadcast
	 * True is the broadcast is of a live event.
	 *
	 * @property isLiveBroadcast
	 * @type Boolean
	 */
	public Boolean isLiveBroadcast;
	/**
	 * Schema.org/broadcastOfEvent
	 * The event being broadcast such as a sporting event or awards ceremony.
	 *
	 * @property broadcastOfEvent
	 * @type Event
	 */
	public Event broadcastOfEvent;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy