sdo:Role


URI

https://schema.org/Role

Label

Role

Description

Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\n\nSee also [blog post](http://blog.schema.org/2014/06/introducing-role.html).

Superclasses (1)

Usage

Instances of sdo:Role can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class sdo:Role
sdo:roleName rdf:Property A role played, performed or filled by a person or organization. For example, the standardised roles associated with concerts, like 'music arranger', 'composer', or 'conductor'. xsd:string
From class sdo:Thing
sdo:about rdf:Property The subject matter of the content. The subject comes from the GTAA Onderwerpen scheme. sdo:Thing
sdo:actor rdf:Property Name of the actor/actress that plays in the programme sdo:Person
sdo:additionalType rdf:Property Used in two ways: 1. the part of the Sound and Vision catalogue that this archive object belongs to, 2. persons or organisations from the thesaurus that are also a skos:Concept. sdo:Text
sdo:associatedMedia rdf:Property A media object that encodes this CreativeWork. This property is a synonym for encoding. sdo:MediaObject
sdo:byArtist rdf:Property The artist or performer, for example a musician or musical group performing on an album or recording, a presenter of a show, or an actor in a drama production. sdo:Person
sdo:contributor rdf:Property A secondary contributor to the CreativeWork or Event. For example a guest in a talkshow. sdo:Person
sdo:creator rdf:Property The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. sdo:Person
sdo:datePublished rdf:Property The date by which this archive object should be sorted. The choice of date differs per type of archive object. E.g. for a TV programme, it is the date the programme is first broadcasted/published. xsd:string
sdo:duration rdf:Property The duration of the item (program, video, audio recording, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601). xsd:string
sdo:genre rdf:Property Genre of the CreativeWork, or the archive object. sdo:Thing
sdo:inLanguage rdf:Property The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). xsd:string
sdo:keywords rdf:Property Keywords or tags used to describe some item. xsd:string
sdo:location rdf:Property A geographical location from the GTAA Geografische Namen sdo:Place
sdo:locationCreated rdf:Property The location at which recording occurred for this archive object. sdo:Place
sdo:mainEntityOfPage rdf:Property Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details. sdo:URL
sdo:mentions rdf:Property Used for persons and corporations. Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. sdo:Thing
sdo:name rdf:Property The name of the item. The main title. xsd:string
sdo:productionCompany rdf:Property The production company or studio responsible for the item, e.g. series, video game, episode etc. sdo:Organization
sdo:publisher rdf:Property The publisher of the creative work. sdo:Thing
sdo:url rdf:Property URL of the item. sdo:URL

Implementation

@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sdo: <https://schema.org/> .

sdo:Role a rdfs:Class ;
    rdfs:label "Role" ;
    rdfs:comment "Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\\n\\nSee also [blog post](http://blog.schema.org/2014/06/introducing-role.html)."@en,
        "Vertegenwoordigt aanvullende informatie over een relatie of eigenschap. Een rol kan bijvoorbeeld worden gebruikt om aan te geven dat de rol van 'lid' die een sportteam aan een speler koppelt, plaatsvond tijdens een bepaalde periode. Of dat de rol van 'acteur' van een persoon in een film was voor een bepaalde karakternaam. Dergelijke eigenschappen kunnen worden gekoppeld aan een rolentiteit, die vervolgens wordt gekoppeld aan de hoofdentiteiten met behulp van gewone eigenschappen zoals 'member' of 'actor'.\\n\\nZie ook [blogpost](http:/ /blog.schema.org/2014/06/introducing-role.html)."@nl ;
    rdfs:subClassOf sdo:Thing .