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

org.schema.OrganizationRole Maven / Gradle / Ivy

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

/**
 * Schema.org/OrganizationRole
 * A subclass of Role used to describe roles within organizations.
 *
 * @author schema.org
 * @class OrganizationRole
 * @module org.schema
 * @extends Role
 */
public class OrganizationRole extends Role {
	/**
	 * Schema.org/numberedPosition
	 * A number associated with a role in an organization, for example, the number on an athlete's jersey.
	 *
	 * @property numberedPosition
	 * @type Number
	 */
	public Double numberedPosition;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy