@agenticprimitives/ontology 1.0.0-alpha.11 → 1.0.0-alpha.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/tbox/trust.ttl ADDED
@@ -0,0 +1,90 @@
1
+ # T-box — trust evidence and reputation vocabulary.
2
+ # Refines Agent Explorer trust/analytics vocabulary into AP-native evidence.
3
+
4
+ @prefix ap: <https://agenticprimitives.dev/ns/core#> .
5
+ @prefix aptrust: <https://agenticprimitives.dev/ns/trust#> .
6
+ @prefix apatt: <https://agenticprimitives.dev/ns/attestation#> .
7
+ @prefix apdisc: <https://agenticprimitives.dev/ns/discovery#> .
8
+ @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
9
+ @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
10
+ @prefix owl: <http://www.w3.org/2002/07/owl#> .
11
+ @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
12
+ @prefix prov: <http://www.w3.org/ns/prov#> .
13
+ @prefix dul: <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#> .
14
+ @prefix skos: <http://www.w3.org/2004/02/skos/core#> .
15
+
16
+ aptrust: a owl:Ontology ;
17
+ rdfs:label "Agentic Primitives — trust ontology" ;
18
+ owl:versionInfo "0.1.0" ;
19
+ rdfs:seeAlso <https://github.com/agentictrustlabs/agent-explorer/tree/main/apps/ontology/ontology> ;
20
+ rdfs:comment "Vocabulary for public trust signals, reputation evidence, validations, and trust determinations used by discovery." .
21
+
22
+ aptrust:TrustSignal a owl:Class ;
23
+ rdfs:subClassOf prov:Entity, dul:InformationObject ;
24
+ rdfs:label "TrustSignal" ;
25
+ rdfs:comment "A public signal that may influence trust determination: validation, outcome, feedback, issuer standing, graph relationship, or exposure finding." .
26
+
27
+ aptrust:ReputationEvidence a owl:Class ;
28
+ rdfs:subClassOf aptrust:TrustSignal ;
29
+ rdfs:label "ReputationEvidence" ;
30
+ rdfs:comment "A normalized reputation signal. ERC-8004 feedback is one external projection source, not AP authority." .
31
+
32
+ aptrust:ValidationEvidence a owl:Class ;
33
+ rdfs:subClassOf aptrust:TrustSignal ;
34
+ rdfs:label "ValidationEvidence" ;
35
+ rdfs:comment "Evidence from an independent validation process, validator credential, or validation registry projection." .
36
+
37
+ aptrust:OutcomeEvidence a owl:Class ;
38
+ rdfs:subClassOf aptrust:TrustSignal ;
39
+ rdfs:label "OutcomeEvidence" ;
40
+ rdfs:comment "Evidence that work completed with a cited artifact/outcome credential." .
41
+
42
+ aptrust:FeedbackSignal a owl:Class ;
43
+ rdfs:subClassOf aptrust:ReputationEvidence ;
44
+ rdfs:label "FeedbackSignal" ;
45
+ rdfs:comment "Feedback from a client/human/agent interaction. Must include provenance and anti-spam/authorization evidence if used for ranking." .
46
+
47
+ aptrust:TrustGraphEdge a owl:Class ;
48
+ rdfs:subClassOf prov:Entity ;
49
+ rdfs:label "TrustGraphEdge" ;
50
+ rdfs:comment "An evidence-backed edge between agents or facets in the public trust graph." .
51
+
52
+ aptrust:TrustScore a owl:Class ;
53
+ rdfs:subClassOf dul:Parameter ;
54
+ rdfs:label "TrustScore" ;
55
+ rdfs:comment "A computed score over evidence under a named policy and graph snapshot. Score is derived evidence, not authority." .
56
+
57
+ aptrust:signalSubject a owl:ObjectProperty ;
58
+ rdfs:domain aptrust:TrustSignal ;
59
+ rdfs:range ap:Agent ;
60
+ rdfs:label "signalSubject" .
61
+
62
+ aptrust:signalIssuer a owl:ObjectProperty ;
63
+ rdfs:domain aptrust:TrustSignal ;
64
+ rdfs:range ap:Agent ;
65
+ rdfs:label "signalIssuer" .
66
+
67
+ aptrust:signalValue a owl:DatatypeProperty ;
68
+ rdfs:domain aptrust:TrustSignal ;
69
+ rdfs:range xsd:decimal ;
70
+ rdfs:label "signalValue" .
71
+
72
+ aptrust:signalTag a owl:DatatypeProperty ;
73
+ rdfs:domain aptrust:TrustSignal ;
74
+ rdfs:range xsd:string ;
75
+ rdfs:label "signalTag" .
76
+
77
+ aptrust:derivedUnderPolicy a owl:ObjectProperty ;
78
+ rdfs:domain aptrust:TrustScore ;
79
+ rdfs:range apdisc:TrustPolicy ;
80
+ rdfs:label "derivedUnderPolicy" .
81
+
82
+ aptrust:usesTrustSignal a owl:ObjectProperty ;
83
+ rdfs:domain apdisc:TrustDetermination ;
84
+ rdfs:range aptrust:TrustSignal ;
85
+ rdfs:label "usesTrustSignal" .
86
+
87
+ aptrust:hasTrustScore a owl:ObjectProperty ;
88
+ rdfs:domain apdisc:TrustDetermination ;
89
+ rdfs:range aptrust:TrustScore ;
90
+ rdfs:label "hasTrustScore" .