@prefix rdf:	<http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix schema:	<http://schema.org/> .
schema:additionalType	rdf:type	rdf:Property .
@prefix rdfs:	<http://www.w3.org/2000/01/rdf-schema#> .
schema:additionalType	rdfs:subPropertyOf	rdf:type ;
	rdfs:label	"additionalType" ;
	rdfs:comment	"An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally." ;
	schema:domainIncludes	schema:Thing ;
	schema:rangeIncludes	schema:URL .