-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(schema): add digital-resource-publication credentials schema
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
src/schema/digital-resource/credential-digital-resource-publication.ttl
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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix : <https://w3id.org/okp4/ontology/v$major/schema/credential/digital-resource/publication/> . | ||
@prefix schema: <http://schema.org/> . | ||
|
||
:DigitalResourcePublicationCredential a rdfs:Class ; | ||
rdfs:label "Digital Resource Publication Credential"@en ; | ||
rdfs:comment """ | ||
Digital Resource Publication Credentials confirm the publication and availability of a digital asset through a digital service. | ||
"""@en . | ||
|
||
:hasIdentifier a rdf:Property ; | ||
rdfs:label "has identifier"@en ; | ||
rdfs:comment """ | ||
The URI that identifies the digital asset within the scope of a digital service that provides access to it. | ||
"""@en ; | ||
schema:domainIncludes :DigitalResourcePublicationCredential ; | ||
schema:rangeIncludes xsd:anyURI . | ||
|
||
:servedBy a rdf:Property ; | ||
rdfs:label "served by"@en ; | ||
rdfs:comment """ | ||
The digital service that makes the resource accessible. | ||
This information is vital for enabling interactions with the resource. In this context, digital services act as conduits for distributing | ||
and exchanging digital resources across various networks. These services manifest in multiple forms, including network communication | ||
protocols such as RESTful APIs and gRPC services. They play a crucial role in connecting resources to orchestrator services, which | ||
leverage these resources for a range of applications. For instance, a digital resource might be a dataset accessible via a RESTful API, | ||
utilized by an orchestrator service to train a machine learning model. | ||
"""@en ; | ||
schema:domainIncludes :DigitalResourcePublicationCredential ; | ||
schema:rangeIncludes xsd:anyURI . | ||
|
||
|