schema1:availableLanguage leaf node


URI

http://schema.org/availableLanguage

Label

availableLanguage

Description

A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]].

Usage

DOMAINPROPERTYRANGE
schema1:ContactPoint schema1:availableLanguage 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 schema1: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

schema1:availableLanguage a rdf:Property ;
    rdfs:label "availableLanguage" ;
    schema1:domainIncludes schema1:ContactPoint ;
    schema1:rangeIncludes xsd:string ;
    rdfs:comment "A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]]." .