-
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 (report): add report shape * feat (report): add report shape * feat (report): add report shape * feat (report): add report shape
- Loading branch information
1 parent
3b9aa59
commit 31719de
Showing
5 changed files
with
159 additions
and
2 deletions.
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
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
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
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,27 @@ | ||
{ | ||
"@context": [ | ||
"https://incf.github.io/neuroshapes/contexts/schema.json", | ||
{ | ||
"this": "http://rescs.org/dash/report/" | ||
} | ||
], | ||
"@type": "nxv:Schema", | ||
"@id": "http://rescs.org/dash/report", | ||
"imports": [ | ||
"http://rescs.org/dash/article" | ||
], | ||
"shapes": [ | ||
{ | ||
"@id": "this:ReportShape", | ||
"@type": "sh:NodeShape", | ||
"label": "Report", | ||
"comment": "A Report generated by governmental or non-governmental organization.", | ||
"targetClass": "schema:Report", | ||
"and": [ | ||
{ | ||
"node": "http://rescs.org/dash/article/ArticleShape" | ||
} | ||
] | ||
} | ||
] | ||
} |
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,122 @@ | ||
{ | ||
"@context": { | ||
"@vocab": "http://schema.org/", | ||
"xsd": "http://www.w3.org/2001/XMLSchema#" | ||
}, | ||
"@type": "Report", | ||
"alternateName": "My alias name", | ||
"description": "a description", | ||
"identifier": { | ||
"@id": "http://www.example.com/1" | ||
}, | ||
"image": { | ||
"@id": "http://www.example.com/2" | ||
}, | ||
"name": "a name", | ||
"sameAs": { | ||
"@id": "http://www.example.com/3" | ||
}, | ||
"url": { | ||
"@id": "http://www.example.com/4" | ||
}, | ||
"about": { | ||
"@id": "http://www.example.com/5", | ||
"@type": "Thing", | ||
"name": "another thing" | ||
}, | ||
"abstract": "a short summary", | ||
"author": { | ||
"@id": "http://www.example.com/6", | ||
"@type": "Person", | ||
"name": "John Doe", | ||
"additionalName": "Joe", | ||
"address": "Fakestreet, Faketown", | ||
"email": "[email protected]", | ||
"familyName": "Doe", | ||
"givenName": "John", | ||
"jobTitle": "developer", | ||
"affiliation": { | ||
"@id": "http://www.example.com/17", | ||
"@type": "Organization", | ||
"name": "my org", | ||
"address": "Fakestreet, Faketown", | ||
"email": "[email protected]", | ||
"contactPoint": { | ||
"@id": "http://www.contact.com/1", | ||
"@type": "ContactPoint", | ||
"name": "a contact point,", | ||
"availableLanguage": "eng", | ||
"contactType": "sales", | ||
"email": "[email protected]" | ||
} | ||
} | ||
}, | ||
"citation": "a reference to another work", | ||
"conditionsOfAccess": "CC", | ||
"copyrightHolder": { | ||
"@id": "http://www.example.com/6", | ||
"@type": "Person" | ||
}, | ||
"copyrightNotice": "my copyright", | ||
"copyrightYear": 2022, | ||
"creativeWorkStatus": "published", | ||
"dateCreated": { | ||
"@type": "xsd:date", | ||
"@value": "2021-09-23Z" | ||
}, | ||
"dateModified": { | ||
"@type": "xsd:date", | ||
"@value": "2021-09-25Z" | ||
}, | ||
"datePublished": { | ||
"@type": "xsd:date", | ||
"@value": "2021-09-27Z" | ||
}, | ||
"editor": { | ||
"@id": "http://www.example.com/6", | ||
"@type": "Person" | ||
}, | ||
"encodingFormat": "text/plain", | ||
"genre": "creative", | ||
"hasPart": { | ||
"@id": "http://www.example.com/8", | ||
"@type": "CreativeWork", | ||
"name": "another work", | ||
"conditionsOfAccess": "CC", | ||
"author": { | ||
"@id": "http://www.example.com/6", | ||
"@type": "Person" | ||
}, | ||
"inLanguage": "eng" | ||
}, | ||
"inLanguage": "eng", | ||
"isAccessibleForFree": true, | ||
"keywords": [ | ||
"creative", | ||
"work", | ||
{ | ||
"@id": "http://www.taxonomy.com/1" | ||
} | ||
], | ||
"license": { | ||
"@id": "http://www.creativecommons.com/cc" | ||
}, | ||
"maintainer": { | ||
"@id": "http://www.example.com/6", | ||
"@type": "Person", | ||
"name": "John Doe" | ||
}, | ||
"mentions": { | ||
"@id": "http://www.example.com/5", | ||
"@type": "Thing", | ||
"name": "another thing" | ||
}, | ||
"position": 1, | ||
"publisher": { | ||
"@id": "http://www.example.com/6", | ||
"@type": "Person" | ||
}, | ||
"articleBody": "The article's content ...", | ||
"pageEnd": 100, | ||
"pageStart": 50 | ||
} |