@prefix rdf:	<http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix schema:	<http://schema.org/> .
schema:endTime	rdf:type	rdf:Property .
@prefix rdfs:	<http://www.w3.org/2000/01/rdf-schema#> .
schema:endTime	rdfs:label	"endTime" ;
	rdfs:comment	"The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to *December*.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions." ;
	schema:domainIncludes	schema:FoodEstablishmentReservation ,
		schema:Action ;
	schema:rangeIncludes	schema:DateTime .