Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make DonateAction a TransferAction instead of a TradeAction #3338

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions data/schema.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ Originally, URLs from [GoodRelations](http://purl.org/goodrelations/v1) were use
:DonateAction a rdfs:Class ;
rdfs:label "DonateAction" ;
rdfs:comment "The act of providing goods, services, or money without compensation, often for philanthropic reasons." ;
rdfs:subClassOf :TradeAction .
rdfs:subClassOf :TransferAction .

:DownloadAction a rdfs:Class ;
rdfs:label "DownloadAction" ;
Expand Down Expand Up @@ -7761,7 +7761,8 @@ Note: for historical reasons, any textual label and formal code provided as a li

:price a rdf:Property ;
rdfs:label "price" ;
:domainIncludes :Offer,
:domainIncludes :DonateAction,
:Offer,
:PriceSpecification,
:TradeAction ;
:rangeIncludes :Number,
Expand All @@ -7778,7 +7779,8 @@ Note: for historical reasons, any textual label and formal code provided as a li

:priceCurrency a rdf:Property ;
rdfs:label "priceCurrency" ;
:domainIncludes :Offer,
:domainIncludes :DonateAction,
:Offer,
:PriceSpecification,
:Reservation,
:Ticket,
Expand All @@ -7795,6 +7797,7 @@ Note: for historical reasons, any textual label and formal code provided as a li
:priceSpecification a rdf:Property ;
rdfs:label "priceSpecification" ;
:domainIncludes :Demand,
:DonateAction,
:Offer,
:TradeAction ;
:rangeIncludes :PriceSpecification ;
Expand Down