@prefix rdf:	<http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix schema:	<http://schema.org/> .
schema:flightDistance	rdf:type	rdf:Property .
@prefix rdfs:	<http://www.w3.org/2000/01/rdf-schema#> .
schema:flightDistance	rdfs:label	"flightDistance" ;
	rdfs:comment	"The distance of the flight." ;
	schema:domainIncludes	schema:Flight ;
	schema:rangeIncludes	schema:Distance ,
		schema:Text .