schema:keywords leaf node


URI

http://schema.org/keywords

Label

keywords

Description

Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.

Usage

DOMAINPROPERTYRANGE
schema:CreativeWork , schema:Organization schema:keywords rdf:langString , sh:IRI , xsd:string

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

schema:keywords a rdf:Property ;
    rdfs:label "keywords" ;
    schema:domainIncludes schema:CreativeWork,
        schema:Organization ;
    schema:rangeIncludes rdf:langString,
        xsd:string,
        sh:IRI ;
    rdfs:comment "Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas." .