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

org.schema.House Maven / Gradle / Ivy

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

/**
 * Schema.org/House
 * A house is a building or structure that has the ability to be occupied for habitation by humans or other creatures (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/House).
 *
 * @author schema.org
 * @class House
 * @module org.schema
 * @extends Accommodation
 */
public class House extends Accommodation {
	/**
	 * Schema.org/numberOfRooms
	 * The number of rooms (excluding bathrooms and closets) of the acccommodation or lodging business.
	 * Typical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue.
	 *
	 * @property numberOfRooms
	 * @type Number
	 */
	public Double numberOfRooms;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy