-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Protocol related classes and properties.
- Loading branch information
changqin26
committed
Jul 26, 2021
1 parent
a5cbed1
commit ddc0a02
Showing
2 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix dct: <http://purl.org/dc/terms/> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix ids: <https://w3id.org/idsa/core/> . | ||
@prefix idsc: <https://w3id.org/idsa/code/> . | ||
|
||
|
||
idsc:IDS-REST | ||
a ids:IdsProtocolSpecification ; | ||
rdfs:label "IDS REST" ; | ||
rdfs:comment "The REST specification of the IDS interactions."@en ; | ||
rdfs:seeAlso <https://github.com/International-Data-Spaces-Association/path/to/ids/rest/spec/> ; | ||
. | ||
|
||
idsc:IDS-CP | ||
a ids:IdsProtocolSpecification ; | ||
rdfs:label "IDS-CP" ; | ||
rdfs:comment "The IDS-CP specification of the IDS interactions."@en ; | ||
rdfs:seeAlso <https://github.com/International-Data-Spaces-Association/path/to/idscp/spec/> ; | ||
. | ||
|
||
idsc:QUERY | ||
a ids:IdsProtocolSpecification ; | ||
rdfs:label "Query" ; | ||
rdfs:comment "Queries conforming to IDS specifications."@en ; | ||
rdfs:seeAlso <https://www.w3.org/TR/sparql11-overview/> ; | ||
. | ||
|
||
idsc:MULTIPART | ||
a ids:IdsProtocolSpecification ; | ||
rdfs:label "IDS over Multipart" ; | ||
rdfs:comment "The Multipart Messages implementation of the IDS interactions."@en ; | ||
rdfs:seeAlso <https://github.com/International-Data-Spaces-Association/path/to/multipart/spec/> ; | ||
. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters