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

org.schema.SearchAction Maven / Gradle / Ivy

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

/**
 * Schema.org/SearchAction
 * The act of searching for an object.\n\nRelated actions:\n\n* [[FindAction]]: SearchAction generally leads to a FindAction, but not necessarily.
 *
 * @author schema.org
 * @class SearchAction
 * @module org.schema
 * @extends Action
 */
public class SearchAction extends Action {
	/**
	 * Schema.org/query
	 * A sub property of instrument. The query used on this action.
	 *
	 * @property query
	 * @type Text
	 */
	public String query;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy