org.schema.EducationalOrganization Maven / Gradle / Ivy
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";
}
}