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

org.schema.GovernmentService Maven / Gradle / Ivy

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

/**
 * Schema.org/GovernmentService
 * A service provided by a government organization, e.g. food stamps, veterans benefits, etc.
 *
 * @author schema.org
 * @class GovernmentService
 * @module org.schema
 * @extends Service
 */
public class GovernmentService extends Service {
	/**
	 * Schema.org/serviceOperator
	 * The operating organization, if different from the provider.  This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor.
	 *
	 * @property serviceOperator
	 * @type Organization
	 */
	public Organization serviceOperator;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy