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

org.schema.EducationalOrganization Maven / Gradle / Ivy

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

/**
 * Schema.org/EducationalOrganization
 * An educational organization.
 *
 * @author schema.org
 * @class EducationalOrganization
 * @module org.schema
 * @extends Organization
 */
public class EducationalOrganization extends Organization {
	/**
	 * Schema.org/alumni
	 * Alumni of an organization.
	 *
	 * @property alumni
	 * @type Person
	 */
	public Person alumni;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy