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

org.schema.DataFeed Maven / Gradle / Ivy

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

/**
 * Schema.org/DataFeed
 * A single feed providing structured information about one or more entities or topics.
 *
 * @author schema.org
 * @class DataFeed
 * @module org.schema
 * @extends Dataset
 */
public class DataFeed extends Dataset {
	/**
	 * Schema.org/dataFeedElement
	 * An item within in a data feed. Data feeds may have many elements.
	 *
	 * @property dataFeedElement
	 * @type Text
	 */
	public String dataFeedElement;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy