schema:softwareRequirements leaf node


URI

http://schema.org/softwareRequirements

Label

hasSoftwareRequirements

Description

Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) schema:softwareRequirements 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:softwareRequirements a owl:DatatypeProperty ;
    rdfs:label "hasSoftwareRequirements"@en ;
    rdfs:comment "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime)."@en ;
    rdfs:range xsd:string .