@prefix rdfs:	<http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf:	<http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl:	<http://www.w3.org/2002/07/owl#> .

<https://schema.org/Boolean>
	rdfs:subClassOf	<https://schema.org/DataType> .
<https://schema.org/DataType>
	rdf:type	owl:Class ;
	rdfs:subClassOf	rdfs:Class ;
	rdfs:label	"DataType"@en ;
	rdfs:isDefinedBy	<https://schema.org/DataType> ;
	rdfs:comment	"The basic data types such as Integers, Strings, etc."@en .
<https://schema.org/Date>
	rdfs:subClassOf	<https://schema.org/DataType> .
<https://schema.org/DateTime>
	rdfs:subClassOf	<https://schema.org/DataType> .
<https://schema.org/Number>
	rdfs:subClassOf	<https://schema.org/DataType> .
<https://schema.org/Text>
	rdfs:subClassOf	<https://schema.org/DataType> .
<https://schema.org/Time>
	rdfs:subClassOf	<https://schema.org/DataType> .