https://w3id.org/agent-ontology/execution-context#constraintType
e.g., 'max_memory_mb', 'max_cpu_percentage'.
| DOMAIN | PROPERTY | RANGE |
|---|---|---|
| ctx:ResourceConstraint | ctx:constraintType | xsd:string |
@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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
ctx:constraintType a owl:DatatypeProperty ;
rdfs:comment "e.g., 'max_memory_mb', 'max_cpu_percentage'." ;
rdfs:domain ctx:ResourceConstraint ;
rdfs:range xsd:string .