https://w3id.org/agent-ontology/core#Action
A concrete execution event initiated by an Agent, producing observable or verifiable consequences.
Instances of core:Action can have the following properties:
| PROPERTY | TYPE | DESCRIPTION | RANGE |
|---|---|---|---|
| From class core:Action | |||
| core:producesArtifact | owl:ObjectProperty | Specifies the Artifact produced by an Action. | core:Artifact |
| core:recordedIn | owl:ObjectProperty | Links an Action to its verifiable trace record. | core:TraceEvent |
| intent:executedIn | owl:ObjectProperty | core:ExecutionContext | |
| intent:hasActionType | owl:ObjectProperty | intent:ActionType | |
| intent:loggedAs | owl:ObjectProperty | Links an executed action to its ledger record. | ledger:RuntimeLedgerRecord |
@prefix core: <https://w3id.org/agent-ontology/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema1: <http://schema.org/> .
core:Action a owl:Class ;
rdfs:label "Action" ;
rdfs:comment "A concrete execution event initiated by an Agent, producing observable or verifiable consequences." ;
rdfs:subClassOf schema1:Action .