https://w3id.org/agent-ontology/execution-context#ExecutionEnvironment
Describes the host environment where an action is executed.
Instances of ctx:ExecutionEnvironment can have the following properties:
| PROPERTY | TYPE | DESCRIPTION | RANGE |
|---|---|---|---|
| From class ctx:ExecutionEnvironment | |||
| ctx:envType | owl:DatatypeProperty | e.g., native, sandbox, container, vm, TEE. | xsd:string |
| ctx:hasBudget | owl:ObjectProperty | ctx:Budget | |
| ctx:hasRateLimit | owl:ObjectProperty | ctx:RateLimit | |
| ctx:hasResourceConstraint | owl:ObjectProperty | ctx:ResourceConstraint | |
@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:ExecutionEnvironment a owl:Class ;
rdfs:label "ExecutionEnvironment" ;
rdfs:comment "Describes the host environment where an action is executed." .