org.schema.ElementarySchool Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/ElementarySchool
* An elementary school.
*
* @author schema.org
* @class ElementarySchool
* @module org.schema
* @extends EducationalOrganization
*/
public class ElementarySchool extends EducationalOrganization {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public ElementarySchool() {
context = "http://schema.org/";
type = "ElementarySchool";
}
}