schema:availableOnDevice leaf node


URI

http://schema.org/availableOnDevice

Label

isAvailableOnDevice

Description

The device (or type of device) required to run a software application. Used in cases where a specific make/model is required to run the application.

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) schema:availableOnDevice xsd:string

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

schema:availableOnDevice a owl:DatatypeProperty ;
    rdfs:label "isAvailableOnDevice"@en ;
    rdfs:comment "The device (or type of device) required to run a software application. Used in cases where a specific make/model is required to run the application."@en ;
    rdfs:range xsd:string .