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

org.schema.MusicGroup Maven / Gradle / Ivy

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

/**
 * Schema.org/MusicGroup
 * A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.
 *
 * @author schema.org
 * @class MusicGroup
 * @module org.schema
 * @extends PerformingGroup
 */
public class MusicGroup extends PerformingGroup {
	/**
	 * Schema.org/albums
	 * A collection of music albums.
	 *
	 * @property albums
	 * @type MusicAlbum
	 */
	public MusicAlbum albums;
	/**
	 * Schema.org/track
	 * A music recording (track)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.
	 *
	 * @property track
	 * @type MusicRecording
	 */
	public MusicRecording track;
	/**
	 * Schema.org/genre
	 * Genre of the creative work, broadcast channel or group.
	 *
	 * @property genre
	 * @type URL
	 */
	public String genre;
	/**
	 * Schema.org/tracks
	 * A music recording (track)—usually a single song.
	 *
	 * @property tracks
	 * @type MusicRecording
	 */
	public MusicRecording tracks;
	/**
	 * Schema.org/musicGroupMember
	 * A member of a music group—for example, John, Paul, George, or Ringo.
	 *
	 * @property musicGroupMember
	 * @type Person
	 */
	public Person musicGroupMember;
	/**
	 * Schema.org/album
	 * A music album.
	 *
	 * @property album
	 * @type MusicAlbum
	 */
	public MusicAlbum album;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy