Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions schemas/miscellaneous/accessibility.schema.tpl.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"_type": "core:Accessibility",
"required": [
"channel",
"eligibility",
"form",
"process",
"paymentModel"
],
"properties": {
"channel": {
"_instruction": "Add the relevant access channel indicating where access takes place (physical, virtual, or hybrid).",
"_linkedTypes": [
"controlledTerms:AccessChannel"
]
},
"eligibility": {
"_instruction": "Add the relevant access eligibility type indicating who is allowed to access (open, controlled, or restricted).",
"_linkedTypes": [
"controlledTerms:AccessEligibilityType"
]
},
"form": {
"_instruction": "Add the relevant access form indicating whether the user interacts directly or through mediation.",
"_linkedTypes": [
"controlledTerms:AccessForm"
]
},
"process": {
"_instruction": "Add the relevant access process type indicating how access is granted (immediate, registered, authenticated, or authorized).",
"_linkedTypes": [
"controlledTerms:AccessProcessType"
]
},
"paymentModel": {
"type": "array",
"minItems": 1,
"uniqueItems": true,
"_instruction": "Add all relevant payment model types indicating how access costs are determined. If no payment is requires, select zero-cost payment model.",
"_linkedTypes": [
"controlledTerms:PaymentModelType"
]
}
}
}
8 changes: 7 additions & 1 deletion schemas/products/researchProductVersion.schema.tpl.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"accessibility": {
"_instruction": "Add the accessibility of the data for this research product version.",
"_linkedTypes": [
"controlledTerms:ProductAccessibility"
"core:Accessibility"
]
},
"copyright": {
Expand Down Expand Up @@ -88,6 +88,12 @@
"core:Contribution"
]
},
"publicationStatus": {
"_instruction": "Add the relevant publication status indicating the current lifecycle state of the resource (published, embargoed, disposed, retracted, etc.).",
"_linkedTypes": [
"core:PublicationStatus"
]
},
"relatedPublication": {
"type": "array",
"minItems": 1,
Expand Down
Loading