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

schema:availableLanguage a rdf:Property ;
    rdfs:label "availableLanguage" ;
    schema:domainIncludes schema:ContactPoint ;
    schema: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]]." .