WebSchemas/FictionalThing
Overview
This page describes schema.org proposal, containing necessary type and properties to describe fictional things of any type.
Usage recommendation
By use of the Thing->additionalType (in Microdata) or (RDFa native) typeof attribute, any description of a thing (person, place, product, organization, etc.) can additionally be defined as fictional. With the ability to define the creative works in which it first appeared, and or were referenced. The fictionalRepresentationOf property facilitates the representation of real things that the described thing references (real People, Places, Organizations, etc.)
Vocabulary changes summary
Add type Thing->Intangible->FictionalThing
Property | Type | Description |
---|---|---|
createdIn | CreativeWork | Creative work in which fictional thing first appeared |
referencedIn | CreativeWork | Creative work in which fictional thing is referenced |
fictionalRepresentationOf | Thing | Thing that this is a fictional representation of. |
Examples
This class can be used in many ways:
1) Describing a fictional organization - eg. The organization SMERSH from the James Bond books.
Microdata
<!--A fictional organisation -->
<div itemscope itemtype="http://schema.org/Organization">
<link itemprop="additionalType" href="http://schema.org/FictionalThing"/>
Organization: <span itemprop="name">SMERSH</span><br/>
<span itemprop="createdIn" itemscope itemtype="http://schema.org/Book">
First appeared in the novel: <span itemprop="name">Casino Royale</span><br/>
</span>
<span itemprop="referencedIn" itemscope itemtype="http://schema.org/Book">
Appeared again in the novel: <span itemprop="name">Live and Let Die</span><br/>
</span>
<span itemprop="referencedIn" itemscope itemtype="http://schema.org/Book">
Appeared again in the novel: <span itemprop="name">From Russia, with Love</span><br/>
</span>
<span itemprop="referencedIn" itemscope itemtype="http://schema.org/Book">
Appeared again in the novel: <span itemprop="name">Goldfinger</span><br/>
</span>
</div>
RDFa
<!--A fictional organisation -->
<div vocab="http://schema.org/" typeof="Organization FictionalThing">
Organization: <span property="name">SMERSH</span><br/>
<span property="createdIn" typeof="Book">
First appeared in the novel: <span property="name">Casino Royale</span><br/>
</span>
<span property="referencedIn" typeof="Book">
Appeared again in the novel: <span property="name">Live and Let Die</span><br/>
</span>
<span property="referencedIn" typeof="Book">
Appeared again in the novel: <span property="name">From Russia, with Love</span><br/>
</span>
<span property="referencedIn" typeof="Book">
Appeared again in the novel: <span property="name">Goldfinger</span><br/>
</span>
</div>
2) The city of Paris - fictional representation in the movie Les Misérables.
Microdata
<!--A fictional representation of real place -->
<div itemscope itemtype="http://schema.org/Place">
<link itemprop="additionalType" href="http://schema.org/FictionalThing"/>
City of: <span itemprop="name">Paris</span><br/>
Set in: <a itemprop="fictionalRepresentationOf" itemscope itemtype="http://schema.org/Place" href="http://en.wikipedia.org/wiki/Paris">
<span itemprop="name">Paris</span><br/>
</a>
<span itemprop="referencedIn" itemscope itemtype="http://schema.org/Movie">
Depicted in the Movie: <span itemprop="name">Les Misérables</span> (2012)<br/>
</span>
</div>
RDFa
<!--A fictional representation of real place -->
<div vocab="http://schema.org/" typeof="Place FictionalThing">
City of: <span property="name">Paris</span><br/>
Set in: <a property="fictionalRepresentationOf" typeof="Place" href="http://en.wikipedia.org/wiki/Paris">
<span property="name">Paris</span><br/>
</a>
<span property="referencedIn" typeof="Movie">
Depicted in the Movie: <span property="name">Les Misérables</span> (2012)<br/>
</span>
</div>