sdo:actor leaf node


URI

https://schema.org/actor

Label

has actor

Description

Name of the actor/actress that plays in the programme

Usage

DOMAINPROPERTYRANGE
sdo:Thing sdo:actor sdo:Person

Implementation

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

sdo:actor a rdf:Property ;
    rdfs:label "has actor"@en,
        "heeft acteur"@nl ;
    rdfs:comment "Name of the actor/actress that plays in the programme"@en,
        "Naam van de acteur/actrice die speelt in een programma"@nl ;
    rdfs:domain sdo:Thing ;
    rdfs:range sdo:Person .