ctx:ResourceConstraint leaf node


URI

https://w3id.org/agent-ontology/execution-context#ResourceConstraint

Label

ResourceConstraint

Description

A constraint on a computational resource (e.g., memory, CPU, storage).

Usage

Instances of ctx:ResourceConstraint can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class ctx:ResourceConstraint
ctx:constraintType owl:DatatypeProperty e.g., 'max_memory_mb', 'max_cpu_percentage'. xsd:string
ctx:constraintValue owl:DatatypeProperty xsd:string

Implementation

@prefix ctx: <https://w3id.org/agent-ontology/execution-context#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

ctx:ResourceConstraint a owl:Class ;
    rdfs:label "ResourceConstraint" ;
    rdfs:comment "A constraint on a computational resource (e.g., memory, CPU, storage)." .