core:Action leaf node


URI

https://w3id.org/agent-ontology/core#Action

Label

Action

Description

A concrete execution event initiated by an Agent, producing observable or verifiable consequences.

Superclasses (1)

Usage

Instances of core:Action can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
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

Implementation

@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 .