You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gistCore.ttl
+40-24Lines changed: 40 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -373,7 +373,7 @@ gist:Commitment
373
373
]
374
374
[
375
375
a owl:Restriction ;
376
-
owl:onProperty gist:giver ;
376
+
owl:onProperty gist:hasGiver ;
377
377
owl:someValuesFrom [
378
378
a owl:Class ;
379
379
owl:unionOf (
@@ -499,7 +499,7 @@ gist:ContingentObligation
499
499
gist:Commitment
500
500
[
501
501
a owl:Restriction ;
502
-
owl:onProperty gist:giver ;
502
+
owl:onProperty gist:hasGiver ;
503
503
owl:someValuesFrom [
504
504
a owl:Class ;
505
505
owl:unionOf (
@@ -1654,7 +1654,7 @@ gist:Obligation
1654
1654
gist:Commitment
1655
1655
[
1656
1656
a owl:Restriction ;
1657
-
owl:onProperty gist:getter ;
1657
+
owl:onProperty gist:hasGetter ;
1658
1658
owl:someValuesFrom [
1659
1659
a owl:Class ;
1660
1660
owl:unionOf (
@@ -1665,7 +1665,7 @@ gist:Obligation
1665
1665
]
1666
1666
[
1667
1667
a owl:Restriction ;
1668
-
owl:onProperty gist:giver ;
1668
+
owl:onProperty gist:hasGiver ;
1669
1669
owl:someValuesFrom [
1670
1670
a owl:Class ;
1671
1671
owl:unionOf (
@@ -1689,7 +1689,7 @@ gist:Offer
1689
1689
gist:ContingentObligation
1690
1690
[
1691
1691
a owl:Restriction ;
1692
-
owl:onProperty gist:giver ;
1692
+
owl:onProperty gist:hasGiver ;
1693
1693
owl:someValuesFrom [
1694
1694
a owl:Class ;
1695
1695
owl:unionOf (
@@ -3050,16 +3050,18 @@ gist:expressedIn
3050
3050
3051
3051
gist:fromAgent
3052
3052
a owl:ObjectProperty ;
3053
+
rdfs:subPropertyOf gist:hasParticipant ;
3053
3054
rdfs:range [
3054
3055
a owl:Class ;
3055
3056
owl:unionOf (
3056
3057
gist:Organization
3057
3058
gist:Person
3058
3059
) ;
3059
3060
] ;
3060
-
skos:definition "The source of a message or shipment"^^xsd:string ;
3061
+
skos:definition "The party that is the source of something (e.g. a message, shipment, etc.)"^^xsd:string ;
3061
3062
skos:prefLabel "from agent"^^xsd:string ;
3062
-
.
3063
+
skos:scopeNote 'This is not the inverse of toAgent. A message can be to someone. If we made it the inverse the person would be "from" the message'^^xsd:string ;
3064
+
.
3063
3065
3064
3066
gist:fromPlace
3065
3067
a owl:ObjectProperty ;
@@ -3107,21 +3109,6 @@ gist:geoOccupies
3107
3109
skos:prefLabel "geo occupies"^^xsd:string ;
3108
3110
.
3109
3111
3110
-
gist:getter
3111
-
a owl:ObjectProperty ;
3112
-
rdfs:subPropertyOf gist:hasParty ;
3113
-
owl:propertyDisjointWith gist:giver ;
3114
-
skos:definition "The recipient"^^xsd:string ;
3115
-
skos:prefLabel "getter"^^xsd:string ;
3116
-
.
3117
-
3118
-
gist:giver
3119
-
a owl:ObjectProperty ;
3120
-
rdfs:subPropertyOf gist:hasParty ;
3121
-
skos:definition "The active party, the one with the obligation or the one initiating the transfer"^^xsd:string ;
3122
-
skos:prefLabel "giver"^^xsd:string ;
3123
-
.
3124
-
3125
3112
gist:governedBy
3126
3113
a owl:ObjectProperty ;
3127
3114
owl:inverseOf gist:governs ;
@@ -3243,6 +3230,21 @@ gist:hasFromNode
3243
3230
skos:prefLabel "has from node"^^xsd:string ;
3244
3231
.
3245
3232
3233
+
gist:hasGetter
3234
+
a owl:ObjectProperty ;
3235
+
rdfs:subPropertyOf gist:hasParticipant ;
3236
+
owl:propertyDisjointWith gist:hasGiver ;
3237
+
skos:definition "The recipient"^^xsd:string ;
3238
+
skos:prefLabel "Has Getter"^^xsd:string ;
3239
+
.
3240
+
3241
+
gist:hasGiver
3242
+
a owl:ObjectProperty ;
3243
+
rdfs:subPropertyOf gist:hasParticipant ;
3244
+
skos:definition "The active party, the one with the obligation or the one initiating the transfer"^^xsd:string ;
3245
+
skos:prefLabel "Has Giver"^^xsd:string ;
3246
+
.
3247
+
3246
3248
gist:hasGoal
3247
3249
a owl:ObjectProperty ;
3248
3250
skos:definition "The reason for doing something"^^xsd:string ;
@@ -3309,16 +3311,29 @@ gist:hasPart
3309
3311
skos:prefLabel "has part"^^xsd:string ;
3310
3312
.
3311
3313
3314
+
gist:hasParticipant
3315
+
a owl:ObjectProperty ;
3316
+
skos:definition "Relates something (e.g. an agreement) to things that play a role, or take part or are otherwise involved in some way."^^xsd:string ;
3317
+
skos:example "An event of transferring money has a participating account that receives the money."^^xsd:string ;
3318
+
skos:prefLabel "Has Participant"^^xsd:string ;
3319
+
skos:scopeNote
3320
+
"The thing with participants will often be an agreement, event or obligation."^^xsd:string ,
3321
+
"This is intended as an abstract property. Only its subproperties will be directly used."^^xsd:string
3322
+
;
3323
+
.
3324
+
3312
3325
gist:hasParty
3313
3326
a owl:ObjectProperty ;
3327
+
rdfs:subPropertyOf gist:hasParticipant ;
3314
3328
rdfs:range [
3315
3329
a owl:Class ;
3316
3330
owl:unionOf (
3317
3331
gist:Organization
3318
3332
gist:Person
3319
3333
) ;
3320
3334
] ;
3321
-
skos:definition "The people or organizations participating in an agreement or obligation"^^xsd:string ;
3335
+
skos:definition "The people or organizations participating in an event, agreement or obligation"^^xsd:string ;
3336
+
skos:example "For loan agreements, one might create hasLender and hasBorrower as subproperties of hasParty."^^xsd:string ;
3322
3337
skos:prefLabel "has party"^^xsd:string ;
3323
3338
.
3324
3339
@@ -3776,14 +3791,15 @@ gist:timeZoneStandardUsed
3776
3791
3777
3792
gist:toAgent
3778
3793
a owl:ObjectProperty ;
3794
+
rdfs:subPropertyOf gist:hasParticipant ;
3779
3795
rdfs:range [
3780
3796
a owl:Class ;
3781
3797
owl:unionOf (
3782
3798
gist:Organization
3783
3799
gist:Person
3784
3800
) ;
3785
3801
] ;
3786
-
skos:definition "Indicates to whom (e.g. a message or shipment) is destined for."^^xsd:string ;
3802
+
skos:definition "The party that is the recipient of something (e.g. a message, shipment, etc.)"^^xsd:string ;
3787
3803
skos:prefLabel "to agent"^^xsd:string ;
3788
3804
skos:scopeNote 'This is not the inverse of fromAgent. A message can be from someone. If we made it the inverse the person would be "to" the message'^^xsd:string ;
0 commit comments