@prefix rdf:	<http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix schema:	<http://schema.org/> .
schema:interactionCount	rdf:type	rdf:Property .
@prefix rdfs:	<http://www.w3.org/2000/01/rdf-schema#> .
schema:interactionCount	rdfs:label	"interactionCount" ;
	rdfs:comment	"A count of a specific user interactions with this item&#x2014;for example, <code>20 UserLikes</code>, <code>5 UserComments</code>, or <code>300 UserDownloads</code>. The user interaction type should be one of the sub types of <a href='UserInteraction'>UserInteraction</a>." ;
	schema:domainIncludes	schema:Person ,
		schema:Organization ,
		schema:CreativeWork ,
		schema:Place ;
	schema:rangeIncludes	schema:Text .